{"info":{"_postman_id":"cc642dc6-7519-4766-af30-cdc1f7fbccb1","name":"Kissflow API documentation","description":"<html><head></head><body><h1 id=\"getting-started-with-kissflow-apis\">Getting started with Kissflow APIs</h1>\n<p>Kissflow APIs enable you to remotely manage (create, read, update, and delete) various components within the Kissflow platform, including users, groups, workflows, dataforms, datasets, portals, and reports.</p>\n<p>Kissflow APIs are RESTful web services, and this documentation describes all our API endpoints in detail.</p>\n<h1 id=\"api-essentials\">API essentials</h1>\n<p>To effectively interact with APIs, the following developer requirements are recommended:</p>\n<p><strong>Programming knowledge</strong>: Basic proficiency in programming languages such as JavaScript, Python, Ruby, Java, or others, depending on the API's technology stack.</p>\n<p><strong>Understanding HTTP and REST principles</strong>: Familiarity with HTTP methods (GET, POST, PUT, DELETE) and RESTful principles.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>HTTP method</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td>Retrieves data from a resource</td>\n</tr>\n<tr>\n<td>POST</td>\n<td>Creates a new resource or initiates an action</td>\n</tr>\n<tr>\n<td>PUT</td>\n<td>Updates a resource</td>\n</tr>\n<tr>\n<td>DELETE</td>\n<td>Deletes a resource</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>JSON data format</strong>: Ability to generate, parse, and manipulate JSON data format (JavaScript Object Notation) used for data exchange in APIs.</p>\n<p><strong>Authentication and security:</strong> Knowledge of authentication methods (e.g., OAuth, API keys, basic authentication) and best practices for securing API endpoints.</p>\n<p><strong>Tools and libraries</strong>: Knowledge of tools and libraries for making HTTP requests (e.g., cURL, Postman) and handling API responses.</p>\n<p><strong>Error handling and debugging</strong>: Skills in troubleshooting API interactions, handling errors, and debugging issues that may arise during API integration.</p>\n<h1 id=\"fundamental-data-types\">Fundamental data types</h1>\n<p>These are the fundamental data types and formats used across different API parameters, including header, path, query, and request body parameters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>String</td>\n<td>A sequence of characters with Unicode support</td>\n</tr>\n<tr>\n<td>Integer</td>\n<td>Signed 64-bit integral number</td>\n</tr>\n<tr>\n<td>Boolean</td>\n<td>Represents a value of either <strong>true</strong> or <strong>false</strong></td>\n</tr>\n<tr>\n<td>Date</td>\n<td>A date formatted in ISO 8601 extended format: YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>DateTime</td>\n<td>Combined date and time formatted in ISO 8601 extended format: YYYY-MM-DDTHH:MM:SS±hh:mm  <br>For example, 2018-12-03T10:15:30+01:00 (Europe/Paris)</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"base-url\">Base URL</h1>\n<p>The base URL serves as the foundation for constructing the endpoint URL.</p>\n<h2 id=\"base-url-structure\">Base URL structure</h2>\n<p>The base URL is defined by protocols (schemes), host, and basePath and structured as:///.</p>\n<ol>\n<li><p>Protocol: HTTP or HTTPS.</p>\n</li>\n<li><p>Host: Subdomain name and domain name. While the subdomain is unique to each Kissflow account, the domain name is kissflow.com or kissflow.eu.</p>\n</li>\n<li><p>Basepath: Consists of the service name and API version string.</p>\n</li>\n</ol>\n<h2 id=\"resource-urls\">Resource URLs</h2>\n<p>API requests are constructed using a dynamic base URL followed by the specific resource or collection URL.</p>\n<h4 id=\"example-api-endpoint\">Example API endpoint:</h4>\n<p><a href=\"https://demo.kissflow.com/process/1/%7Bpath_params%7D\">https://{subdomain}.kissflow.{region}/{service}/1/{path_params}<br></a></p>\n<h1 id=\"testing-apis\">Testing APIs</h1>\n<p>You can test APIs directly from the terminal using the cURL and HTTPie native tester tools. They allow you to send various HTTP requests and see the responses directly in your terminal. Follow these steps to execute API calls:</p>\n<ol>\n<li><p>Under the Authorization tab in the right panel, enter the \"Access Key ID\" and \"Secret Access Key\" for HTTP request header authentication.</p>\n</li>\n<li><p>Use the example in the cURL or HTTPie command line terminal and edit the HTTP request to the server.</p>\n</li>\n<li><p>Click the <strong>Try It</strong> button.</p>\n</li>\n</ol>\n<h2 id=\"rate-limiting\">Rate limiting</h2>\n<blockquote>\n<p>📘 To maintain a fair distribution of resources among API users and prevent abuse, we've set a threshold limit of 400 API calls per minute. This limit includes both programmatic and UI-based invocations. </p>\n</blockquote>\n<h3 id=\"api-payload-size-limits\">API Payload Size Limits</h3>\n<p>The Kissflow API enforces a maximum payload size limit of 50 MB per request. Attempts to send payloads larger than this limit will result in an error.</p>\n<blockquote>\n<p><strong>Note</strong>: This limit applies to all API endpoints that accept request payloads. </p>\n</blockquote>\n<h2 id=\"security-system-limitation\"><strong>Security system limitation</strong></h2>\n<p>Some requests may be blocked by our security systems before reaching Kissflow services. This can result in intermittent connectivity issues or failed API requests. <a href=\"https://community.kissflow.com/t/g9yggqv\">Learn more</a><strong>.</strong></p>\n<h1 id=\"http-request-content-type\">HTTP request content type</h1>\n<p>The Content-Type in the HTTP header specifies the data sent to the server. This tells the server how to interpret the data in the request body. We support the content types for POST and PUT HTTP requests.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Content-Type</th>\n<th>Description</th>\n<th>Usage</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>application/json</td>\n<td>Indicates that the request body contains JSON (JavaScript Object Notation) data.</td>\n<td>Widely used for RESTful APIs as JSON is a lightweight and easily readable format.</td>\n</tr>\n<tr>\n<td>multipart/form-data</td>\n<td>Used for sending files and data in a form. It allows you to upload files along with other data.</td>\n<td>It is ideal for file uploads or when a mix of files and form data needs to be sent.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"http-response-content-type\">HTTP response content type</h1>\n<p>In response, a Content-Type header provides the client with the actual content type of the returned content. Kissflow API responses are in JSON format.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Content-Type</th>\n<th>Description</th>\n<th>Usage</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>application/json</td>\n<td>Indicates that the response body contains JSON data.</td>\n<td>It is commonly used for RESTful APIs because JSON is lightweight, easily readable, and widely supported across various platforms.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"api-authentication\">API authentication</h1>\n<p>Access keys (Access key ID and secret access key) are required to access Kissflow's protected resources. You can <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication\">follow these instructions</a> to create an <strong>Access Key ID</strong> and <strong>Secret Access Key</strong> in your Kissflow account.</p>\n<p><strong>Note</strong>:</p>\n<ul>\n<li><p>Access Key ID and Secret Access Key are generated at the individual user level, not for the entire account.</p>\n</li>\n<li><p>Users can create multiple access keys within a single account.</p>\n</li>\n<li><p>To ensure security, users should delete unused access keys.</p>\n</li>\n<li><p>Access keys are sensitive information that authenticate your identity and should be kept private to prevent misuse.</p>\n</li>\n</ul>\n<blockquote>\n<p>⚠️ Security alert<br><strong>Make API calls from the web application server as a best practice. Avoid direct browser calls using JavaScript to prevent exposing API keys. HTTPS/TLS/SSL should be used with basic authentication, as the base64 encoding is reversible and is not secure.</strong> </p>\n</blockquote>\n<h1 id=\"http-response-status-codes\">HTTP response status codes</h1>\n<p>HTTP response status codes indicate whether a specific HTTP request has been completed. Responses are grouped into five classes: Informational responses (100 – 199), successful responses (200 – 299), redirection messages (300 – 399), client error responses (400 – 499), and server error responses (500 – 599).</p>\n<p>Here are some common response status codes and their description.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>HTTP status codes</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Success</td>\n<td>This status code indicates that the server has successfully processed the request from the client.</td>\n</tr>\n<tr>\n<td>201</td>\n<td>Created</td>\n<td>The request succeeded, and a new resource was created as a result. This is typically the response sent after POST requests or some PUT requests.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad request</td>\n<td>This error indicates that the server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n<td>This error indicates that the client has attempted to access a resource that requires authentication, but the provided credentials (or lack thereof) are invalid or not accepted by the server. It is often related to authentication issues, such as an incorrect username or password or a missing authentication token.</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden</td>\n<td>This error indicates that the client has requested a resource they are not authorized to access, even though it exists on the server. It usually means that the server has understood the request but refuses to fulfill it due to permission restrictions or authentication issues.  <br><strong>Note</strong><em><strong>:</strong></em> <em>If the response header includes</em> <code>cf-mitigated: challenge</code><em>, the request was blocked by security checks before reaching Kissflow services.</em></td>\n</tr>\n<tr>\n<td>404</td>\n<td>Resource not found</td>\n<td>This error indicates that the server cannot find the requested resource. In the browser, this means the URL is not recognized. This can also mean that the endpoint is valid in an API, but the resource does not exist. Servers may also send this response instead of 403 Forbidden to hide the existence of a resource from an unauthorized client.</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal server error</td>\n<td>This general error code means something went wrong on the server, but the server could not be more specific about the exact problem. It's a catch-all response for unexpected conditions the server encounters while processing a request. This could be due to server software issues, misconfigured settings, or other internal errors.</td>\n</tr>\n<tr>\n<td>501</td>\n<td>Not Implemented</td>\n<td>This error indicates that the server does not support the request method and cannot be handled. The only methods servers are required to support (and therefore must not return this code) are GET and HEAD.</td>\n</tr>\n<tr>\n<td>502</td>\n<td>Bad gateway</td>\n<td>This error occurs when the server acts as a gateway or proxy and receives an invalid response from the upstream server to which it sent the request. The server receives an invalid response from another server or service it was trying to communicate with.</td>\n</tr>\n<tr>\n<td>503</td>\n<td>Service Unavailable</td>\n<td>This error indicates that the server is not ready to handle the request. Common causes are a server that is down for maintenance or overloaded. This response sends a user-friendly page explaining the problem, and the Retry-After HTTP header would, wherever possible, contain the estimated time before the service is recovered.</td>\n</tr>\n<tr>\n<td>504</td>\n<td>Gateway timeout</td>\n<td>This occurs when the server is acting as a gateway and cannot get a response in time.</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting started with Kissflow APIs","slug":"getting-started-with-kissflow-apis"},{"content":"API essentials","slug":"api-essentials"},{"content":"Fundamental data types","slug":"fundamental-data-types"},{"content":"Base URL","slug":"base-url"},{"content":"Testing APIs","slug":"testing-apis"},{"content":"HTTP request content type","slug":"http-request-content-type"},{"content":"HTTP response content type","slug":"http-response-content-type"},{"content":"API authentication","slug":"api-authentication"},{"content":"HTTP response status codes","slug":"http-response-status-codes"}],"owner":"37347739","collectionId":"cc642dc6-7519-4766-af30-cdc1f7fbccb1","publishedId":"2sA3rxqtVV","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"1F80FF"},"publishDate":"2025-06-03T07:12:11.000Z"},"item":[{"name":"Users and groups","item":[{"name":"Users","item":[{"name":"Get user details","id":"b6604282-98bc-4069-81af-725f4f776bbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/user/2/:account_id/:user_id","description":"<p>Retrieves the user details of a specific Kissflow user.</p>\n","urlObject":{"path":["user","2",":account_id",":user_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique ID of a Kissflow user. Get this value from the '_id' field returned by the 'Get user list' API. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"user_id"}]}},"response":[{"id":"2abf5518-78fc-46f5-89d9-1848090f46cd","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"user_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"ProfilePicture\": \"<string>\",\n  \"LastName\": \"<string>\",\n  \"NickName\": \"<string>\",\n  \"UserSystemType\": \"<integer>\",\n  \"Status\": \"<string>\",\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\"\n    }\n  ],\n  \"Name\": \"<string>\",\n  \"FirstName\": \"<string>\",\n  \"Kind\": \"<string>\",\n  \"Phone\": \"<string>\",\n  \"UserType\": \"<string>\"\n}"},{"id":"41417a72-026e-4161-abd5-0d26679a08e0","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"user_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"723d2812-05e8-4ae8-9216-d1b601c78908","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"user_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"8e2256b1-a153-4d06-9407-eec7b83c360a","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"user_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"}],"_postman_id":"b6604282-98bc-4069-81af-725f4f776bbf"},{"name":"Bulk user actions","id":"f38c274d-a25f-469a-b909-e26eb512595d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_id\": \"<string>\",\n    \"Roles\": [\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      }\n    ]\n  },\n  {\n    \"_id\": \"<string>\",\n    \"Roles\": [\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      }\n    ]\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/user/2/:account_id/batch","description":"<p>Performs bulk user actions like name change, email change, user role change, user deletions etc.</p>\n","urlObject":{"path":["user","2",":account_id","batch"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"}]}},"response":[{"id":"3c2b7fb6-3c06-4807-8db1-690e1f3fe652","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_id\": \"<string>\",\n    \"Roles\": [\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      }\n    ]\n  },\n  {\n    \"_id\": \"<string>\",\n    \"Roles\": [\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      }\n    ]\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/batch","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","batch"],"variable":[{"key":"account_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n]"},{"id":"b29fc646-c3d8-42e0-9419-91ceceab7bbc","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_id\": \"<string>\",\n    \"Roles\": [\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      }\n    ]\n  },\n  {\n    \"_id\": \"<string>\",\n    \"Roles\": [\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      }\n    ]\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/batch","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","batch"],"variable":[{"key":"account_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"0b8e6e99-8968-4cda-ae21-ee6d192b92d7","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_id\": \"<string>\",\n    \"Roles\": [\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      }\n    ]\n  },\n  {\n    \"_id\": \"<string>\",\n    \"Roles\": [\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      }\n    ]\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/batch","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","batch"],"variable":[{"key":"account_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"cbb31e0d-4b82-4e9a-98c7-2b66e68621df","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_id\": \"<string>\",\n    \"Roles\": [\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      }\n    ]\n  },\n  {\n    \"_id\": \"<string>\",\n    \"Roles\": [\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Kind\": \"<string>\",\n        \"IsDelete\": \"<boolean>\"\n      }\n    ]\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/batch","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","batch"],"variable":[{"key":"account_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"}],"_postman_id":"f38c274d-a25f-469a-b909-e26eb512595d"},{"name":"Create a new user","id":"3c695d63-4352-4057-95bd-1e070205ef21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"Designation\": \"<string>\",\n  \"LastName\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AboutMe\": \"<string>\",\n  \"Manager\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"Kind\": \"<string>\"\n  },\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\",\n  \"Phone\": \"<string>\",\n  \"UserType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/user/2/:account_id/?skip_email=<boolean>","description":"<p>Creates a new user in a Kissflow account.</p>\n","urlObject":{"path":["user","2",":account_id",""],"host":["https://subdomain.kissflow.com"],"query":[{"description":{"content":"<p>Allows you to send an Email invite to the new user. This is an optional parameter.</p>\n","type":"text/plain"},"key":"skip_email","value":"<boolean>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"}]}},"response":[{"id":"978750d0-5611-4d3e-938e-e7435d46d2bf","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"Designation\": \"<string>\",\n  \"LastName\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AboutMe\": \"<string>\",\n  \"Manager\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"Kind\": \"<string>\"\n  },\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\",\n  \"Phone\": \"<string>\",\n  \"UserType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/?skip_email=<boolean>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",""],"query":[{"key":"skip_email","value":"<boolean>","description":"Allows you to send an Email invite to the new user. This is an optional parameter."}],"variable":[{"key":"account_id","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"DelegationStartDate\": \"<date>\",\n  \"DelegationEndDate\": \"<date>\",\n  \"Designation\": \"<string>\",\n  \"LastName\": \"<string>\",\n  \"UserSystemType\": \"<integer>\",\n  \"_created_at\": \"<dateTime>\",\n  \"Signature\": \"<string>\",\n  \"FirstName\": \"<string>\",\n  \"Kind\": \"<string>\",\n  \"_modified_at\": \"<dateTime>\",\n  \"Language\": \"<string>\",\n  \"DelegatedTo\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"Kind\": \"<string>\"\n  },\n  \"Phone\": \"<string>\",\n  \"UserType\": \"<string>\",\n  \"Status\": \"<string>\",\n  \"_created_by\": {\n    \"_id\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"Status\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": \"<string>\"\n      },\n      {\n        \"_id\": \"<string>\"\n      }\n    ],\n    \"Name\": \"<string>\",\n    \"FirstName\": \"<string>\",\n    \"Kind\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"UserType\": \"<string>\"\n  },\n  \"_modified_by\": {\n    \"_id\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"Status\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": \"<string>\"\n      },\n      {\n        \"_id\": \"<string>\"\n      }\n    ],\n    \"Name\": \"<string>\",\n    \"FirstName\": \"<string>\",\n    \"Kind\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"UserType\": \"<string>\"\n  },\n  \"NickName\": \"<string>\",\n  \"ProfilePicture\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"TimeZone\": {},\n  \"Manager\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"Kind\": \"<string>\"\n  },\n  \"Accessibility\": \"<string>\",\n  \"AppConfig\": {\n    \"ProfileBasePath\": \"<string>\",\n    \"UploadHost\": \"<string>\"\n  },\n  \"Name\": \"<string>\"\n}"},{"id":"a44cb721-ced2-4362-b121-7eea303f02ba","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"Designation\": \"<string>\",\n  \"LastName\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AboutMe\": \"<string>\",\n  \"Manager\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"Kind\": \"<string>\"\n  },\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\",\n  \"Phone\": \"<string>\",\n  \"UserType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/?skip_email=<boolean>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",""],"query":[{"key":"skip_email","value":"<boolean>","description":"Allows you to send an Email invite to the new user. This is an optional parameter."}],"variable":[{"key":"account_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"7f5bafec-b88c-4ac8-93e1-f21d4dd5c6e9","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"Designation\": \"<string>\",\n  \"LastName\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AboutMe\": \"<string>\",\n  \"Manager\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"Kind\": \"<string>\"\n  },\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\",\n  \"Phone\": \"<string>\",\n  \"UserType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/?skip_email=<boolean>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",""],"query":[{"key":"skip_email","value":"<boolean>","description":"Allows you to send an Email invite to the new user. This is an optional parameter."}],"variable":[{"key":"account_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"1a80c085-1e27-491b-9230-b0a268745661","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"Designation\": \"<string>\",\n  \"LastName\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AboutMe\": \"<string>\",\n  \"Manager\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"Kind\": \"<string>\"\n  },\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\",\n  \"Phone\": \"<string>\",\n  \"UserType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/?skip_email=<boolean>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",""],"query":[{"key":"skip_email","value":"<boolean>","description":"Allows you to send an Email invite to the new user. This is an optional parameter."}],"variable":[{"key":"account_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"a83d1217-dfa1-411c-9e7f-b7a489e511be","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"Designation\": \"<string>\",\n  \"LastName\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AboutMe\": \"<string>\",\n  \"Manager\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"Kind\": \"<string>\"\n  },\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\",\n  \"Phone\": \"<string>\",\n  \"UserType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/?skip_email=<boolean>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",""],"query":[{"key":"skip_email","value":"<boolean>","description":"Allows you to send an Email invite to the new user. This is an optional parameter."}],"variable":[{"key":"account_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"}],"_postman_id":"3c695d63-4352-4057-95bd-1e070205ef21"},{"name":"Get user list","id":"44d15e4a-04c9-48a2-91e4-8afdb6c4a2e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/user/2/:account_id/?page_number=1&page_size=10&q=<string>&user_type=User&invited_user=false","description":"<p>Retrieves all the active and invited users in your Kissflow account.</p>\n","urlObject":{"path":["user","2",":account_id",""],"host":["https://subdomain.kissflow.com"],"query":[{"description":{"content":"<p>This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc.</p>\n","type":"text/plain"},"key":"page_number","value":"1"},{"description":{"content":"<p>This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc.</p>\n","type":"text/plain"},"key":"page_size","value":"10"},{"description":{"content":"<p>This is the search string and is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"},{"description":{"content":"<p>Filter results based on user roles in Kissflow.</p>\n","type":"text/plain"},"key":"user_type","value":"User"},{"description":{"content":"<p>Specify if you want to get the invited user list in your account.</p>\n","type":"text/plain"},"key":"invited_user","value":"false"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"}]}},"response":[{"id":"59062fb0-0316-4392-9be4-5c96f66dc279","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/?page_number=1&page_size=10&q=<string>&user_type=User&invited_user=false","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",""],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."},{"key":"user_type","value":"User","description":"Filter results based on user roles in Kissflow."},{"key":"invited_user","value":"false","description":"Specify if you want to get the invited user list in your account."}],"variable":[{"key":"account_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"_id\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"Status\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": \"<string>\"\n      },\n      {\n        \"_id\": \"<string>\"\n      }\n    ],\n    \"Name\": \"<string>\",\n    \"FirstName\": \"<string>\",\n    \"Kind\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"UserType\": \"<string>\"\n  },\n  {\n    \"_id\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"Status\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": \"<string>\"\n      },\n      {\n        \"_id\": \"<string>\"\n      }\n    ],\n    \"Name\": \"<string>\",\n    \"FirstName\": \"<string>\",\n    \"Kind\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"UserType\": \"<string>\"\n  }\n]"},{"id":"bffcbf73-4275-4504-abdd-6a16579c2b93","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/?page_number=1&page_size=10&q=<string>&user_type=User&invited_user=false","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",""],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."},{"key":"user_type","value":"User","description":"Filter results based on user roles in Kissflow."},{"key":"invited_user","value":"false","description":"Specify if you want to get the invited user list in your account."}],"variable":[{"key":"account_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"d2660290-cf00-43d6-8d20-bdade683c1ee","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/?page_number=1&page_size=10&q=<string>&user_type=User&invited_user=false","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",""],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."},{"key":"user_type","value":"User","description":"Filter results based on user roles in Kissflow."},{"key":"invited_user","value":"false","description":"Specify if you want to get the invited user list in your account."}],"variable":[{"key":"account_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"5301f529-f201-4118-91a3-869ac5ad10b6","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/?page_number=1&page_size=10&q=<string>&user_type=User&invited_user=false","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id",""],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."},{"key":"user_type","value":"User","description":"Filter results based on user roles in Kissflow."},{"key":"invited_user","value":"false","description":"Specify if you want to get the invited user list in your account."}],"variable":[{"key":"account_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"}],"_postman_id":"44d15e4a-04c9-48a2-91e4-8afdb6c4a2e5"}],"id":"2aa9ae8d-b830-4eb3-8af1-f9a43616a3aa","description":"<p>These APIs enable programmatic management of user accounts within Kissflow. Key functionalities include:</p>\n<ol>\n<li><p><strong>Creating new users:</strong> Add individual users to the system, including their profile information and access rights.</p>\n</li>\n<li><p><strong>Retrieving user lists:</strong> Fetch lists of existing users, potentially with filtering or sorting options.</p>\n</li>\n<li><p><strong>Accessing user details:</strong> Get specific information about a particular user account.</p>\n</li>\n<li><p><strong>Performing bulk user actions:</strong> Efficiently update or modify multiple user accounts simultaneously.</p>\n</li>\n</ol>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"c13fdc44-92d4-4391-bc61-b88c09eed5a0","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"67f6a452-2aea-417a-bfc6-1e69505de45c","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"2aa9ae8d-b830-4eb3-8af1-f9a43616a3aa"},{"name":"Groups","item":[{"name":"Create a new group","id":"8bebadea-cf7a-4ea9-bc23-24e68cb7d7c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Users\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Roles\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Email\": \"<email>\",\n  \"_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/group/2/:account_id/","description":"<p>Creates a new group in a Kissflow account.</p>\n","urlObject":{"path":["group","2",":account_id",""],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"}]}},"response":[{"id":"07e4def5-aec2-45fc-a559-0fe1b092d33d","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Users\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Roles\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Email\": \"<email>\",\n  \"_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",""],"variable":[{"key":"account_id","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"4a374dd5-5b31-4f42-ac8a-722c61cbab75","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Users\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Roles\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Email\": \"<email>\",\n  \"_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",""],"variable":[{"key":"account_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"df85bcc4-5da4-42f7-a7ef-4a3672452af7","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Users\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Roles\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Email\": \"<email>\",\n  \"_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",""],"variable":[{"key":"account_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"5d80e42b-b725-455f-94ee-9fae1b6cdc10","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Users\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Roles\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Email\": \"<email>\",\n  \"_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",""],"variable":[{"key":"account_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"170cac6f-d523-4a26-a318-6d8e2283f9e8","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Users\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Roles\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Email\": \"<email>\",\n  \"_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",""],"variable":[{"key":"account_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"}],"_postman_id":"8bebadea-cf7a-4ea9-bc23-24e68cb7d7c6"},{"name":"Get list of groups","id":"bf5303cb-aba5-4855-b39f-98791ea2511b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/group/2/:account_id/list?page_number=1&page_size=10&q=<string>","description":"<p>Retrieves the list of groups based on the specified filter.</p>\n","urlObject":{"path":["group","2",":account_id","list"],"host":["https://subdomain.kissflow.com"],"query":[{"description":{"content":"<p>This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc.</p>\n","type":"text/plain"},"key":"page_number","value":"1"},{"description":{"content":"<p>This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc.</p>\n","type":"text/plain"},"key":"page_size","value":"10"},{"description":{"content":"<p>This is the search string and is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"}]}},"response":[{"id":"f4f279e1-b136-498a-894e-cf224fe7f6b1","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/list?page_number=1&page_size=10&q=<string>","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id","list"],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"_id\": \"<string>\",\n    \"GroupCount\": \"<integer>\",\n    \"Name\": \"<string>\",\n    \"UserCount\": \"<integer>\",\n    \"SyncFrom\": \"<string>\"\n  },\n  {\n    \"_id\": \"<string>\",\n    \"GroupCount\": \"<integer>\",\n    \"Name\": \"<string>\",\n    \"UserCount\": \"<integer>\",\n    \"SyncFrom\": \"<string>\"\n  }\n]"},{"id":"e2c7e0d2-b146-43da-a0a3-3b60ba8d009a","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/list?page_number=1&page_size=10&q=<string>","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id","list"],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"c2c46b65-9e93-46ad-8c10-3f6fe6d20dde","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/list?page_number=1&page_size=10&q=<string>","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id","list"],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"fc5a4214-4835-4078-ad12-1c516d4072b8","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/list?page_number=1&page_size=10&q=<string>","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id","list"],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"}],"_postman_id":"bf5303cb-aba5-4855-b39f-98791ea2511b"},{"name":"Get group details","id":"b6c759db-c29d-46f4-ae8a-fb3fc9742a0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","description":"<p>Retrieves group details of a specific group.</p>\n","urlObject":{"path":["group","2",":account_id",":group_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique ID of a Kissflow group. Get this value from the '_id' field returned by the 'Get list of groups' API. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"group_id"}]}},"response":[{"id":"08495627-0110-4cf8-889f-5ec0a31f4f39","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"GroupCount\": \"<integer>\",\n  \"GroupMembers\": [\n    {\n      \"_id\": \"<string>\",\n      \"ProfilePicture\": \"<string>\",\n      \"LastName\": \"<string>\",\n      \"NickName\": \"<string>\",\n      \"UserSystemType\": \"<integer>\",\n      \"Status\": \"<string>\",\n      \"Groups\": [\n        {\n          \"_id\": \"<string>\"\n        },\n        {\n          \"_id\": \"<string>\"\n        }\n      ],\n      \"Name\": \"<string>\",\n      \"FirstName\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Phone\": \"<string>\",\n      \"UserType\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"ProfilePicture\": \"<string>\",\n      \"LastName\": \"<string>\",\n      \"NickName\": \"<string>\",\n      \"UserSystemType\": \"<integer>\",\n      \"Status\": \"<string>\",\n      \"Groups\": [\n        {\n          \"_id\": \"<string>\"\n        },\n        {\n          \"_id\": \"<string>\"\n        }\n      ],\n      \"Name\": \"<string>\",\n      \"FirstName\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Phone\": \"<string>\",\n      \"UserType\": \"<string>\"\n    }\n  ],\n  \"Name\": \"<string>\",\n  \"UserCount\": \"<integer>\",\n  \"SyncFrom\": \"<string>\"\n}"},{"id":"1c18efb7-dd81-4624-b51b-4b1c061643f8","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"29dc925e-2ee5-4d34-8f10-ed96c6d4d15d","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"486d6283-e71a-4e48-970f-18867cb19aed","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"}],"_postman_id":"b6c759db-c29d-46f4-ae8a-fb3fc9742a0e"},{"name":"Update a group","id":"2709463f-62a4-43ef-9916-8d86ef48ea62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Email\": \"<email>\",\n  \"Users\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Roles\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","description":"<p>Add or remove users, groups and roles from a specific group.</p>\n","urlObject":{"path":["group","2",":account_id",":group_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique ID of a Kissflow group. Get this value from the '_id' field returned by the 'Get list of groups' API. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"group_id"}]}},"response":[{"id":"20e7b249-5128-42d0-a572-35f9e8bbd614","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Email\": \"<email>\",\n  \"Users\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Roles\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"2c950bf0-1373-4b6c-83bc-aa98c632cc03","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Email\": \"<email>\",\n  \"Users\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Roles\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"7bc5603a-62fc-46ed-a642-69a8e4139dd3","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Email\": \"<email>\",\n  \"Users\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Roles\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"adf5d703-f12f-43cf-965e-2cc0d9c6e3ac","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Email\": \"<email>\",\n  \"Users\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Groups\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"Roles\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"IsDelete\": \"<boolean>\"\n    }\n  ],\n  \"_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"}],"_postman_id":"2709463f-62a4-43ef-9916-8d86ef48ea62"},{"name":"Delete a group","id":"d9873c8e-1a16-4837-80ed-f110686a0283","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","description":"<p>Deletes a specific group.</p>\n","urlObject":{"path":["group","2",":account_id",":group_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique ID of a Kissflow group. Get this value from the '_id' field returned by the 'Get list of groups' API. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"group_id"}]}},"response":[{"id":"0cfd6176-ebf9-42bc-a5a7-ea4814e555c3","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"434eac1e-fcdc-440a-90ce-b3814b87a016","name":"401 Unauthorized","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"e62ed102-493b-4e82-8c70-a40eebd1c0fb","name":"403 Forbidden","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"d81f93ed-ebc3-4f35-b129-edb7f3b1684a","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id"],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"}],"_postman_id":"d9873c8e-1a16-4837-80ed-f110686a0283"},{"name":"Get user details of a group","id":"012304ac-a0af-412f-bffa-fe283d7bc390","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/group/2/:account_id/:group_id/members?page_number=1&page_size=10&fields=<string>","description":"<p>Retrieves the user details of all users belonging to a specific group.</p>\n","urlObject":{"path":["group","2",":account_id",":group_id","members"],"host":["https://subdomain.kissflow.com"],"query":[{"description":{"content":"<p>This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc.</p>\n","type":"text/plain"},"key":"page_number","value":"1"},{"description":{"content":"<p>This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc.</p>\n","type":"text/plain"},"key":"page_size","value":"10"},{"description":{"content":"<p>Specify the fields that you require in the API response. You can specify multiple fields as comma separated values.</p>\n","type":"text/plain"},"key":"fields","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique ID of a Kissflow group. Get this value from the '_id' field returned by the 'Get list of groups' API. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"group_id"}]}},"response":[{"id":"a1f89905-f379-45fc-8805-78642f4a81eb","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id/members?page_number=1&page_size=10&fields=<string>","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id","members"],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"fields","value":"<string>","description":"Specify the fields that you require in the API response. You can specify multiple fields as comma separated values."}],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"_id\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"Status\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": \"<string>\"\n      },\n      {\n        \"_id\": \"<string>\"\n      }\n    ],\n    \"Name\": \"<string>\",\n    \"FirstName\": \"<string>\",\n    \"Kind\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"UserType\": \"<string>\"\n  },\n  {\n    \"_id\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"Status\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": \"<string>\"\n      },\n      {\n        \"_id\": \"<string>\"\n      }\n    ],\n    \"Name\": \"<string>\",\n    \"FirstName\": \"<string>\",\n    \"Kind\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"UserType\": \"<string>\"\n  }\n]"},{"id":"f2370860-b372-4b57-af63-9240b6ffb790","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id/members?page_number=1&page_size=10&fields=<string>","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id","members"],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"fields","value":"<string>","description":"Specify the fields that you require in the API response. You can specify multiple fields as comma separated values."}],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"0f56cdaa-3110-4850-8830-3220bff3816c","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id/members?page_number=1&page_size=10&fields=<string>","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id","members"],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"fields","value":"<string>","description":"Specify the fields that you require in the API response. You can specify multiple fields as comma separated values."}],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"},{"id":"29a22b6a-ba82-42fe-a647-f2ebcbbeab32","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/group/2/:account_id/:group_id/members?page_number=1&page_size=10&fields=<string>","host":["https://subdomain.kissflow.com"],"path":["group","2",":account_id",":group_id","members"],"query":[{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"10","description":"This is the number of items that can be listed in a page and is an optional parameter. It can be 10, 25, 50, 100, etc."},{"key":"fields","value":"<string>","description":"Specify the fields that you require in the API response. You can specify multiple fields as comma separated values."}],"variable":[{"key":"account_id","value":""},{"key":"group_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\",\n  \"en_message\": \"<string>\"\n}"}],"_postman_id":"012304ac-a0af-412f-bffa-fe283d7bc390"}],"id":"84b34499-8d95-430b-9b5d-4cd72a199de4","description":"<p>These APIs facilitate the management of user groups within Kissflow. Core capabilities include:</p>\n<ul>\n<li><p><strong>Creating new groups:</strong> Establish groups to organize users and streamline permission management.</p>\n</li>\n<li><p><strong>Retrieving group lists:</strong> Fetch lists of existing groups, possibly with filtering or sorting options.</p>\n</li>\n<li><p><strong>Accessing group details:</strong> Get specific information about a particular group, including its members.</p>\n</li>\n<li><p><strong>Deleting groups:</strong> Remove groups that are no longer needed.</p>\n</li>\n<li><p><strong>Managing group membership:</strong> Add or remove users from specific groups, enabling flexible access control.</p>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"902e8398-2074-445c-a6da-d0c9db3bd22d","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"f158890d-8e5b-4919-a3ec-540e445b0e6e","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"84b34499-8d95-430b-9b5d-4cd72a199de4"}],"id":"67e03b6d-02d6-4ba9-898e-45b9724913bf","description":"<p>Kissflow's user and group management APIs allow you to programmatically control access and permissions within your Kissflow account.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"44309221-06b2-4199-bd8a-598670c3d870","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"da3566f2-ca46-4cfd-bf01-2a0145919f13","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"67e03b6d-02d6-4ba9-898e-45b9724913bf"},{"name":"Portals","item":[{"name":"Get portal settings","id":"a0a79d9a-33db-41cb-a29f-9cec85a0f32a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/portal/2/:account_id/:portal_id","description":"<p>Retrieves a specific portal's settings.</p>\n","urlObject":{"protocol":"https","path":["portal","2",":account_id",":portal_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"}]}},"response":[{"id":"9eef73c0-8107-4e36-a334-1782f6da09d6","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":" <string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/portal/2/:account_id/:portal_id","protocol":"https","host":["subdomain","kissflow","com"],"path":["portal","2",":account_id",":portal_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"e1483635-c546-4213-b72e-a9155b668dec","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/portal/2/:account_id/:portal_id","protocol":"https","host":["subdomain","kissflow","com"],"path":["portal","2",":account_id",":portal_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"1f7ebe19-fed9-4d45-a295-3d300d3bf3db","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/portal/2/:account_id/:portal_id","protocol":"https","host":["subdomain","kissflow","com"],"path":["portal","2",":account_id",":portal_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"5da094a4-4385-40c0-897c-c4fbb51c55ee","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":" <string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/portal/2/:account_id/:portal_id","protocol":"https","host":["subdomain","kissflow","com"],"path":["portal","2",":account_id",":portal_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"a0a79d9a-33db-41cb-a29f-9cec85a0f32a"},{"name":"Get portal user details","id":"1eec4ece-4d9b-41b2-9d0d-82ad9491b779","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/:user_id","description":"<p>Retrieves details of a specific portal user.</p>\n","urlObject":{"protocol":"https","path":["user","2",":account_id","portal",":portal_id",":model_id",":user_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"},{"description":{"content":"<p>(Required) To retrieve the unique Model ID, call the 'Get portal settings' endpoint. Use the value in the response parameter called 'IdentityType' as your model ID.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"model_id"},{"description":{"content":"<p>(Required) The unique User ID of a Kissflow Portal user. To retrieve the user ID, call the 'Get list of portal users' endpoint.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"user_id"}]}},"response":[{"id":"ce0f0e8c-dca8-44d5-b30e-3db59711bc89","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""},{"key":"user_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"30a9b61c-1d48-4400-9832-549d39681a49","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""},{"key":"user_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"2173a718-9c25-456f-93c3-b33f4b8d4e49","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""},{"key":"user_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"81385e83-b651-4c2c-9ef7-24045975f567","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""},{"key":"user_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"1eec4ece-4d9b-41b2-9d0d-82ad9491b779"},{"name":"Update portal user details","id":"16968641-eb79-4691-bb44-2a420d4b2627","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/:user_id","description":"<p>Updates details of a specific portal user.</p>\n","urlObject":{"protocol":"https","path":["user","2",":account_id","portal",":portal_id",":model_id",":user_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"},{"description":{"content":"<p>(Required) To retrieve the unique Model ID, call the 'Get portal settings' endpoint. Use the value in the response parameter called 'IdentityType' as your model ID.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"model_id"},{"description":{"content":"<p>(Required) The unique User ID of a Kissflow Portal user. To retrieve the user ID, call the 'Get list of portal users' endpoint.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"user_id"}]}},"response":[{"id":"98057f61-9162-4371-bb39-0e966c5d0237","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""},{"key":"user_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"72c76d4a-2b83-421d-813a-ece1b3896716","name":"401 Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""},{"key":"user_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"ac41b57b-228d-4ed2-918a-ff5a9caa9471","name":"403 Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""},{"key":"user_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"795159ce-aa1f-4312-9358-5bedef887683","name":"404 Not Found","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",":user_id"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""},{"key":"user_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"16968641-eb79-4691-bb44-2a420d4b2627"},{"name":"Get list of portal users","id":"80cf39f4-21a8-4e5c-b346-4f0b04b0bdf1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/list?page_number=1&page_size=10&q=<string>","description":"<p>Retrieves all of the portal's users.</p>\n","urlObject":{"protocol":"https","path":["user","2",":account_id","portal",":portal_id",":model_id","list"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>Specify a page number to view all the requested users/groups listed on that page. The page number can be specified as 1, 2, 3, etc. This is an optional parameter.</p>\n","type":"text/plain"},"key":"page_number","value":"1"},{"description":{"content":"<p>Specify page size to view a certain number of requested users/groups in that page. Page size can be defined as 10, 25, 50, 100, etc. This is an optional parameter.</p>\n","type":"text/plain"},"key":"page_size","value":"10"},{"description":{"content":"<p>Specify a search filter string you want to apply over other parameters. This is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"},{"description":{"content":"<p>(Required) To retrieve the unique Model ID, call the 'Get portal settings' endpoint. Use the value in the response parameter called 'IdentityType' as your model ID.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"model_id"}]}},"response":[{"id":"84ac23c2-4149-43fb-998e-eca232bf9311","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/list?page_number=1&page_size=10&q=<string>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","list"],"query":[{"key":"page_number","value":"1","description":"Specify a page number to view all the requested users/groups listed on that page. The page number can be specified as 1, 2, 3, etc. This is an optional parameter."},{"key":"page_size","value":"10","description":"Specify page size to view a certain number of requested users/groups in that page. Page size can be defined as 10, 25, 50, 100, etc. This is an optional parameter."},{"key":"q","value":"<string>","description":"Specify a search filter string you want to apply over other parameters. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"Columns\": [\n      {\n        \"Id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Required\": \"<boolean>\",\n        \"ReadOnly\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Label\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Required\": \"<boolean>\",\n        \"ReadOnly\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Label\": \"<string>\"\n      }\n    ],\n    \"_id\": \"<string>\",\n    \"Table_User\": [\n      {\n        \"_id\": \"<string>\",\n        \"NickName\": \"<string>\",\n        \"FirstName\": \"<string>\",\n        \"Groups\": [\n          {\n            \"_id\": \"<string>\"\n          },\n          {\n            \"_id\": \"<string>\"\n          }\n        ],\n        \"Kind\": \"<string>\",\n        \"UserType\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Status\": \"<string>\",\n        \"LastName\": \"<string>\",\n        \"ProfilePicture\": \"<string>\",\n        \"Phone\": \"<string>\",\n        \"UserSystemType\": \"<integer>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"NickName\": \"<string>\",\n        \"FirstName\": \"<string>\",\n        \"Groups\": [\n          {\n            \"_id\": \"<string>\"\n          },\n          {\n            \"_id\": \"<string>\"\n          }\n        ],\n        \"Kind\": \"<string>\",\n        \"UserType\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Status\": \"<string>\",\n        \"LastName\": \"<string>\",\n        \"ProfilePicture\": \"<string>\",\n        \"Phone\": \"<string>\",\n        \"UserSystemType\": \"<integer>\"\n      }\n    ]\n  },\n  {\n    \"Columns\": [\n      {\n        \"Id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Required\": \"<boolean>\",\n        \"ReadOnly\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Label\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Required\": \"<boolean>\",\n        \"ReadOnly\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Label\": \"<string>\"\n      }\n    ],\n    \"_id\": \"<string>\",\n    \"Table_User\": [\n      {\n        \"_id\": \"<string>\",\n        \"NickName\": \"<string>\",\n        \"FirstName\": \"<string>\",\n        \"Groups\": [\n          {\n            \"_id\": \"<string>\"\n          },\n          {\n            \"_id\": \"<string>\"\n          }\n        ],\n        \"Kind\": \"<string>\",\n        \"UserType\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Status\": \"<string>\",\n        \"LastName\": \"<string>\",\n        \"ProfilePicture\": \"<string>\",\n        \"Phone\": \"<string>\",\n        \"UserSystemType\": \"<integer>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"NickName\": \"<string>\",\n        \"FirstName\": \"<string>\",\n        \"Groups\": [\n          {\n            \"_id\": \"<string>\"\n          },\n          {\n            \"_id\": \"<string>\"\n          }\n        ],\n        \"Kind\": \"<string>\",\n        \"UserType\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Status\": \"<string>\",\n        \"LastName\": \"<string>\",\n        \"ProfilePicture\": \"<string>\",\n        \"Phone\": \"<string>\",\n        \"UserSystemType\": \"<integer>\"\n      }\n    ]\n  }\n]"},{"id":"c143def4-b7eb-46e0-b4ae-963e0e25b292","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/list?page_number=1&page_size=10&q=<string>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","list"],"query":[{"key":"page_number","value":"1","description":"Specify a page number to view all the requested users/groups listed on that page. The page number can be specified as 1, 2, 3, etc. This is an optional parameter."},{"key":"page_size","value":"10","description":"Specify page size to view a certain number of requested users/groups in that page. Page size can be defined as 10, 25, 50, 100, etc. This is an optional parameter."},{"key":"q","value":"<string>","description":"Specify a search filter string you want to apply over other parameters. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"13ea7eab-5a6b-4c83-a327-4cd036fd3531","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/list?page_number=1&page_size=10&q=<string>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","list"],"query":[{"key":"page_number","value":"1","description":"Specify a page number to view all the requested users/groups listed on that page. The page number can be specified as 1, 2, 3, etc. This is an optional parameter."},{"key":"page_size","value":"10","description":"Specify page size to view a certain number of requested users/groups in that page. Page size can be defined as 10, 25, 50, 100, etc. This is an optional parameter."},{"key":"q","value":"<string>","description":"Specify a search filter string you want to apply over other parameters. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"5eaf9d8a-eee7-480f-a1e5-6c25baa4ff70","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/list?page_number=1&page_size=10&q=<string>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","list"],"query":[{"key":"page_number","value":"1","description":"Specify a page number to view all the requested users/groups listed on that page. The page number can be specified as 1, 2, 3, etc. This is an optional parameter."},{"key":"page_size","value":"10","description":"Specify page size to view a certain number of requested users/groups in that page. Page size can be defined as 10, 25, 50, 100, etc. This is an optional parameter."},{"key":"q","value":"<string>","description":"Specify a search filter string you want to apply over other parameters. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"80cf39f4-21a8-4e5c-b346-4f0b04b0bdf1"},{"name":"Get list of portal users by IDs","id":"5585ed63-6443-487f-8cfc-58a0a01cb023","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Sort\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\"\n    },\n    {\n      \"Id\": \"<string>\"\n    }\n  ],\n  \"Filter\": {\n    \"OR\": [\n      [\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"sit aliqua\",\n              \"Operator\": \"eu mollit aliqua\",\n              \"RHSType\": \"non nostrud anim\",\n              \"RHSValue\": \"consectetur ani\",\n              \"RHSField\": \"consectetur ipsum in\"\n            },\n            {\n              \"LHSField\": \"veniam nostrud do\",\n              \"Operator\": \"amet enim aliqua proident culpa\",\n              \"RHSType\": \"eu quis tempor commodo qui\",\n              \"RHSValue\": \"proident ipsum aute\",\n              \"RHSField\": \"ad dolor in voluptate officia\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"minim ullamco dolor commodo\",\n              \"Operator\": \"labore in Ut reprehenderit sit\",\n              \"RHSType\": \"sit ipsum minim\",\n              \"RHSValue\": \"Duis eu Ut anim\",\n              \"RHSField\": \"culpa laboris\"\n            },\n            {\n              \"LHSField\": \"commodo minim ullamco aute\",\n              \"Operator\": \"labore officia voluptate\",\n              \"RHSType\": \"laboris quis do reprehenderit veniam\",\n              \"RHSValue\": \"irure do\",\n              \"RHSField\": \"ut amet incididunt\"\n            }\n          ]\n        }\n      ],\n      [\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"proiden\",\n              \"Operator\": \"dolore aliquip voluptate nulla\",\n              \"RHSType\": \"ex\",\n              \"RHSValue\": \"ipsum et mollit\",\n              \"RHSField\": \"elit laboris reprehenderit pariatur minim\"\n            },\n            {\n              \"LHSField\": \"exercitation\",\n              \"Operator\": \"mollit fugiat laborum exercitation\",\n              \"RHSType\": \"minim qui eu sint\",\n              \"RHSValue\": \"dolore irure Excepteur dolor\",\n              \"RHSField\": \"ex in qui ipsum\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"nostrud incididunt\",\n              \"Operator\": \"nostrud mollit\",\n              \"RHSType\": \"in cillum dolore sint\",\n              \"RHSValue\": \"dolor minim culpa\",\n              \"RHSField\": \"in qui incididunt\"\n            },\n            {\n              \"LHSField\": \"Ut consequat\",\n              \"Operator\": \"Lorem mollit laboris aliqua ex\",\n              \"RHSType\": \"cons\",\n              \"RHSValue\": \"in sit i\",\n              \"RHSField\": \"exercitation irure\"\n            }\n          ]\n        }\n      ]\n    ]\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/list?page_number=1&page_size=10&q=<string>","description":"<p>Retrieves list of portal users based on their unique portal user IDs.</p>\n","urlObject":{"protocol":"https","path":["user","2",":account_id","portal",":portal_id",":model_id","list"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>Specify a page number to view all the requested users/groups listed on that page. The page number can be specified as 1, 2, 3, etc. This is an optional parameter.</p>\n","type":"text/plain"},"key":"page_number","value":"1"},{"description":{"content":"<p>Specify page size to view a certain number of requested users/groups in that page. Page size can be defined as 10, 25, 50, 100, etc. This is an optional parameter.</p>\n","type":"text/plain"},"key":"page_size","value":"10"},{"description":{"content":"<p>Specify a search filter string you want to apply over other parameters. This is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"},{"description":{"content":"<p>(Required) To retrieve the unique Model ID, call the 'Get portal settings' endpoint. Use the value in the response parameter called 'IdentityType' as your model ID.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"model_id"}]}},"response":[{"id":"134b73e4-c22d-4ad6-81dd-1fb5dc558705","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Sort\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\"\n    },\n    {\n      \"Id\": \"<string>\"\n    }\n  ],\n  \"Filter\": {\n    \"OR\": [\n      [\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"sit aliqua\",\n              \"Operator\": \"eu mollit aliqua\",\n              \"RHSType\": \"non nostrud anim\",\n              \"RHSValue\": \"consectetur ani\",\n              \"RHSField\": \"consectetur ipsum in\"\n            },\n            {\n              \"LHSField\": \"veniam nostrud do\",\n              \"Operator\": \"amet enim aliqua proident culpa\",\n              \"RHSType\": \"eu quis tempor commodo qui\",\n              \"RHSValue\": \"proident ipsum aute\",\n              \"RHSField\": \"ad dolor in voluptate officia\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"minim ullamco dolor commodo\",\n              \"Operator\": \"labore in Ut reprehenderit sit\",\n              \"RHSType\": \"sit ipsum minim\",\n              \"RHSValue\": \"Duis eu Ut anim\",\n              \"RHSField\": \"culpa laboris\"\n            },\n            {\n              \"LHSField\": \"commodo minim ullamco aute\",\n              \"Operator\": \"labore officia voluptate\",\n              \"RHSType\": \"laboris quis do reprehenderit veniam\",\n              \"RHSValue\": \"irure do\",\n              \"RHSField\": \"ut amet incididunt\"\n            }\n          ]\n        }\n      ],\n      [\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"proiden\",\n              \"Operator\": \"dolore aliquip voluptate nulla\",\n              \"RHSType\": \"ex\",\n              \"RHSValue\": \"ipsum et mollit\",\n              \"RHSField\": \"elit laboris reprehenderit pariatur minim\"\n            },\n            {\n              \"LHSField\": \"exercitation\",\n              \"Operator\": \"mollit fugiat laborum exercitation\",\n              \"RHSType\": \"minim qui eu sint\",\n              \"RHSValue\": \"dolore irure Excepteur dolor\",\n              \"RHSField\": \"ex in qui ipsum\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"nostrud incididunt\",\n              \"Operator\": \"nostrud mollit\",\n              \"RHSType\": \"in cillum dolore sint\",\n              \"RHSValue\": \"dolor minim culpa\",\n              \"RHSField\": \"in qui incididunt\"\n            },\n            {\n              \"LHSField\": \"Ut consequat\",\n              \"Operator\": \"Lorem mollit laboris aliqua ex\",\n              \"RHSType\": \"cons\",\n              \"RHSValue\": \"in sit i\",\n              \"RHSField\": \"exercitation irure\"\n            }\n          ]\n        }\n      ]\n    ]\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/list?page_number=1&page_size=10&q=<string>","protocol":"https","host":["subdomain","kissflow","com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","list"],"query":[{"key":"page_number","value":"1","description":"Specify a page number to view all the requested users/groups listed on that page. The page number can be specified as 1, 2, 3, etc. This is an optional parameter."},{"key":"page_size","value":"10","description":"Specify page size to view a certain number of requested users/groups in that page. Page size can be defined as 10, 25, 50, 100, etc. This is an optional parameter."},{"key":"q","value":"<string>","description":"Specify a search filter string you want to apply over other parameters. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"Columns\": [\n      {\n        \"Id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Required\": \"<boolean>\",\n        \"ReadOnly\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Label\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Required\": \"<boolean>\",\n        \"ReadOnly\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Label\": \"<string>\"\n      }\n    ],\n    \"_id\": \"<string>\",\n    \"Table_User\": [\n      {\n        \"_id\": \"<string>\",\n        \"NickName\": \"<string>\",\n        \"FirstName\": \"<string>\",\n        \"Groups\": [\n          {\n            \"_id\": \"<string>\"\n          },\n          {\n            \"_id\": \"<string>\"\n          }\n        ],\n        \"Kind\": \"<string>\",\n        \"UserType\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Status\": \"<string>\",\n        \"LastName\": \"<string>\",\n        \"ProfilePicture\": \"<string>\",\n        \"Phone\": \"<string>\",\n        \"UserSystemType\": \"<integer>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"NickName\": \"<string>\",\n        \"FirstName\": \"<string>\",\n        \"Groups\": [\n          {\n            \"_id\": \"<string>\"\n          },\n          {\n            \"_id\": \"<string>\"\n          }\n        ],\n        \"Kind\": \"<string>\",\n        \"UserType\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Status\": \"<string>\",\n        \"LastName\": \"<string>\",\n        \"ProfilePicture\": \"<string>\",\n        \"Phone\": \"<string>\",\n        \"UserSystemType\": \"<integer>\"\n      }\n    ]\n  },\n  {\n    \"Columns\": [\n      {\n        \"Id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Required\": \"<boolean>\",\n        \"ReadOnly\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Label\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Required\": \"<boolean>\",\n        \"ReadOnly\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Label\": \"<string>\"\n      }\n    ],\n    \"_id\": \"<string>\",\n    \"Table_User\": [\n      {\n        \"_id\": \"<string>\",\n        \"NickName\": \"<string>\",\n        \"FirstName\": \"<string>\",\n        \"Groups\": [\n          {\n            \"_id\": \"<string>\"\n          },\n          {\n            \"_id\": \"<string>\"\n          }\n        ],\n        \"Kind\": \"<string>\",\n        \"UserType\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Status\": \"<string>\",\n        \"LastName\": \"<string>\",\n        \"ProfilePicture\": \"<string>\",\n        \"Phone\": \"<string>\",\n        \"UserSystemType\": \"<integer>\"\n      },\n      {\n        \"_id\": \"<string>\",\n        \"NickName\": \"<string>\",\n        \"FirstName\": \"<string>\",\n        \"Groups\": [\n          {\n            \"_id\": \"<string>\"\n          },\n          {\n            \"_id\": \"<string>\"\n          }\n        ],\n        \"Kind\": \"<string>\",\n        \"UserType\": \"<string>\",\n        \"Name\": \"<string>\",\n        \"Status\": \"<string>\",\n        \"LastName\": \"<string>\",\n        \"ProfilePicture\": \"<string>\",\n        \"Phone\": \"<string>\",\n        \"UserSystemType\": \"<integer>\"\n      }\n    ]\n  }\n]"},{"id":"77cb07f8-cdc5-4580-b6d4-e67c0f59f190","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Sort\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\"\n    },\n    {\n      \"Id\": \"<string>\"\n    }\n  ],\n  \"Filter\": {\n    \"OR\": [\n      [\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"sit aliqua\",\n              \"Operator\": \"eu mollit aliqua\",\n              \"RHSType\": \"non nostrud anim\",\n              \"RHSValue\": \"consectetur ani\",\n              \"RHSField\": \"consectetur ipsum in\"\n            },\n            {\n              \"LHSField\": \"veniam nostrud do\",\n              \"Operator\": \"amet enim aliqua proident culpa\",\n              \"RHSType\": \"eu quis tempor commodo qui\",\n              \"RHSValue\": \"proident ipsum aute\",\n              \"RHSField\": \"ad dolor in voluptate officia\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"minim ullamco dolor commodo\",\n              \"Operator\": \"labore in Ut reprehenderit sit\",\n              \"RHSType\": \"sit ipsum minim\",\n              \"RHSValue\": \"Duis eu Ut anim\",\n              \"RHSField\": \"culpa laboris\"\n            },\n            {\n              \"LHSField\": \"commodo minim ullamco aute\",\n              \"Operator\": \"labore officia voluptate\",\n              \"RHSType\": \"laboris quis do reprehenderit veniam\",\n              \"RHSValue\": \"irure do\",\n              \"RHSField\": \"ut amet incididunt\"\n            }\n          ]\n        }\n      ],\n      [\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"proiden\",\n              \"Operator\": \"dolore aliquip voluptate nulla\",\n              \"RHSType\": \"ex\",\n              \"RHSValue\": \"ipsum et mollit\",\n              \"RHSField\": \"elit laboris reprehenderit pariatur minim\"\n            },\n            {\n              \"LHSField\": \"exercitation\",\n              \"Operator\": \"mollit fugiat laborum exercitation\",\n              \"RHSType\": \"minim qui eu sint\",\n              \"RHSValue\": \"dolore irure Excepteur dolor\",\n              \"RHSField\": \"ex in qui ipsum\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"nostrud incididunt\",\n              \"Operator\": \"nostrud mollit\",\n              \"RHSType\": \"in cillum dolore sint\",\n              \"RHSValue\": \"dolor minim culpa\",\n              \"RHSField\": \"in qui incididunt\"\n            },\n            {\n              \"LHSField\": \"Ut consequat\",\n              \"Operator\": \"Lorem mollit laboris aliqua ex\",\n              \"RHSType\": \"cons\",\n              \"RHSValue\": \"in sit i\",\n              \"RHSField\": \"exercitation irure\"\n            }\n          ]\n        }\n      ]\n    ]\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/list?page_number=1&page_size=10&q=<string>","protocol":"https","host":["subdomain","kissflow","com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","list"],"query":[{"key":"page_number","value":"1","description":"Specify a page number to view all the requested users/groups listed on that page. The page number can be specified as 1, 2, 3, etc. This is an optional parameter."},{"key":"page_size","value":"10","description":"Specify page size to view a certain number of requested users/groups in that page. Page size can be defined as 10, 25, 50, 100, etc. This is an optional parameter."},{"key":"q","value":"<string>","description":"Specify a search filter string you want to apply over other parameters. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"e3182c16-8671-44f7-8f7c-f5359869d9a1","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Sort\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\"\n    },\n    {\n      \"Id\": \"<string>\"\n    }\n  ],\n  \"Filter\": {\n    \"OR\": [\n      [\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"sit aliqua\",\n              \"Operator\": \"eu mollit aliqua\",\n              \"RHSType\": \"non nostrud anim\",\n              \"RHSValue\": \"consectetur ani\",\n              \"RHSField\": \"consectetur ipsum in\"\n            },\n            {\n              \"LHSField\": \"veniam nostrud do\",\n              \"Operator\": \"amet enim aliqua proident culpa\",\n              \"RHSType\": \"eu quis tempor commodo qui\",\n              \"RHSValue\": \"proident ipsum aute\",\n              \"RHSField\": \"ad dolor in voluptate officia\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"minim ullamco dolor commodo\",\n              \"Operator\": \"labore in Ut reprehenderit sit\",\n              \"RHSType\": \"sit ipsum minim\",\n              \"RHSValue\": \"Duis eu Ut anim\",\n              \"RHSField\": \"culpa laboris\"\n            },\n            {\n              \"LHSField\": \"commodo minim ullamco aute\",\n              \"Operator\": \"labore officia voluptate\",\n              \"RHSType\": \"laboris quis do reprehenderit veniam\",\n              \"RHSValue\": \"irure do\",\n              \"RHSField\": \"ut amet incididunt\"\n            }\n          ]\n        }\n      ],\n      [\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"proiden\",\n              \"Operator\": \"dolore aliquip voluptate nulla\",\n              \"RHSType\": \"ex\",\n              \"RHSValue\": \"ipsum et mollit\",\n              \"RHSField\": \"elit laboris reprehenderit pariatur minim\"\n            },\n            {\n              \"LHSField\": \"exercitation\",\n              \"Operator\": \"mollit fugiat laborum exercitation\",\n              \"RHSType\": \"minim qui eu sint\",\n              \"RHSValue\": \"dolore irure Excepteur dolor\",\n              \"RHSField\": \"ex in qui ipsum\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"nostrud incididunt\",\n              \"Operator\": \"nostrud mollit\",\n              \"RHSType\": \"in cillum dolore sint\",\n              \"RHSValue\": \"dolor minim culpa\",\n              \"RHSField\": \"in qui incididunt\"\n            },\n            {\n              \"LHSField\": \"Ut consequat\",\n              \"Operator\": \"Lorem mollit laboris aliqua ex\",\n              \"RHSType\": \"cons\",\n              \"RHSValue\": \"in sit i\",\n              \"RHSField\": \"exercitation irure\"\n            }\n          ]\n        }\n      ]\n    ]\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/list?page_number=1&page_size=10&q=<string>","protocol":"https","host":["subdomain","kissflow","com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","list"],"query":[{"key":"page_number","value":"1","description":"Specify a page number to view all the requested users/groups listed on that page. The page number can be specified as 1, 2, 3, etc. This is an optional parameter."},{"key":"page_size","value":"10","description":"Specify page size to view a certain number of requested users/groups in that page. Page size can be defined as 10, 25, 50, 100, etc. This is an optional parameter."},{"key":"q","value":"<string>","description":"Specify a search filter string you want to apply over other parameters. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"6897b261-5d35-45ee-bd2c-ba1984062602","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Sort\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\"\n    },\n    {\n      \"Id\": \"<string>\"\n    }\n  ],\n  \"Filter\": {\n    \"OR\": [\n      [\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"sit aliqua\",\n              \"Operator\": \"eu mollit aliqua\",\n              \"RHSType\": \"non nostrud anim\",\n              \"RHSValue\": \"consectetur ani\",\n              \"RHSField\": \"consectetur ipsum in\"\n            },\n            {\n              \"LHSField\": \"veniam nostrud do\",\n              \"Operator\": \"amet enim aliqua proident culpa\",\n              \"RHSType\": \"eu quis tempor commodo qui\",\n              \"RHSValue\": \"proident ipsum aute\",\n              \"RHSField\": \"ad dolor in voluptate officia\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"minim ullamco dolor commodo\",\n              \"Operator\": \"labore in Ut reprehenderit sit\",\n              \"RHSType\": \"sit ipsum minim\",\n              \"RHSValue\": \"Duis eu Ut anim\",\n              \"RHSField\": \"culpa laboris\"\n            },\n            {\n              \"LHSField\": \"commodo minim ullamco aute\",\n              \"Operator\": \"labore officia voluptate\",\n              \"RHSType\": \"laboris quis do reprehenderit veniam\",\n              \"RHSValue\": \"irure do\",\n              \"RHSField\": \"ut amet incididunt\"\n            }\n          ]\n        }\n      ],\n      [\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"proiden\",\n              \"Operator\": \"dolore aliquip voluptate nulla\",\n              \"RHSType\": \"ex\",\n              \"RHSValue\": \"ipsum et mollit\",\n              \"RHSField\": \"elit laboris reprehenderit pariatur minim\"\n            },\n            {\n              \"LHSField\": \"exercitation\",\n              \"Operator\": \"mollit fugiat laborum exercitation\",\n              \"RHSType\": \"minim qui eu sint\",\n              \"RHSValue\": \"dolore irure Excepteur dolor\",\n              \"RHSField\": \"ex in qui ipsum\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"LHSField\": \"nostrud incididunt\",\n              \"Operator\": \"nostrud mollit\",\n              \"RHSType\": \"in cillum dolore sint\",\n              \"RHSValue\": \"dolor minim culpa\",\n              \"RHSField\": \"in qui incididunt\"\n            },\n            {\n              \"LHSField\": \"Ut consequat\",\n              \"Operator\": \"Lorem mollit laboris aliqua ex\",\n              \"RHSType\": \"cons\",\n              \"RHSValue\": \"in sit i\",\n              \"RHSField\": \"exercitation irure\"\n            }\n          ]\n        }\n      ]\n    ]\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/list?page_number=1&page_size=10&q=<string>","protocol":"https","host":["subdomain","kissflow","com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","list"],"query":[{"key":"page_number","value":"1","description":"Specify a page number to view all the requested users/groups listed on that page. The page number can be specified as 1, 2, 3, etc. This is an optional parameter."},{"key":"page_size","value":"10","description":"Specify page size to view a certain number of requested users/groups in that page. Page size can be defined as 10, 25, 50, 100, etc. This is an optional parameter."},{"key":"q","value":"<string>","description":"Specify a search filter string you want to apply over other parameters. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"5585ed63-6443-487f-8cfc-58a0a01cb023"},{"name":"Get portal user count","id":"6b6dcb52-f3c3-4a72-862f-18dda41c95ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/count","description":"<p>Retrieves the number of users in a portal.</p>\n","urlObject":{"protocol":"https","path":["user","2",":account_id","portal",":portal_id",":model_id","count"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"},{"description":{"content":"<p>(Required) To retrieve the unique Model ID, call the 'Get portal settings' endpoint. Use the value in the response parameter called 'IdentityType' as your model ID.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"model_id"}]}},"response":[{"id":"cc895555-75e9-4479-a923-0c53b1240141","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/count","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","count"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"7769dfa5-3935-49e8-8075-2ee5ddaf61c3","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/count","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","count"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"163358e9-32d8-4f25-8c27-0ffc7ca14f3a","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/count","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","count"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"0513cf3f-f785-44a5-ab35-7c6cf285adb5","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/count","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","count"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"6b6dcb52-f3c3-4a72-862f-18dda41c95ab"},{"name":"Get portal user count by status","id":"4fe0fbbc-768c-4544-b0e0-617959163d77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/status/count","description":"<p>Retrieves the number of portal users based on their user status.</p>\n","urlObject":{"protocol":"https","path":["user","2",":account_id","portal",":portal_id",":model_id","status","count"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"},{"description":{"content":"<p>(Required) To retrieve the unique Model ID, call the 'Get portal settings' endpoint. Use the value in the response parameter called 'IdentityType' as your model ID.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"model_id"}]}},"response":[{"id":"3edb74ad-b753-4b44-8ea5-b7791d616154","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/status/count","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","status","count"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Active\": \"<integer>\",\n  \"Invited\": \"<integer>\",\n  \"RequestedAccess\": \"<integer>\",\n  \"InActive\": \"<integer>\"\n}"},{"id":"2f1c9d7f-bd08-4873-8884-b8459bbad331","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/status/count","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","status","count"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"35cee1fd-7a13-49da-b221-dfcc9204b850","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/status/count","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","status","count"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"e608d556-b950-4986-b474-64ce8aced8a5","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/status/count","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","status","count"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"4fe0fbbc-768c-4544-b0e0-617959163d77"},{"name":"Create portal user","id":"9cd992c1-3f8c-4a2d-9638-9873bc888731","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"LastName\": \"<string>\",\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/?skip_email=<boolean>","description":"<p>Creates a user and adds them to a portal.</p>\n","urlObject":{"protocol":"https","path":["user","2",":account_id","portal",":portal_id",":model_id",""],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>Flag to skip sending email to the new user. This is an optional parameter.</p>\n","type":"text/plain"},"key":"skip_email","value":"<boolean>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"},{"description":{"content":"<p>(Required) To retrieve the unique Model ID, call the 'Get portal settings' endpoint. Use the value in the response parameter called 'IdentityType' as your model ID.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"model_id"}]}},"response":[{"id":"324353f3-b6b1-49e3-81af-7047d4ef1dcc","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"LastName\": \"<string>\",\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/?skip_email=<boolean>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",""],"query":[{"key":"skip_email","value":"<boolean>","description":"Flag to skip sending email to the new user. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"Manager\": {\n    \"_id\": \"<string>\",\n    \"Kind\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"AppConfig\": {\n    \"ProfileBasePath\": \"<string>\",\n    \"UploadHost\": \"<string>\"\n  },\n  \"TimeZone\": {},\n  \"Signature\": \"<string>\",\n  \"ProfilePicture\": \"<string>\",\n  \"Phone\": \"<string>\",\n  \"Designation\": \"<string>\",\n  \"NickName\": \"<string>\",\n  \"DelegationEndDate\": \"<date>\",\n  \"Kind\": \"<string>\",\n  \"UserType\": \"<string>\",\n  \"LastName\": \"<string>\",\n  \"Language\": \"<string>\",\n  \"_modified_by\": {\n    \"_id\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"FirstName\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": \"<string>\"\n      },\n      {\n        \"_id\": \"<string>\"\n      }\n    ],\n    \"Kind\": \"<string>\",\n    \"UserType\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"Status\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"UserSystemType\": \"<integer>\"\n  },\n  \"DelegatedTo\": {\n    \"_id\": \"<string>\",\n    \"Kind\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"Name\": \"<string>\",\n  \"_modified_at\": \"<dateTime>\",\n  \"UserSystemType\": \"<integer>\",\n  \"FirstName\": \"<string>\",\n  \"_created_at\": \"<dateTime>\",\n  \"DelegationStartDate\": \"<date>\",\n  \"_created_by\": {\n    \"_id\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"FirstName\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": \"<string>\"\n      },\n      {\n        \"_id\": \"<string>\"\n      }\n    ],\n    \"Kind\": \"<string>\",\n    \"UserType\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"Status\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"UserSystemType\": \"<integer>\"\n  },\n  \"Status\": \"<string>\",\n  \"Accessibility\": \"<string>\"\n}"},{"id":"883749ef-9709-4cb6-b661-8f180a6f4806","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"LastName\": \"<string>\",\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/?skip_email=<boolean>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",""],"query":[{"key":"skip_email","value":"<boolean>","description":"Flag to skip sending email to the new user. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"1d97f357-acbd-4919-8120-afb46843fbd3","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"LastName\": \"<string>\",\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/?skip_email=<boolean>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",""],"query":[{"key":"skip_email","value":"<boolean>","description":"Flag to skip sending email to the new user. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"ff9c5f92-3482-4b13-931b-e4a51af42cd5","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"LastName\": \"<string>\",\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/?skip_email=<boolean>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",""],"query":[{"key":"skip_email","value":"<boolean>","description":"Flag to skip sending email to the new user. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"bb7f965d-47bc-4bbb-b9d4-50455ce7d98f","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"LastName\": \"<string>\",\n  \"NickName\": \"<string>\",\n  \"FirstName\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/?skip_email=<boolean>","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id",""],"query":[{"key":"skip_email","value":"<boolean>","description":"Flag to skip sending email to the new user. This is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"9cd992c1-3f8c-4a2d-9638-9873bc888731"},{"name":"Get list of portal user fields","id":"0322aa9c-7238-4233-ad93-2535df074867","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/fields","description":"<p>Retrieves the complete list of user fields in a portal.</p>\n","urlObject":{"protocol":"https","path":["user","2",":account_id","portal",":portal_id",":model_id","fields"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"},{"description":{"content":"<p>(Required) To retrieve the unique Model ID, call the 'Get portal settings' endpoint. Use the value in the response parameter called 'IdentityType' as your model ID.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"model_id"}]}},"response":[{"id":"338ae3a1-3d25-448b-aaa3-631ae106fc8f","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/fields","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"92e10be4-c623-44c6-942e-7b1f0a47fcb8","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/fields","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"7f5090dc-f040-411b-aca3-2f6d0161ee6e","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/fields","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"63eadbe7-27b3-4c63-a992-0aea829bca4b","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/fields","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"0322aa9c-7238-4233-ad93-2535df074867"},{"name":"Bulk password reset","id":"8f7a6201-6f1c-43e8-941a-2dcc8d3d40e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/password/forcereset","description":"<p>Resets passwords of many portal users in bulk.</p>\n","urlObject":{"protocol":"https","path":["user","2",":account_id","portal",":portal_id",":model_id","password","forcereset"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"},{"description":{"content":"<p>(Required) To retrieve the unique Model ID, call the 'Get portal settings' endpoint. Use the value in the response parameter called 'IdentityType' as your model ID.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"model_id"}]}},"response":[{"id":"6c7dfd71-98ad-4942-8970-075416528697","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/password/forcereset","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","password","forcereset"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"f754a8f5-1ff4-4c06-a9d6-55ec0a2c3a32","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/password/forcereset","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","password","forcereset"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"4b71902b-e914-4f67-a4db-86bc1fae8036","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/password/forcereset","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","password","forcereset"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"d9e16098-be54-46e8-96ae-01e451db7a65","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/password/forcereset","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","password","forcereset"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"8f7a6201-6f1c-43e8-941a-2dcc8d3d40e9"},{"name":"Bulk activation of portal users","id":"7dd20a2d-e6e0-4649-af72-7a61a0589b58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/activate","description":"<p>Activates one or many portal users in bulk.</p>\n","urlObject":{"protocol":"https","path":["user","2",":account_id","portal",":portal_id",":model_id","activate"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"},{"description":{"content":"<p>(Required) To retrieve the unique Model ID, call the 'Get portal settings' endpoint. Use the value in the response parameter called 'IdentityType' as your model ID.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"model_id"}]}},"response":[{"id":"3bd3e141-e68e-4a0a-80c5-56537c8a6e69","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/activate","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","activate"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"c2018a71-8a7f-42d3-87e3-376a84ec392b","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/activate","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","activate"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"41c4f292-c158-4eea-b122-d7d07149765f","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/activate","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","activate"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"7bda3976-8662-40e3-bfc6-303cd79cee2f","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/activate","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","activate"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"7dd20a2d-e6e0-4649-af72-7a61a0589b58"},{"name":"Bulk deactivation of portal users","id":"6aa8c2ee-f9ac-4139-a548-f7a2d7e085c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/deactivate","description":"<p>Deactivates one or many portal users in bulk.</p>\n","urlObject":{"protocol":"https","path":["user","2",":account_id","portal",":portal_id",":model_id","deactivate"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Unique ID of the portal. You can find the portal ID from the portal web URL. For instance, in the URL, <a href=\"https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00\">https://thestarkcorporation.kissflow.net/view/portal/administration/Customer_portal_A00</a>, 'Customer_portal_A00' will be the portal ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"portal_id"},{"description":{"content":"<p>(Required) To retrieve the unique Model ID, call the 'Get portal settings' endpoint. Use the value in the response parameter called 'IdentityType' as your model ID.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"model_id"}]}},"response":[{"id":"72b6a5b8-4c7a-4f01-8ab5-5612507af2bf","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/deactivate","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","deactivate"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"98646206-5f81-4ce0-aebc-a01d7e5a7abc","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/deactivate","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","deactivate"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"98de7b70-16bf-4320-9b1e-bc8d2d092367","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/deactivate","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","deactivate"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"a6f4934d-5542-485c-b797-4076b1e6923a","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/2/:account_id/portal/:portal_id/:model_id/deactivate","host":["https://subdomain.kissflow.com"],"path":["user","2",":account_id","portal",":portal_id",":model_id","deactivate"],"variable":[{"key":"account_id","value":""},{"key":"portal_id","value":""},{"key":"model_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"6aa8c2ee-f9ac-4139-a548-f7a2d7e085c5"}],"id":"587a3da2-9417-440d-8322-1322ec870a32","description":"<p>Portals are applications that allow business operations to be conducted in collaboration with external users such as vendors, customers, or partners without the need to add them to your Kissflow account.</p>\n<h3 id=\"using-processes-boards-and-dataforms-within-kissflow-portals\">Using processes, boards, and dataforms within Kissflow portals</h3>\n<p>To use all <a href=\"https://api.kissflow.com/#bfb27b53-f18a-4fd4-93ed-7aaa73ce1b2f\">process API endpoints, </a> <a href=\"https://api.kissflow.com/#9f791d8b-1a77-47cc-86b5-67d05289d138\">dataform API endpoints</a> , and <a href=\"https://api.kissflow.com/#33a95d68-0efc-4c70-8c2d-cf30c8a61ce0\">board API endpoints</a> within portals, follow the key points below:</p>\n<ul>\n<li><p>Ensure the subdomain used in the API endpoint URL is your <a href=\"https://community.kissflow.com/t/p8h4atv/administering-portals#portal-details\">portal domain</a>, obtained from <em>Portal administration &gt; Portal settings &gt; Portal details &gt; Portal domain.</em></p>\n</li>\n<li><p>The <a href=\"https://community.kissflow.com/t/q6h4akr/creating-and-managing-access-keys\">access keys</a> must be from a service account in your portal, created from <strong>Account administration &gt; Service account.</strong> Select your portal service account and click <strong>Create access key</strong>.</p>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"9f144ebc-ed68-41dc-b8d3-595277263a50","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"09a6ba9c-ebb7-4004-84c9-8770671e3887","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"587a3da2-9417-440d-8322-1322ec870a32"},{"name":"Processes","item":[{"name":"Create a new item","id":"bfb27b53-f18a-4fd4-93ed-7aaa73ce1b2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id","description":"<p>Creates a new item request in your process.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/myitems/Draft</code>, <code>Purchase_reimbursement</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"}]}},"response":[{"id":"114c705c-410a-405e-8705-5a030ff86e9b","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"InstanceId\": \"<string>\",\n  \"ModelId\": \"<string>\",\n  \"ActivityInstanceId\": \"<string>\"\n}"},{"id":"86eedaea-a6db-42c5-84ff-96892c8d6d0d","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"5914be93-3419-4b54-9fae-f8654f8fd528","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"df2a2fdf-bb6d-4d71-b2de-dc2010c432e7","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"bfb27b53-f18a-4fd4-93ed-7aaa73ce1b2f"},{"name":"Submit an item","id":"51186d8b-7c13-48b4-a0b4-5018fbffe3b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) [Access key secret](<a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">https://community.kissflow.com/t/35h4az8/api-authentication#access-keys</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/submit","description":"<p>Submits an item in a workflow step of your process.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id","submit"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/myitems/Draft</code>, <code>Purchase_reimbursement</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier for each process step. You can find the activity instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9RNK_A</code> will be the activity instance ID of the specific process step. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"}]}},"response":[{"id":"0dc16cf2-de22-4a93-b2b3-eee4fc2c31f7","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/submit","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id","submit"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": \"<string>\"\n}"},{"id":"a67ef1b9-8cd5-4af8-8b85-005cec24e079","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/submit","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id","submit"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"a3ee9327-217d-4ab7-9a45-a77f361c137c","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/submit","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id","submit"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"03cfcd57-6ada-4d53-9e73-959560786f64","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/submit","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id","submit"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"51186d8b-7c13-48b4-a0b4-5018fbffe3b9"},{"name":"Reject an item","id":"ea03f4c1-77ab-4a70-b783-6ddb022efb38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Note\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/reject","description":"<p>Rejects a specific item in a workflow step of your process.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id","reject"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/myitems/Draft</code>, <code>Purchase_reimbursement</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier for each process step. You can find the activity instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9RNK_A</code> will be the activity instance ID of the specific process step. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"}]}},"response":[{"id":"c0fef112-e467-4788-8644-8d85206824f5","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Note\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/reject","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id","reject"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Success\": \"<string>\"\n}"},{"id":"2fb9f1aa-898c-4e90-b00a-0da34054167f","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Note\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/reject","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id","reject"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"29961b2f-4bd5-4639-aba7-0c77212ccd13","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Note\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/reject","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id","reject"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"499ff22f-5b43-4c16-8a05-4e42daad02d7","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Note\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/reject","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id","reject"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"ea03f4c1-77ab-4a70-b783-6ddb022efb38"},{"name":"Get item details from a process step","id":"97ae6a9a-5d26-490d-83e4-ceda51090319","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id","description":"<p>Retrieves the details of an item from a specific process step.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/myitems/Draft</code>, <code>Purchase_reimbursement</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier for each process step. You can find the activity instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9RNK_A</code> will be the activity instance ID of the specific process step. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"}]}},"response":[{"id":"09ac014a-eaf9-4a1a-b738-2bc204f1fdbb","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_current_assigned_to\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ],\n  \"_progress\": \"<integer>\",\n  \"_current_step\": \"<string>\"\n}"},{"id":"bf993601-9873-4d28-a41a-2b33242e4fbf","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<API Key>","description":"Added as a part of security scheme: apikey"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"ef2c86ed-bbbb-4d16-a2e1-cf52df19a8e3","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"a4a01be9-40c9-48b2-a30b-95be79924b27","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"97ae6a9a-5d26-490d-83e4-ceda51090319"},{"name":"Get progress details","id":"2fe2fe33-0991-44c1-8b38-179b3ac1dccd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/progress","description":"<p>Retrieves the progress of a specific item in your process.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id","progress"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/myitems/Draft</code>, <code>Purchase_reimbursement</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"d8f2ae6b-9b9c-4760-b330-0cd73952238b","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/progress","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id","progress"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"steps\": [\n    {\n      \"Type\": \"<string>\"\n    },\n    {\n      \"Type\": \"<string>\"\n    }\n  ]\n}"},{"id":"827e4f58-41fa-49f5-96d0-77b7b09fdce8","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/progress","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id","progress"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"5780bb88-3a23-49e1-8a18-2e9d741a1a47","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/progress","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id","progress"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"57bb8ec9-5f67-494b-9ea5-eb84563b9550","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/progress","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id","progress"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"2fe2fe33-0991-44c1-8b38-179b3ac1dccd"},{"name":"Add attachment to a form field","id":"8b4c7ee7-e4aa-4cee-8ebd-0497fa14c04d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Attach your file in the body payload.</p>\n","key":"file","type":"file","src":"postman-cloud:///1efbd0e5-5794-4f20-b6c6-9f19e9277d4d"}]},"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment","description":"<p>Uploads an attachment to a form field of your process. You can add an attachment in the following file formats - .jpg, .jpeg, .png, .bmp, .gif, .tif, .doc, .docx, .pdf, .ppt, .pptx, .xls, .xlsx, .csv, .txt, .eml, .zip, and .mp4. Please note that, for encoding images, only blob data type is currently supported and not Base64.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/myitems/Draft</code>, <code>Purchase_reimbursement</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier for each process step. You can find the activity instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9RNK_A</code> will be the activity instance ID of the specific process step. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"0c7d3c11-1a9e-4de9-b9e4-22a141421727","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"fb3ad2e4-be35-4a74-809c-dc5f0d524814","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"cd3d33e5-c923-4ea4-b4b8-ece07acdba9e","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"9030d21b-23ed-48f5-a63a-0907b72387d8","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"8b4c7ee7-e4aa-4cee-8ebd-0497fa14c04d"},{"name":"Download attachment from a form field","id":"78bfb230-08a1-44e9-93c7-233afa6bc885","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment/:attachment_id","description":"<p>Downloads a specific attachment from a form field of your process.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment",":attachment_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier for each process step. You can find the activity instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9RNK_A</code> will be the activity instance ID of the specific process step. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each attached file in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"attachment_id"}]}},"response":[{"id":"cba12011-7393-4970-876d-d0579831e0d3","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/octet-stream"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"fde23124-1520-478a-8010-db57fb5766ee","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"6cfc935f-eac2-4891-a95a-c9f1b424db9e","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"94d3fa1b-3bab-4a01-9f27-88dfd3497bb5","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"78bfb230-08a1-44e9-93c7-233afa6bc885"},{"name":"Add attachment to a table field","id":"30a230cd-7003-4015-bd69-beca78fbca81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Attach your file in the body payload.</p>\n","key":"file","type":"file","src":"postman-cloud:///1efbd0e5-5794-4f20-b6c6-9f19e9277d4d"}]},"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment","description":"<p>Uploads an attachment to a table in your process form. You can add an attachment in the following file formats - .jpg, .jpeg, .png, .bmp, .gif, .tif, .doc, .docx, .pdf, .ppt, .pptx, .xls, .xlsx, .csv, .txt, .eml, .zip, and .mp4. Please note that, for encoding images, only blob data type is currently supported and not Base64.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/myitems/Draft</code>, <code>Purchase_reimbursement</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier for each process step. You can find the activity instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9RNK_A</code> will be the activity instance ID of the specific process step. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each column (field) in your process form's table.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"5a8b0174-889f-49ac-a3ac-cff368ef5b39","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"43d516d5-8890-45aa-b87c-80ba214ef34a","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"19208bc6-888d-4931-bb6e-1745b43f1d9f","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"20d9cf2b-7c40-4cc9-a653-3ebd79f31c2a","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"30a230cd-7003-4015-bd69-beca78fbca81"},{"name":"Download attachment from a table field","id":"12d6289d-811a-4bb3-b6e4-4e2db6c37112","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment/:attachment_id","description":"<p>Downloads a specific attachment from a table within your process form.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier for each process step. You can find the activity instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9RNK_A</code> will be the activity instance ID of the specific process step. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each column (field) in your process form’s table.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each attached file in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"attachment_id"}]}},"response":[{"id":"e5091368-bc39-40c3-8c84-aad06207c25c","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/octet-stream"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"af331f5b-7507-4a61-8b9e-db2f400e331d","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"be20de30-d824-4b7c-901a-703953a1c79e","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"c19b6d8f-548f-45ee-ab9d-5ddc54a2e973","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"12d6289d-811a-4bb3-b6e4-4e2db6c37112"},{"name":"Add image to a form field","id":"61b74aea-006a-44e2-a365-fb4999265b83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Attach your image in the body payload.</p>\n","key":"images","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","description":"<p>Uploads an image to a form field of your process. You can add an image in the following file formats - .jpg, .jpeg, .png, .bmp, .gif, and .tif. Only Process Admins can invoke this API. Please note that, for encoding images, only blob data type is currently supported and not Base64.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier for each process step. You can find the activity instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9RNK_A</code> will be the activity instance ID of the specific process step. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"170c803a-7430-454b-8384-8492a763ec8b","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"1d555c71-9a88-4a69-984e-d3ff59cfce6c","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"bf13a364-7247-4787-8898-dd8e776b4422","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"0661feea-b4b2-4dbb-89e8-74824ec1403d","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"61b74aea-006a-44e2-a365-fb4999265b83"},{"name":"Download image from a form field","id":"625e0f91-479a-412a-9d76-b1a6fcbda87d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","description":"<p>Downloads an image from a form field of your process.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier for each process step. You can find the activity instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9RNK_A</code> will be the activity instance ID of the specific process step. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"fc7bf2d8-bb50-4049-b52c-69408cff2f31","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/octet-stream"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"697d991d-4337-4c65-900f-1df2ae3faef7","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"653be8be-31c6-4467-9cc1-b47512e2b88d","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"08780498-eda8-4d57-aa1b-acc5dab343ad","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"625e0f91-479a-412a-9d76-b1a6fcbda87d"},{"name":"Add image to a table field","id":"33e4009d-eeed-43b5-9d25-f73bf019ca6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Attach your image in the body payload. </p>\n","key":"images","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","description":"<p>Uploads an image to a table within your process form. You can add an image in the following file formats - .jpg, .jpeg, .png, .bmp, .gif, and .tif. Please note that, for encoding images, only blob data type is currently supported and not Base64.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier for each process step. You can find the activity instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9RNK_A</code> will be the activity instance ID of the specific process step. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each column (field) in your process form’s table.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"4ee32819-a91b-4ade-898e-1f8f490d7979","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload. ","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"9d91ee01-ec8d-4892-acf2-8abb3b9273ca","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload. ","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"145d6b90-b570-4f2d-b0eb-8ea80cfa5eb3","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload. ","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"42489349-c1fb-4367-baab-e6d7dc2d3a75","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload. ","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"33e4009d-eeed-43b5-9d25-f73bf019ca6a"},{"name":"Download image from a table field","id":"6ca6fe32-77f5-47b3-91bd-c7f4fdcf30e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","description":"<p>Downloads an image from a table within your process form.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier for each process step. You can find the activity instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9RNK_A</code> will be the activity instance ID of the specific process step. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"description":{"content":"<p>(Required) TThe unique identifier assigned to each table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each column (field) in your process form’s table.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"2cd0674a-e119-413e-b7ce-7867d6e99d47","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/octet-stream"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"3be55fa7-30b4-4994-833a-bba1c8d78115","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"0d9e8498-b2f7-4238-b990-6cdffd57749d","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"603b2012-6438-40d2-a9b5-9afa2e26216a","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"activity_instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"6ca6fe32-77f5-47b3-91bd-c7f4fdcf30e4"},{"name":"Get list of my items","id":"ca946270-693f-4c93-9b76-f37ba4b1b847","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/pwa/:process_id/myitems?page_number=<integer>&page_size=<integer>","description":"<p>Retrieves all the items that you have initiated and participated in within your process.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","pwa",":process_id","myitems"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>The specific page number of an item list. It can be specified as 1, 2, 3, etc.</p>\n","type":"text/plain"},"key":"page_number","value":"<integer>"},{"description":{"content":"<p>The number of items that can be listed in a page. It can be assigned any integer.</p>\n","type":"text/plain"},"key":"page_size","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"}]}},"response":[{"id":"67dfbde7-4459-4ee1-ac9e-fd08c0cfacf3","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/pwa/:process_id/myitems?page_number=<integer>&page_size=<integer>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","pwa",":process_id","myitems"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"CardFields\": [\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\"\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\"\n    }\n  ],\n  \"Data\": [\n    {\n      \"Type\": \"<string>\"\n    },\n    {\n      \"Type\": \"<string>\"\n    }\n  ]\n}"},{"id":"3c02eeae-cf13-4678-8491-3b6182e10ae3","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/pwa/:process_id/myitems?page_number=<integer>&page_size=<integer>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","pwa",":process_id","myitems"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"cdd2f9f3-cae6-41a6-89d5-f72ac79ca4b0","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/pwa/:process_id/myitems?page_number=<integer>&page_size=<integer>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","pwa",":process_id","myitems"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"51c87f99-85a2-429f-b1a6-89de7239243b","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/pwa/:process_id/myitems?page_number=<integer>&page_size=<integer>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","pwa",":process_id","myitems"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"ca946270-693f-4c93-9b76-f37ba4b1b847"},{"name":"Get list of my tasks","id":"d818eafa-f471-440e-a462-1527093ce135","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/pwa/:process_id/pending?page_number=<integer>&page_size=<integer>","description":"<p>Retrieves all the items that are awaiting your approval at any specific step in a process.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","pwa",":process_id","pending"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>The specific page number of an item list. It can be specified as 1, 2, 3, etc.</p>\n","type":"text/plain"},"key":"page_number","value":"<integer>"},{"description":{"content":"<p>The number of items that can be listed in a page. It can be assigned any integer.</p>\n","type":"text/plain"},"key":"page_size","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"}]}},"response":[{"id":"4269cae6-342c-40b1-aa8b-7b07d184e067","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/pwa/:process_id/pending?page_number=<integer>&page_size=<integer>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","pwa",":process_id","pending"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"CardFields\": [\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\"\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\"\n    }\n  ],\n  \"Data\": [\n    {\n      \"Type\": \"<string>\"\n    },\n    {\n      \"Type\": \"<string>\"\n    }\n  ]\n}"},{"id":"400c44c7-3899-4f45-a07d-2f08002703d4","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/pwa/:process_id/pending?page_number=<integer>&page_size=<integer>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","pwa",":process_id","pending"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"b1cd7bf6-9c39-4ba0-b67d-a8f3f72f6790","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/pwa/:process_id/pending?page_number=<integer>&page_size=<integer>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","pwa",":process_id","pending"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"ea1348d1-9216-4a90-ac25-86abe61d545f","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/pwa/:process_id/pending?page_number=<integer>&page_size=<integer>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","pwa",":process_id","pending"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"d818eafa-f471-440e-a462-1527093ce135"},{"name":"Get all items (Admin)","id":"6ea60e7e-dae6-4e1d-a4a5-c0df978eea4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/item?page_number=<integer>&page_size=<integer>&apply_preference=<boolean>","description":"<p>Retrieves the list of all items from a  process. Only Process Admins can call this endpoint.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id","item"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>The specific page number of an item list. It can be specified as 1, 2, 3, etc.</p>\n","type":"text/plain"},"key":"page_number","value":"<integer>"},{"description":{"content":"<p>The number of items that can be listed in a page. It can be assigned any integer.</p>\n","type":"text/plain"},"key":"page_size","value":"<integer>"},{"description":{"content":"<p>The applied preferences like filters, show/hide fields, and number of rows per page.</p>\n","type":"text/plain"},"key":"apply_preference","value":"<boolean>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Purchase_reimbursement/myitems/Draft</code>, <code>Purchase_reimbursement</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"}]}},"response":[{"id":"7f74a796-4f6e-48ee-9975-1069138bc0ab","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/item?page_number=<integer>&page_size=<integer>&apply_preference=<boolean>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id","item"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."},{"key":"apply_preference","value":"<boolean>","description":"The applied preferences like filters, show/hide fields, and number of rows per page."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Table_TableName\": [\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        },\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        }\n      ]\n    },\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        },\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        }\n      ]\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\"\n    }\n  ],\n  \"Filter\": {}\n}"},{"id":"afa9007d-93fa-4f5d-b78a-b7d49984d5ed","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/item?page_number=<integer>&page_size=<integer>&apply_preference=<boolean>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id","item"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."},{"key":"apply_preference","value":"<boolean>","description":"The applied preferences like filters, show/hide fields, and number of rows per page."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"ea7fabda-9efd-43e4-a83c-389869668335","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/item?page_number=<integer>&page_size=<integer>&apply_preference=<boolean>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id","item"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."},{"key":"apply_preference","value":"<boolean>","description":"The applied preferences like filters, show/hide fields, and number of rows per page."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"0748bb26-6e9b-4a69-a835-1853adc6d7d7","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/item?page_number=<integer>&page_size=<integer>&apply_preference=<boolean>","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id","item"],"query":[{"key":"page_number","value":"<integer>","description":"The specific page number of an item list. It can be specified as 1, 2, 3, etc."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page. It can be assigned any integer."},{"key":"apply_preference","value":"<boolean>","description":"The applied preferences like filters, show/hide fields, and number of rows per page."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"6ea60e7e-dae6-4e1d-a4a5-c0df978eea4e"},{"name":"Update item details (Admin)","id":"c47c990a-3028-457b-8ee7-b1b612a57648","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","description":"<p>Updates the records of a specific item in your process. Only Process Admins can call this endpoint.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id",":instance_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"50363c92-27d9-4a30-a102-96ad4eb7d17c","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"_modified_at\": \"<dateTime>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_modified_by\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"49cb39bb-0719-4e09-9a17-79bf91f5111d","name":"401 Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"X-Access-Key-Id","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"a75b361f-e685-4b99-a1a9-cb75d3ba51db","name":"403 Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"80004e15-d16c-4239-86cd-3328540b80a6","name":"404 Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"c47c990a-3028-457b-8ee7-b1b612a57648"},{"name":"Get item details (Admin)","id":"9ff122be-9321-4daf-b8f5-3735ceb17b87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","description":"<p>Retrieves the details of a specific item from your  process. Only Process Admins can call this endpoint.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id",":instance_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"1657a249-b78b-4ec6-b2c8-40f4ed6f0b94","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_current_assigned_to\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ],\n  \"_progress\": \"<integer>\",\n  \"_current_step\": \"<string>\"\n}"},{"id":"4e6d6145-4a73-4566-a3c6-3431f32a5769","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"22092df7-bdb7-4725-bc45-22e3952d26cd","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"879a4d34-886b-4c57-87c8-3087f6fc7974","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"9ff122be-9321-4daf-b8f5-3735ceb17b87"},{"name":"Delete an item (Admin)","id":"65d1f728-d441-4fd8-b630-a46482c7222a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","description":"<p>Deletes a specific item from your process. Only Process Admins can call this endpoint.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id",":instance_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"a38b5dfb-fc08-4689-b575-0a274851a0be","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Success\": \"<string>\"\n}"},{"id":"c0d10d9e-e768-4f80-bf8c-75f4d1be2f22","name":"401 Unauthorized","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"3045a21c-6c0f-4082-8bd2-445a3838479c","name":"403 Forbidden","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"56a4a95d-5614-4644-8b0e-e8107e38af32","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"65d1f728-d441-4fd8-b630-a46482c7222a"},{"name":"Add attachment to a form field (Admin)","id":"166fac40-f013-4aef-a9a2-996eac204ead","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Attach your file in the body payload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/attachment","description":"<p>Uploads an attachment to a form field of your process. You can add an attachment in the following file formats - .jpg, .jpeg, .png, .bmp, .gif, .tif, .doc, .docx, .pdf, .ppt, .pptx, .xls, .xlsx, .csv, .txt, .eml, .zip, and .mp4. Only the Process Admin can invoke this API. Please note that, for encoding images, only blob data type is currently supported and not Base64.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","attachment"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"8d836547-c914-4f6d-8124-7516b69b4a8a","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"40bc2594-8039-45e5-9a52-311b69b2b80e","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"9cb3de0f-067c-47d3-b433-9eae23131fb2","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"4a5cf364-ea61-4ef7-8b3a-a290934cd084","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"166fac40-f013-4aef-a9a2-996eac204ead"},{"name":"Download attachment from a form field (Admin)","id":"62109969-4140-45c1-b2ad-3203e94ce050","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/attachment/:attachment_id","description":"<p>Downloads a specific attachment from a form field of your process. Only the Process Admin can invoke this API.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","attachment",":attachment_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each attached file in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"attachment_id"}]}},"response":[{"id":"8823cac0-eb57-4ffc-85a8-bdfd383ff434","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/octet-stream"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"3300c9e2-838c-458e-ba2f-027a17bb4696","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"ca842817-b158-409e-8fda-b0f3fdda3931","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"c7821045-67bc-4037-a9fa-5115731602aa","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"62109969-4140-45c1-b2ad-3203e94ce050"},{"name":"Add attachment to a table field (Admin)","id":"1fba3a19-0803-4cb4-9a25-2166700604c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Attach your file in the body payload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/attachment","description":"<p>Uploads an attachment to a table in your process form. You can add an attachment in the following file formats - .jpg, .jpeg, .png, .bmp, .gif, .tif, .doc, .docx, .pdf, .ppt, .pptx, .xls, .xlsx, .csv, .txt, .eml, .zip, and .mp4.Only Process Admins can invoke this API. Please note that, for encoding images, only blob data type is currently supported and not Base64.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","attachment"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each column (field) in your process form’s table.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"72e769ae-bb13-4c49-aad1-7f45aee6d509","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"632018dd-5dd7-48be-bb57-ee04e7275130","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"1a470df8-3e87-4487-9aeb-43b0d162dd34","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"7ab9d078-e21d-460b-ace5-4c0c328acc01","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your file in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"1fba3a19-0803-4cb4-9a25-2166700604c0"},{"name":"Download attachment from a table field (Admin)","id":"f3c398f5-ceb2-44d3-9ed7-7d74d2f0b8fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/attachment/:attachment_id","description":"<p>Downloads a specific attachment from a table within your process form. Only Process Admins can invoke this API.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each column (field) in your process form’s table.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each attached file in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"attachment_id"}]}},"response":[{"id":"a8c74dc1-25f6-489d-a573-dadf5e59188f","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/octet-stream"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"60266351-0248-42e2-8816-51dd5f37e4c4","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"fe5d7cb3-9927-4440-a6dc-af791e5e984c","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"ba53d3ac-dd5c-42fd-b436-6aee6a479cdd","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"f3c398f5-ceb2-44d3-9ed7-7d74d2f0b8fa"},{"name":"Add image to a form field (Admin)","id":"162e97a5-6d73-43a9-991b-575885739bb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Attach your image in the body payload.</p>\n","key":"images","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/image","description":"<p>Uploads an image to a form field of your process. You can add an image in the following file formats - .jpg, .jpeg, .png, .bmp, .gif, and .tif. Only the Process Admin can invoke this API. Please note that, for encoding images, only blob data type is currently supported and not Base64.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"5c2c857f-4552-45d5-b31c-d56bd57f8c3f","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"21999071-ba8a-4485-993a-580766c9f652","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"f09187a0-7faf-4f12-80bb-0ba886e00ade","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"fbab6626-5eb7-4412-afde-28e0939a8573","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"162e97a5-6d73-43a9-991b-575885739bb5"},{"name":"Download image from a form field (Admin)","id":"51adfd88-621f-42c2-a93f-a4d15a434797","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/image","description":"<p>Downloads an image from a form field of your process. Only the Process Admin can invoke this API.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"30f19760-e64c-4624-a5a7-c69bc403240e","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/octet-stream"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"31e93304-7c0d-486a-b279-aec7b7bc092c","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"63b8d2e2-9a9d-47ce-b4e4-302d9ff67c65","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"53ecad62-8a6d-41c5-b24e-c9a8e19efc89","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"51adfd88-621f-42c2-a93f-a4d15a434797"},{"name":"Add image to a table field (Admin)","id":"b6c5cf4e-930f-438c-bd7a-0a378df5de0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>Attach your image in the body payload.</p>\n","key":"images","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/image","description":"<p>Uploads an image to a table within your process form. You can add an image in the following file formats - .jpg, .jpeg, .png, .bmp, .gif, and .tif. Only Process Admins can invoke this API. Please note that, for encoding images, only blob data type is currently supported and not Base64.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each column (field) in your process form’s table.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"f394999f-e4a7-4954-9c1b-96745cae0a34","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_id\": \"<string>\",\n  \"TotalPrice\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"a6b197b6-8c8e-406e-8807-6897aa8c2aea","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"f095b01c-cf25-4280-9a52-552befca3045","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"c19a6e36-6ca9-45a3-9b75-a721faffb962","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"Attach your image in the body payload.","key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"b6c5cf4e-930f-438c-bd7a-0a378df5de0e"},{"name":"Download image from a table field (Admin)","id":"91663dda-3c7c-4257-ae27-2fb294bc5051","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/image","description":"<p>Downloads an image from a table within your process form. Only Process Admins can invoke this API.</p>\n","urlObject":{"protocol":"https","path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/myitems/Draft</code>, <code>Leave_request</code> will be the process ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each process item. You can find the instance ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/process/Leave_request/form/Pk9ALV9QVo5L/Pk9ALV9RNK_A</code>, <code>Pk9ALV9QVo5L</code> will be the instance ID of the specific process item. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in your process form.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each column (field) in your process form’s table.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"55d49ae9-ef4c-4891-801d-e572d2f84b11","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/octet-stream"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/octet-stream"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"7d800d23-9895-4c6d-a51b-719f71fbe448","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"7f9161f0-8436-46f9-b828-2f179f16fbaa","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"8b37a86b-0773-4998-ab68-a3deac431f4b","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process/2/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","2",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"instance_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"91663dda-3c7c-4257-ae27-2fb294bc5051"},{"name":"Get count of items in reports","id":"7e4f0053-a749-47e2-8b37-81154f3421d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/count?q=<string>","description":"<p>Retrieves the count of items within the report.</p>\n","urlObject":{"protocol":"https","path":["process-report","2",":account_id",":process_id",":report_id","count"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>This is the search filter string, and is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, if the process URL is <code>https://thestarkcorp.kissflow.com/view/process/Purchase_Request/form/Pk8gkqOWMGnc/Pk8gkqOWoc94</code>,<code>Purchase_Request</code> will be the process_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each report. You can find the report ID from the web URL. For instance, if the report URL is <code>https://thestarkcorp.kissflow.com/view/analytics/ds_Virtual_pro/analyticstable/report/Finish_charrtt</code>,<code>Finish_charrtt</code> will be the report_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"report_id"}]}},"response":[{"id":"e5f7a40d-3cef-4f44-9422-5ae103902e18","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/count?q=<string>","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","count"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Count\": \"<number>\"\n}"},{"id":"41cbe084-8228-4f6b-b945-273cf2a626af","name":"400 Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/count?q=<string>","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","count"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"93c731f7-4780-4d23-aa28-8566bf9c8864","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/count?q=<string>","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","count"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"33828e03-e34a-4871-a5f9-0b71480e25ea","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/count?q=<string>","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","count"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"446f9d33-4380-41af-9b49-3eefd253f292","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/count?q=<string>","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","count"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"ffbb0392-0229-4ed6-aae9-4f993562ed60","name":"500 Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/count?q=<string>","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","count"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"74e2eb1d-2306-4d53-a117-8d6172205320","name":"503 Service Unavailable","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/count?q=<string>","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","count"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"7e4f0053-a749-47e2-8b37-81154f3421d9"},{"name":"Get report fields","id":"aa30b170-8999-4532-8834-b1ac60198f8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/fields","description":"<p>Retrieves the fields used in a process report.</p>\n","urlObject":{"protocol":"https","path":["process-report","2",":account_id",":process_id",":report_id","fields"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, if the process URL is <code>https://thestarkcorp.kissflow.com/view/process/Purchase_Request/form/Pk8gkqOWMGnc/Pk8gkqOWoc94</code>,<code>Purchase_Request</code> will be the process_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each report. You can find the report ID from the web URL. For instance, if the report URL is <code>https://thestarkcorp.kissflow.com/view/analytics/ds_Virtual_pro/analyticstable/report/Finish_charrtt</code>,<code>Finish_charrtt</code> will be the report_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"report_id"}]}},"response":[{"id":"2399ca26-7431-48c3-a9dc-61bf2202dd23","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/fields","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"Name\": \"<string>\",\n    \"Label\": \"<string>\",\n    \"Id\": \"<string>\",\n    \"Type\": \"<string>\",\n    \"IsSystemField\": \"<boolean>\"\n  },\n  {\n    \"Name\": \"<string>\",\n    \"Label\": \"<string>\",\n    \"Id\": \"<string>\",\n    \"Type\": \"<string>\",\n    \"IsSystemField\": \"<boolean>\"\n  }\n]"},{"id":"ab23688f-439c-4804-8923-d85484eab224","name":"400 Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/fields","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"c0b73e58-f2e1-4240-b45c-7bdd69185218","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/fields","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"18f626ef-ae37-4f04-8196-4936f1f4d5e1","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/fields","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"48acab13-7cab-4dd8-9dff-b88f546cc6d9","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/fields","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"f98ade24-aec1-4886-86e4-f08313e089e4","name":"500 Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/fields","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"24a428e5-ab6c-4978-b24e-bc7d0ac3deef","name":"503 Service Unavailable","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/fields","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"aa30b170-8999-4532-8834-b1ac60198f8f"},{"name":"Get item details","id":"00674667-689c-452c-9550-0658606ddd0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/:instance_id","description":"<p>Retrieves the field values of a specific item from a process's tabular report.</p>\n","urlObject":{"protocol":"https","path":["process-report","2",":account_id",":process_id",":report_id",":instance_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each process. You can find the process ID from the web URL. For instance, if the process URL is <code>https://thestarkcorp.kissflow.com/view/process/Purchase_Request/form/Pk8gkqOWMGnc/Pk8gkqOWoc94</code>,<code>Purchase_Request</code> will be the process_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The unique identifier for each report. You can find the report ID from the web URL. For instance, if the report URL is <code>https://thestarkcorp.kissflow.com/view/analytics/ds_Virtual_pro/analyticstable/report/Finish_charrtt</code>,<code>Finish_charrtt</code> will be the report_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"report_id"},{"description":{"content":"<p>(Required) The unique identifier for each item in a process. You can find the instance ID from the web URL. For instance, if the process URL is <code>https://thestarkcorp.kissflow.com/view/process/Purchase_Request/form/Pk8gkqOWMGnc/Pk8gkqOWoc94</code>,<code>Pk8gkqOWMGnc</code> will be the instance_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"425b39d4-b1c6-4419-9852-5886f7109ab0","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""},{"key":"instance_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"item_number\": \"<string>\",\n  \"_created_by\": {}\n}"},{"id":"e5b97cc8-fa7d-4a80-80a7-71c4f47762ff","name":"400 Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""},{"key":"instance_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"101d07a6-a54d-4661-9db7-c003998dcada","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""},{"key":"instance_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"29040a70-54f0-4e4e-bc5d-72eb557c0140","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""},{"key":"instance_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"6ed79409-d424-4af5-b0c6-643190e46dce","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""},{"key":"instance_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"e7830fe4-a296-4a0d-be50-155a93161b48","name":"500 Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""},{"key":"instance_id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"1f2f3fbe-c593-4ae3-bf64-5d590140d558","name":"503 Service Unavailable","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/process-report/2/:account_id/:process_id/:report_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["process-report","2",":account_id",":process_id",":report_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"process_id","value":""},{"key":"report_id","value":""},{"key":"instance_id","value":""}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"00674667-689c-452c-9550-0658606ddd0d"}],"id":"baa7e187-fa20-44fe-acf6-fe0019a96156","description":"<p>In Kissflow, a process is a structured workflow that ensures tasks are completed in a specific sequential order.</p>\n<h3 id=\"using-processes-in-portals\">Using processes in portals</h3>\n<p>All of these process API endpoints can also be consumed within <a href=\"https://api.kissflow.com/#587a3da2-9417-440d-8322-1322ec870a32\">portals</a>. Portals are applications that allow business operations to be conducted in collaboration with external users such as vendors, customers, or partners without the need to add them to your Kissflow account.</p>\n<p><strong>Key points:</strong></p>\n<ul>\n<li><p>Ensure the subdomain used in the API endpoint URL is your <a href=\"https://community.kissflow.com/t/p8h4atv/administering-portals#portal-details\">portal domain</a>, obtained from <em>Portal administration &gt; Portal settings &gt; Portal details &gt; Portal domain.</em></p>\n</li>\n<li><p>The <a href=\"https://community.kissflow.com/t/q6h4akr/creating-and-managing-access-keys\">access keys</a> must be from a service account in your portal, created from <strong>Account administration &gt; Service account.</strong> Select your portal service account and click <strong>Create access key</strong>.</p>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"90f2ec26-4602-4ed2-82ce-10f724650bd0","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"3000d734-9ac4-489c-b1ae-a0becc9cf26f","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"baa7e187-fa20-44fe-acf6-fe0019a96156"},{"name":"Boards","item":[{"name":"Create a new item","id":"33a95d68-0efc-4c70-8c2d-cf30c8a61ce0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"DueDate\": \"<dateTime>\",\n  \"_priority_id\": \"<string>\",\n  \"Requester\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id","description":"<p>Creates a new item in the board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"7b803be7-7a56-4dfa-aa70-1b4f61806c87","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"DueDate\": \"<dateTime>\",\n  \"_priority_id\": \"<string>\",\n  \"Requester\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\"\n}"},{"id":"1e4e5b6f-a9cf-48d8-a217-02bf00a2c365","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"DueDate\": \"<dateTime>\",\n  \"_priority_id\": \"<string>\",\n  \"Requester\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"8f1143e5-0c28-460a-9671-c4d613049e85","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"DueDate\": \"<dateTime>\",\n  \"_priority_id\": \"<string>\",\n  \"Requester\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"9795b473-1348-4d6f-8b7b-f5c47fd5d47e","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"DueDate\": \"<dateTime>\",\n  \"_priority_id\": \"<string>\",\n  \"Requester\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"879f4ce3-4353-475d-a047-f4d2b17db218","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"DueDate\": \"<dateTime>\",\n  \"_priority_id\": \"<string>\",\n  \"Requester\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"cd47278e-9480-4738-a433-d5c6e5ef0b44","name":"500 Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"DueDate\": \"<dateTime>\",\n  \"_priority_id\": \"<string>\",\n  \"Requester\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"33a95d68-0efc-4c70-8c2d-cf30c8a61ce0"},{"name":"Update the status of an item","id":"5c8165f1-a157-406d-97c8-520fe427d1fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/move","description":"<p>Changes the status of a specific item in the board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":status_id","move"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier for a status in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"status_id"}]}},"response":[{"id":"2ffba9b4-86c8-401c-a67a-f31e65335937","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/move","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","move"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Summary\": \"<string>\",\n  \"_modified_at\": \"<dateTime>\",\n  \"_modified_by\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"c1a3f976-8f32-4d52-b186-db7aa0658100","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/move","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","move"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"d118169b-b455-4954-8c29-370f62724de9","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/move","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","move"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"d51e6f7f-a77c-4a26-8f3d-1f93227826c2","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/move","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","move"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"505f9466-7da1-462c-8c61-e22c089da24f","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/move","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","move"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"455844b9-3220-4fe7-b4fe-342e865755db","name":"500 Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/move","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","move"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"5c8165f1-a157-406d-97c8-520fe427d1fd"},{"name":"Update the assignee for an item","id":"4274b26f-9723-4648-be99-838e1aab384a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/reassign","description":"<p>Changes the assignee of a specific item in the board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":status_id","reassign"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier for a status in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"status_id"}]}},"response":[{"id":"20bb7661-750f-4bfc-9588-3744ce07cbab","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/reassign","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","reassign"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Summary\": \"<string>\",\n  \"_modified_at\": \"<dateTime>\",\n  \"_modified_by\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"7a324ea9-7539-4c9b-941a-ea4e5415745c","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/reassign","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","reassign"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"5222bac4-788e-49a4-a2f8-025680c95835","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/reassign","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","reassign"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"6af19453-d4da-41dd-a1eb-64569e1343c1","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/reassign","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","reassign"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"4da3f120-a4c1-4c45-b4d7-b1273e7767e1","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Api-Key","value":"<API Key>","description":"Added as a part of security scheme: apikey"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/reassign","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","reassign"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"df551963-f929-4e6c-b630-e30983b101ef","name":"500 Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/reassign","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","reassign"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"4274b26f-9723-4648-be99-838e1aab384a"},{"name":"Update the due date and time for an item","id":"9e53c180-5713-4932-a974-e56d6399ce99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"DueDate\": \"<dateTime>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/DueDate","description":"<p>Updates the due date and time for a specific item in the board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":status_id","DueDate"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier for a status in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"status_id"}]}},"response":[{"id":"b6cbd6ab-93aa-43e3-a460-a2a4b9177574","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"DueDate\": \"<dateTime>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/DueDate","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","DueDate"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Summary\": \"<string>\",\n  \"_modified_at\": \"<dateTime>\",\n  \"_modified_by\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"43e836f3-b1fe-4f24-b1a4-67e8cebea993","name":"400 Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"DueDate\": \"<dateTime>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/DueDate","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","DueDate"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"56163029-82ad-4b15-bc11-6454f1823dad","name":"401 Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"DueDate\": \"<dateTime>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/DueDate","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","DueDate"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"860cac42-0287-4fb3-acc9-684af99dd2ce","name":"403 Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"DueDate\": \"<dateTime>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/DueDate","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","DueDate"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"2949924f-6b99-4b08-ac60-8cc2032f9a3a","name":"404 Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"DueDate\": \"<dateTime>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/DueDate","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","DueDate"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"882e4b7b-cfc5-4ae4-bed1-8081a76c44ad","name":"500 Internal Server Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"DueDate\": \"<dateTime>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/DueDate","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","DueDate"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"9e53c180-5713-4932-a974-e56d6399ce99"},{"name":"Update the priority for an item","id":"7704f487-f821-443e-8136-f5479a72eb01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/_priority_id","description":"<p>Updates the priority for a specific item in the board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":status_id","_priority_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier for a status in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"status_id"}]}},"response":[{"id":"60d0bb47-12d7-43e4-85f7-a179c7590fbc","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/_priority_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","_priority_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Summary\": \"<string>\",\n  \"_modified_at\": \"<dateTime>\",\n  \"_modified_by\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"b51dde6f-f05b-4db4-a225-c50d07f6f340","name":"400 Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/_priority_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","_priority_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"e258d773-5de2-40fd-b481-abe56223c2a4","name":"401 Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/_priority_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","_priority_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"ea8f71d7-c4bf-4d8d-a780-bbff92d2d4bd","name":"403 Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/_priority_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","_priority_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"f00f7536-b365-46b1-b319-d673d5e6b5d8","name":"404 Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/_priority_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","_priority_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"aa734549-d860-4dd7-a9b0-f176e61dfde8","name":"500 Internal Server Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/_priority_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","_priority_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"7704f487-f821-443e-8136-f5479a72eb01"},{"name":"Update the requester for an item","id":"6b422829-74c1-43d7-bb8e-f85f4d79371d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Requester\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/Requester","description":"<p>Updates the requester for a specific item in the board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":status_id","Requester"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier for a status in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"status_id"}]}},"response":[{"id":"d627a195-d2ad-4e38-b982-5cb6efa1fda7","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Requester\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/Requester","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","Requester"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Summary\": \"<string>\",\n  \"_modified_at\": \"<dateTime>\",\n  \"_modified_by\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"c94b6066-df14-457f-a0ca-9b407e263bab","name":"400 Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Requester\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/Requester","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","Requester"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"f5ed295a-b1ad-41b6-833e-df4ee90bdcc0","name":"401 Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Requester\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/Requester","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","Requester"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"35815ae4-7731-4f6b-a78e-82b91de39634","name":"403 Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Requester\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/Requester","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","Requester"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"07dc2c04-e2ac-4e9f-a87f-52e0585d19eb","name":"404 Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Requester\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/Requester","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","Requester"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"54741169-81e8-4a3b-a2e7-5b8e96bed059","name":"500 Internal Server Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Requester\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id/Requester","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id","Requester"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"6b422829-74c1-43d7-bb8e-f85f4d79371d"},{"name":"Update custom form fields","id":"300c538c-cc0d-4533-8304-57e7f6ee67df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Summary\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id","description":"<p>Updates the custom form fields in a board for a specific item.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":status_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier for a status in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"status_id"}]}},"response":[{"id":"44110cf1-fdc2-4ddc-94a0-a4015b389281","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Summary\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Summary\": \"<string>\",\n  \"_modified_at\": \"<dateTime>\",\n  \"_modified_by\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  }\n}"},{"id":"80f731ca-298a-46fd-907f-de221bc72584","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Summary\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"cf28aa0e-25f1-49c9-ac93-783c092af56e","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Summary\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"59ff6a76-3ecb-4285-ad3b-ca3aeedfcc7d","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Summary\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"de541c24-503f-4ab4-bd55-7fa5e8315ed6","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Summary\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"a9efed5a-b32c-4204-9760-f56a9cfc380a","name":"500 Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Summary\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:status_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":status_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"status_id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"300c538c-cc0d-4533-8304-57e7f6ee67df"},{"name":"Delete an item","id":"882ed8b5-49cd-430c-a6e9-8d38deddd7c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id","description":"<p>Deletes a specific item from the board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"8156a637-6eb9-4064-95ec-9b40e236743f","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": \"<string>\"\n}"},{"id":"1e4c6f05-a45b-4a31-92ea-1bce1e8127f6","name":"401 Unauthorized","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"d8ad2988-2f3a-4db1-bb90-9b53938b2ae9","name":"403 Forbidden","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"d1de2283-eb69-4c70-a440-31e1b080244e","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"882ed8b5-49cd-430c-a6e9-8d38deddd7c7"},{"name":"Bulk delete items","id":"1d9166b6-46b5-4aaf-9b48-0085260308a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/delete","description":"<p>Deletes multiple items from the board in bulk.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id","batch","delete"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"42d46e98-c781-4d4e-a060-be4b02f1d1a3","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/delete","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","delete"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_failed_items\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"status\": \"<string>\"\n}"},{"id":"bb4a5eb7-6c48-490b-bd14-7a1bc59f208c","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/delete","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","delete"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"3eaef46a-55c9-43df-86b8-87f057724004","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/delete","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","delete"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"1f67d8f4-3b09-4d83-8930-1041c98de0e2","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/delete","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","delete"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"1d9166b6-46b5-4aaf-9b48-0085260308a4"},{"name":"Bulk update item priorities","id":"4f7e0b21-47d0-43f8-8f18-0ee26b3cb402","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/_priority_id","description":"<p>Performs bulk updates of priorities for multiple items.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id","batch","_priority_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"1cb988f9-7425-44b2-97ee-e48fd97176ad","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/_priority_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","_priority_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_failed_items\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"status\": \"<string>\"\n}"},{"id":"0c238e48-2527-4833-aa3a-28d2f6f9ef04","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/_priority_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","_priority_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"a1ed7c58-d87f-4b7f-a501-a2bb7f8a7076","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/_priority_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","_priority_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"7983b24f-9d79-4229-a5f8-01f6bfeff082","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/_priority_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","_priority_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"4d251760-73bb-4bd7-86db-80b275b1269a","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_priority_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/_priority_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","_priority_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"4f7e0b21-47d0-43f8-8f18-0ee26b3cb402"},{"name":"Bulk update item statuses","id":"15690232-db8b-4d34-b233-2de6b33f3285","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/move","description":"<p>Performs bulk updates of statuses for multiple items.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id","batch","move"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"5549ee95-4a32-4a5a-9ff5-17695d5b30f8","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/move","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","move"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_failed_items\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"status\": \"<string>\"\n}"},{"id":"27787f4c-aeac-4acb-b069-10971227ad86","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/move","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","move"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"f3be4e99-f944-4989-a1e2-0b3649a97d94","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/move","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","move"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"cca97391-7da3-4b04-8307-164cf2242384","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/move","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","move"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"cc91f2e3-5699-427e-96d9-41fc7f66769e","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_status_id\": \"<string>\",\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/move","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","move"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"15690232-db8b-4d34-b233-2de6b33f3285"},{"name":"Bulk update item assignees","id":"29b4ed62-9dd2-4ab5-b81f-44874415494a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/reassign","description":"<p>Performs bulk updates of assignees for multiple items.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id","batch","reassign"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"f0d385a8-321e-4b1a-8803-f59a745e43cf","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/reassign","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","reassign"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_failed_items\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"status\": \"<string>\"\n}"},{"id":"d56f7686-415e-4e2c-b7e7-a44ff3c4bf48","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/reassign","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","reassign"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"ccc881ec-6e2f-47eb-b021-c07144233637","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/reassign","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","reassign"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"41f07813-34b9-41aa-96de-809d64dbe481","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/reassign","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","reassign"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"32578fb9-65c8-4eef-a5ee-1062a68d5f70","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"item\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"AssignedTo\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/batch/reassign","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","batch","reassign"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"29b4ed62-9dd2-4ab5-b81f-44874415494a"},{"name":"Add watchers to a board","id":"b708cda6-a56d-44d9-83ba-3f8bda6e0f78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/add/watchers","description":"<p>Adds one or more watchers to a specific board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id","add","watchers"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"150904d5-c5c4-42b7-9419-a1ee53f2c574","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/add/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","add","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\"\n}"},{"id":"d0407bc9-f77b-42b0-b7ca-aa82ebd11078","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/add/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","add","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"920e9816-583c-4071-aa58-2b272cd38bfc","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/add/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","add","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"6ea1a0c3-37b2-48eb-95c6-2701467cd833","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/add/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","add","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"aef93dde-f4b8-419a-9429-47237d829f54","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/add/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","add","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"f2aa66d3-7f9d-43e4-9951-9f8e1663b277","name":"406 Not Acceptable","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/add/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","add","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Not Acceptable","code":406,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"b708cda6-a56d-44d9-83ba-3f8bda6e0f78"},{"name":"Remove watchers from a board","id":"ece7ce37-a6ee-4b7f-8957-dabd93732db7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/remove/watchers","description":"<p>Removes one or more watchers from a specific board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id","remove","watchers"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"2ac0703e-45a7-42dd-a3a6-8bfb3e8ce2ba","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/remove/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","remove","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\"\n}"},{"id":"e37ad805-1746-429a-aaea-9c7ebd433d37","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/remove/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","remove","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"5f2e9c86-7da8-4610-b320-ba1fdb8cb916","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/remove/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","remove","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"957fdabd-c87f-4291-9f46-40edaa26baab","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/remove/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","remove","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"63cad944-0f6c-4cc4-946e-6b72d7f42a5d","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/remove/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","remove","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"ece7ce37-a6ee-4b7f-8957-dabd93732db7"},{"name":"Get all board fields","id":"67e6a6c8-da21-4821-bd34-b420b6202dd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/fields","description":"<p>Retrieves all fields in a specific board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id","fields"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"25a83920-f717-40ec-bcc8-7b000c93a414","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"Id\": \"<string>\",\n  \"Type\": \"<string>\",\n  \"IsSystemField\": \"<boolean>\"\n}"},{"id":"f770804f-8e99-4d65-8ac0-2768b71edf73","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"31428d3e-26a2-401c-a7c5-7c9bcdc7c9e4","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"acd94d91-74b5-4708-96bb-45d89fe8a630","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"67e6a6c8-da21-4821-bd34-b420b6202dd7"},{"name":"Get item activities","id":"1585095b-67d1-4bd5-bebf-c8fbed54a5e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/activity","description":"<p>Retrieves activities of a specific item in the board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id","activity"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account\n ID</a>\n from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"65192271-0754-423b-b7d0-70e4176f25ac","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/activity","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","activity"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"_event_type\": \"<string>\",\n    \"_visibility_fields\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_created_by\": {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    \"_event_field\": \"<string>\",\n    \"_status_instance_id\": \"<string>\",\n    \"_change_summary\": {},\n    \"_status_name\": \"<string>\",\n    \"_status_id\": \"<string>\",\n    \"_created_at\": \"<dateTime>\"\n  },\n  {\n    \"_event_type\": \"<string>\",\n    \"_visibility_fields\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_created_by\": {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    \"_event_field\": \"<string>\",\n    \"_status_instance_id\": \"<string>\",\n    \"_change_summary\": {},\n    \"_status_name\": \"<string>\",\n    \"_status_id\": \"<string>\",\n    \"_created_at\": \"<dateTime>\"\n  }\n]"},{"id":"225eaa77-963c-435e-ada1-dd3494228f8c","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/activity","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","activity"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"bd86861d-b4ca-4dc8-ba91-4dea9a180d73","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/activity","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","activity"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"5c8a81f8-20b4-405b-b002-db7f71c78745","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/activity","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","activity"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"1585095b-67d1-4bd5-bebf-c8fbed54a5e5"},{"name":"Get item status transitions","id":"93dbb069-ac65-4886-9ab0-2f42edc3fa74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/transition","description":"<p>Retrieves the status transitions of a specific item in the board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id","transition"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"094229f7-5096-4139-b03c-bc23de005752","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/transition","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","transition"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_created_by\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_gross_time_projection\": \"<string>\",\n  \"_to\": {\n    \"_category\": \"<string>\",\n    \"_status_name\": \"<string>\"\n  },\n  \"GrossTime\": \"<number>\",\n  \"_from\": {\n    \"_category\": \"<string>\",\n    \"_status_name\": \"<string>\"\n  },\n  \"_created_at\": \"<dateTime>\"\n}"},{"id":"0c0a1f7f-9b80-44da-a622-5f0329521a38","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/transition","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","transition"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"4993436e-75d6-4b64-b608-232302b1d967","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/transition","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","transition"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"77beb5eb-c213-4ee4-9040-bff6543c7224","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/transition","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","transition"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"93dbb069-ac65-4886-9ab0-2f42edc3fa74"},{"name":"Get all fields configured for display in a lookup","id":"d4050771-ef26-42d4-bc63-5839a53a2628","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/lookup/fields","description":"<p>Retrieves all fields of a selected flow configured to be displayed for a specified lookup field. This endpoint applies only when the form is being edited.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id","lookup","fields"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"c35e91f6-aa07-482a-b943-2a00389f1187","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/lookup/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","lookup","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"Id\": \"<string>\",\n  \"Type\": \"<string>\",\n  \"IsSystemField\": \"<boolean>\"\n}"},{"id":"9a2a3260-792b-468d-bb51-55b146680a92","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/lookup/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","lookup","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"4ee78eac-1c77-4e96-acee-683db200a489","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/lookup/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","lookup","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"2a245cdc-1733-44f7-963e-e01d03c33287","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/lookup/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","lookup","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"d4050771-ef26-42d4-bc63-5839a53a2628"},{"name":"Get a list of records from a remote lookup field","id":"8b4c0f14-0d6f-4820-9bca-33671a9d670f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/rlookup?q=<string>","description":"<p>Retrieves a list of records from an external source in a remote lookup field on a board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":field_id","rlookup"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>This is the search string and is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"03fdd3a6-48ef-4c87-ab0b-d428f0e226c6","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/rlookup?q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","rlookup"],"query":[{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"TotalPrice\": \"<string>\"\n}"},{"id":"29c3b530-11e4-4d4d-921b-424483cb7291","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/rlookup?q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","rlookup"],"query":[{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"589ec60a-153a-41ce-8bc9-e54834e6132f","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/rlookup?q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","rlookup"],"query":[{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"d1a3f774-e011-47c2-b649-f65b8145395d","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/rlookup?q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","rlookup"],"query":[{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"8b4c0f14-0d6f-4820-9bca-33671a9d670f"},{"name":"Get a list of records from a lookup field","id":"2cad4ac7-90a5-4fa0-8d95-4dcd390cef2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/lookup?page_number=<integer>&page_size=<integer>&q=<string>","description":"<p>Retrieves a list of records from an internal datasource in a lookup field on a board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":field_id","lookup"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1.</p>\n","type":"text/plain"},"key":"page_number","value":"<integer>"},{"description":{"content":"<p>The number of items that can be listed in a page result and is an optional parameter. Default value is 10.</p>\n","type":"text/plain"},"key":"page_size","value":"<integer>"},{"description":{"content":"<p>This is the search string and is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"5ecbf75a-988f-4f96-9b48-25c8380da039","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/lookup?page_number=<integer>&page_size=<integer>&q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","lookup"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"TotalPrice\": \"<string>\"\n}"},{"id":"25e3c8e6-41c5-4d18-9dd8-b7fcb3215c5c","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/lookup?page_number=<integer>&page_size=<integer>&q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","lookup"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"07730bd9-b423-485c-ba9b-39d6eaaed401","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/lookup?page_number=<integer>&page_size=<integer>&q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","lookup"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"497ec162-1b45-40e8-8554-1106c13f11d2","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/lookup?page_number=<integer>&page_size=<integer>&q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","lookup"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"2cad4ac7-90a5-4fa0-8d95-4dcd390cef2d"},{"name":"Get list of watchers for a board","id":"dc39e55f-ac0b-4b60-998c-9e83bfddb124","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/watchers","description":"<p>Retrieves the list of watchers for a specific board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id","watchers"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"6b793b8f-ce5a-4584-94a9-2ea3e8600d4c","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_watchers\": [\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}"},{"id":"98e35df0-42e8-4ee8-8465-d2dafab9423c","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"a69698a4-bd2b-4f0f-b959-60a822842df0","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"a73c8aa1-c391-4610-a56b-e72a9f0ce875","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"317ed452-b855-418a-af76-ca1c3bc54d79","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/watchers","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id","watchers"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"dc39e55f-ac0b-4b60-998c-9e83bfddb124"},{"name":"Get all items' details","id":"0a411d5e-0b25-499c-9d9f-db058deb3c8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id","description":"<p>Retrieves all the details of a specific item</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"930a7ec1-2e5b-4f7c-a966-23c2bf5301e0","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"AssignedTo\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_created_by\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"Name\": \"<string>\",\n  \"_category\": \"<string>\",\n  \"_modified_by\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_item_id\": \"<string>\",\n  \"_priority_name\": \"<string>\",\n  \"_status_name\": \"<string>\",\n  \"_priority_id\": \"<string>\",\n  \"_previous_status_instance_id\": \"<string>\",\n  \"Requester\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"_modified_at\": \"<dateTime>\",\n  \"_flow_name\": \"<string>\",\n  \"_start_status_instance_id\": \"<string>\",\n  \"_counter\": \"<number>\",\n  \"_status_id\": \"<string>\",\n  \"_created_at\": \"<dateTime>\"\n}"},{"id":"9bf7aa11-1d75-4c6e-838b-ad5b8e1c0592","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"0bd9cc12-2373-4b72-b405-3615bf633f61","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"10a49217-b426-4c49-87b6-d928fe67337d","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"0a411d5e-0b25-499c-9d9f-db058deb3c8d"},{"name":"Get the number of items in a view","id":"4a79508e-9f7c-4aea-a5c7-536c420f988b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/count","description":"<p>Retrieves the number of items in a view based on specified filters.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id","count"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"75de9d3c-f769-4bf5-a06c-83e5314fd71f","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/count","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","count"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Count\": \"<number>\"\n}"},{"id":"83222131-89e0-4bef-89ac-7e5ad502e1d3","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/count","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","count"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"287b3585-1fa2-4906-8d78-8704f392cd3f","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/count","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","count"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"3d6e6fbc-3fb9-4d7b-9597-6904b9388e23","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/count","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","count"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"debbcf5c-68c8-416b-9861-9d1e05880f8e","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/count","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","count"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"36abb709-453e-43dd-b1f8-f5606e3bd4d4","name":"500 Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/count","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","count"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"4a79508e-9f7c-4aea-a5c7-536c420f988b"},{"name":"Get all fields from a table using a lookup field","id":"30400291-df1f-4664-bc34-d4f0a95f81f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/table/:table_id/fields","description":"<p>Retrieves all fields from a table in another flow using a lookup field.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id","table",":table_id","fields"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"}]}},"response":[{"id":"8b40ef43-0dfa-47f0-8da3-9d4e122d609e","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/table/:table_id/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","table",":table_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"table_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"Id\": \"<string>\",\n  \"Type\": \"<string>\",\n  \"IsSystemField\": \"<boolean>\"\n}"},{"id":"0bc4a642-82a2-4989-9f18-2a7cb6454ba9","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/table/:table_id/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","table",":table_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"table_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"19a2262d-08cd-40f0-864c-4903d2698b50","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/table/:table_id/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","table",":table_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"table_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"847e8ac1-38f4-461e-8a6a-578555f758df","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/table/:table_id/fields","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id","table",":table_id","fields"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"table_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"30400291-df1f-4664-bc34-d4f0a95f81f8"},{"name":"Get the list of items in a view","id":"f0d0f928-736d-48e8-894d-3bc9611802aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:view_type/items","description":"<p>Retrieves a list of items in a view based on specified filters.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":view_type","items"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The type of view in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"view_type"}]}},"response":[{"id":"dad93b45-1bfe-466d-9b9b-03edf5418ca1","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:view_type/items","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":view_type","items"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"view_type","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"Filter\": {\n    \"AND\": [\n      {\n        \"OR\": [\n          {\n            \"RHSAttribute\": \"<string>\",\n            \"Operator\": \"<string>\",\n            \"LHSField\": \"<string>\",\n            \"RHSValue\": \"<string>\",\n            \"RHSType\": \"<string>\",\n            \"RHSField\": \"<string>\"\n          },\n          {\n            \"RHSAttribute\": \"<string>\",\n            \"Operator\": \"<string>\",\n            \"LHSField\": \"<string>\",\n            \"RHSValue\": \"<string>\",\n            \"RHSType\": \"<string>\",\n            \"RHSField\": \"<string>\"\n          }\n        ]\n      },\n      {\n        \"OR\": [\n          {\n            \"RHSAttribute\": \"<string>\",\n            \"Operator\": \"<string>\",\n            \"LHSField\": \"<string>\",\n            \"RHSValue\": \"<string>\",\n            \"RHSType\": \"<string>\",\n            \"RHSField\": \"<string>\"\n          },\n          {\n            \"RHSAttribute\": \"<string>\",\n            \"Operator\": \"<string>\",\n            \"LHSField\": \"<string>\",\n            \"RHSValue\": \"<string>\",\n            \"RHSType\": \"<string>\",\n            \"RHSField\": \"<string>\"\n          }\n        ]\n      }\n    ]\n  },\n  \"Sort\": [\n    {\n      \"Id\": \"<string>\",\n      \"SortType\": \"<string>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"SortType\": \"<string>\"\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Name\": \"<string>\",\n      \"Widget\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\",\n      \"Type\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Width\": \"<number>\",\n      \"Required\": \"<boolean>\",\n      \"Fixed\": \"<boolean>\",\n      \"Id\": \"<string>\",\n      \"Model\": \"<string>\"\n    },\n    {\n      \"Name\": \"<string>\",\n      \"Widget\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\",\n      \"Type\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Width\": \"<number>\",\n      \"Required\": \"<boolean>\",\n      \"Fixed\": \"<boolean>\",\n      \"Id\": \"<string>\",\n      \"Model\": \"<string>\"\n    }\n  ],\n  \"FilterType\": \"<string>\",\n  \"PageSize\": \"<number>\",\n  \"Data\": [\n    {\n      \"_id\": \"<string>\",\n      \"AssignedTo\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"_created_by\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"Name\": \"<string>\",\n      \"_category\": \"<string>\",\n      \"_modified_by\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"_item_id\": \"<string>\",\n      \"_priority_name\": \"<string>\",\n      \"_status_name\": \"<string>\",\n      \"_priority_id\": \"<string>\",\n      \"_previous_status_instance_id\": \"<string>\",\n      \"Requester\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\",\n      \"_flow_name\": \"<string>\",\n      \"_start_status_instance_id\": \"<string>\",\n      \"_counter\": \"<number>\",\n      \"_status_id\": \"<string>\",\n      \"_created_at\": \"<dateTime>\"\n    },\n    {\n      \"_id\": \"<string>\",\n      \"AssignedTo\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"_created_by\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"Name\": \"<string>\",\n      \"_category\": \"<string>\",\n      \"_modified_by\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"_item_id\": \"<string>\",\n      \"_priority_name\": \"<string>\",\n      \"_status_name\": \"<string>\",\n      \"_priority_id\": \"<string>\",\n      \"_previous_status_instance_id\": \"<string>\",\n      \"Requester\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\",\n      \"_flow_name\": \"<string>\",\n      \"_start_status_instance_id\": \"<string>\",\n      \"_counter\": \"<number>\",\n      \"_status_id\": \"<string>\",\n      \"_created_at\": \"<dateTime>\"\n    }\n  ]\n}"},{"id":"8a0af453-e0a2-4780-86a0-bd00bff198e5","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:view_type/items","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":view_type","items"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"view_type","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"909f9816-9f18-45a0-bdd9-6e5c5f282299","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:view_type/items","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":view_type","items"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"view_type","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"dedbbab6-74c6-4089-922d-a089fac7f0a4","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:view_type/items","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":view_type","items"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"view_type","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"aa80504b-b69e-4b21-886d-e8f31358dddd","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:view_type/items","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":view_type","items"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"view_type","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"b51245e3-7641-40e7-98c5-24267ff20fa9","name":"500 Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"AppId\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"ViewId\": \"<string>\",\n  \"ConfigJson\": {\n    \"Filter\": {\n      \"AND\": [\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        },\n        {\n          \"OR\": [\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            },\n            {\n              \"RHSAttribute\": \"<string>\",\n              \"Operator\": \"<string>\",\n              \"LHSField\": \"<string>\",\n              \"RHSValue\": \"<string>\",\n              \"RHSType\": \"<string>\",\n              \"RHSField\": \"<string>\"\n            }\n          ]\n        }\n      ]\n    },\n    \"Sort\": [\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      },\n      {\n        \"Id\": \"<string>\",\n        \"SortType\": \"<string>\"\n      }\n    ],\n    \"Columns\": [\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      },\n      {\n        \"Name\": \"<string>\",\n        \"Widget\": \"<string>\",\n        \"IsSystemField\": \"<boolean>\",\n        \"Type\": \"<string>\",\n        \"ReadOnly\": \"<string>\",\n        \"Width\": \"<number>\",\n        \"Required\": \"<boolean>\",\n        \"Fixed\": \"<boolean>\",\n        \"Id\": \"<string>\",\n        \"Model\": \"<string>\"\n      }\n    ],\n    \"FilterType\": \"<string>\",\n    \"PageSize\": \"<number>\"\n  },\n  \"ViewType\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:view_type/items","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":view_type","items"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"view_type","value":""}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"f0d0f928-736d-48e8-894d-3bc9611802aa"},{"name":"Get a list of records from a lookup field in a table","id":"c711a017-f003-4f9e-8e09-b25d85d54c92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:table_instance_id/:field_id/lookup?page_number=<integer>&page_size=<integer>&q=<string>","description":"<p>Retrieves a list of records from an internal data source in a lookup field of a board table.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":table_id",":table_instance_id",":field_id","lookup"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1.</p>\n","type":"text/plain"},"key":"page_number","value":"<integer>"},{"description":{"content":"<p>The number of items that can be listed in a page result and is an optional parameter. Default value is 10.</p>\n","type":"text/plain"},"key":"page_size","value":"<integer>"},{"description":{"content":"<p>This is the search string and is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier of the row in a table that contains the lookup field.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"e99ea3be-df06-462a-a7ad-33ed3340a200","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:table_instance_id/:field_id/lookup?page_number=<integer>&page_size=<integer>&q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":table_instance_id",":field_id","lookup"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"table_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"TotalPrice\": \"<string>\"\n}"},{"id":"9c89fcca-b2b4-4a0f-b2e2-b39cf8c741c2","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:table_instance_id/:field_id/lookup?page_number=<integer>&page_size=<integer>&q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":table_instance_id",":field_id","lookup"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"table_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"063ba7c5-fe44-4c04-8570-469a22156d9e","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:table_instance_id/:field_id/lookup?page_number=<integer>&page_size=<integer>&q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":table_instance_id",":field_id","lookup"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"table_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"835fd944-933e-417a-a2d0-d4c3fd5462bd","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:table_instance_id/:field_id/lookup?page_number=<integer>&page_size=<integer>&q=<string>","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":table_instance_id",":field_id","lookup"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"table_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"c711a017-f003-4f9e-8e09-b25d85d54c92"},{"name":"Get a list of records from a remote lookup field in a table","id":"d51846f5-5d86-49b4-860c-351305a20587","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:table_instance_id/:field_id/rlookup","description":"<p>Retrieves a list of records from an external data source in a remote lookup field of a board table.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":table_id",":table_instance_id",":field_id","rlookup"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in the board.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier of the row in a table that contains the lookup field.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"70725215-522c-4043-b72d-cd13f73aa21c","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:table_instance_id/:field_id/rlookup","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":table_instance_id",":field_id","rlookup"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"table_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"RequestedBy\": {\n    \"_id\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"TotalPrice\": \"<string>\"\n}"},{"id":"ec36f2e9-6ae3-47ca-8e16-28e2b860214a","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:table_instance_id/:field_id/rlookup","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":table_instance_id",":field_id","rlookup"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"table_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"5f273480-2f3d-477b-8d49-02aea793074d","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:table_instance_id/:field_id/rlookup","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":table_instance_id",":field_id","rlookup"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"table_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"67a34541-658d-42a2-93ba-e6dbd410e7f2","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:table_instance_id/:field_id/rlookup","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":table_instance_id",":field_id","rlookup"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"table_instance_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"d51846f5-5d86-49b4-860c-351305a20587"},{"name":"Download an attachment from an attachment field","id":"a1db7f4f-852f-4d6d-a020-8b07c014c14f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/attachment/:attachment_id","description":"<p>Downloads an attachment from a specific attachment field in the board form.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":field_id","attachment",":attachment_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"},{"description":{"content":"<p>(Required) The unique identifier of your attached file.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"attachment_id"}]}},"response":[{"id":"fb9496cd-dc88-4b18-9cf7-ca187c45c3cc","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"203b5adc-a57e-4428-a56b-5a84e2c25ab3","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"126cd539-49dd-4454-9a18-8fd8d7417a2c","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"c0ab56b8-c1f5-44ad-b10a-1d7f75fc4544","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"a1db7f4f-852f-4d6d-a020-8b07c014c14f"},{"name":"Download an attachment from an attachment field in a table","id":"aa74b6fd-80e5-4644-a427-ac7e485c2c52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment/:attachment_id","description":"<p>Downloads an attachment from a specific attachment field in a table within the board.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"},{"description":{"content":"<p>(Required) The unique identifier of your attached file.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"attachment_id"}]}},"response":[{"id":"b8c58411-d769-4409-bf3a-73373becd107","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"d04fcae8-6e32-4309-8411-c336642666ae","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"b09e333f-d1f1-42fc-9de6-e452fb5cfdc9","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"1c3701e2-98d2-47ae-bcfc-48fed37f5110","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment/:attachment_id","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment",":attachment_id"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""},{"key":"attachment_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"aa74b6fd-80e5-4644-a427-ac7e485c2c52"},{"name":"Download an image file from an image field","id":"1ab3167c-2837-4e6c-8c8a-9903b0e00a3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/image","description":"<p>Downloads an image file from a specific image field in the board form.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"7a6b8770-9755-4ebe-9892-273d8bbb13bf","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"b023de12-fb58-472a-bf8b-de87f5c791b8","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"27af8e3d-53a5-4c81-8282-b867f4cbeb1a","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"51b6899c-592a-4abc-af16-9999c12e2542","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"1ab3167c-2837-4e6c-8c8a-9903b0e00a3e"},{"name":"Download an image from an image file in a table","id":"a3efc257-d8d2-4d3f-b71f-12a9e887cbd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","description":"<p>Downloads an image file from a specific image field in a table within the board form.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"90042faa-b517-4ec3-a952-759964b8cbd9","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"7e51fabb-dafb-496b-af7f-57eb5be9cdbe","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"0dbb7e46-a930-4635-b4fb-4789d2970ff0","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"241c7c33-eb72-4c8f-ab2c-63193491ca34","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"a3efc257-d8d2-4d3f-b71f-12a9e887cbd5"},{"name":"Upload an attachment to an attachment field","id":"ec516b68-17bd-45f1-a453-0e4f066959ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this in the header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","description":"<p>Add your attachment in the body payload.</p>\n","value":null}]},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/attachment","description":"<p>Adds an attachment to a specific attachment field in the board form. The following file formats are supported - pdf, .doc, .ppt, .xls, .jpg, .jpeg, .jpe, .png, .gif, or .mp4.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":field_id","attachment"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"0f3aa772-ae89-4244-9a35-38c0482094a6","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Summary\": \"<string>\"\n}"},{"id":"6b1ec52c-1cc8-4dcf-bcc2-f3076989ad0f","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"0033c23b-889e-43e7-9cea-aba611034271","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"32347713-7d1b-43bd-9e03-9d2e2e755dd0","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"ec516b68-17bd-45f1-a453-0e4f066959ba"},{"name":"Upload an attachment to an attachment field in a table","id":"83396f6f-8423-431f-b73b-8dc77648a374","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this in the header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","description":"<p>Attach your file in the body payload.</p>\n","value":null}]},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment","description":"<p>Uploads an attachment to a specific attachment field in a table within the board form. The following file formats are supported - pdf, .doc, .ppt, .xls, .jpg, .jpeg, .jpe, .png, .gif, or .mp4.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"40355564-82c0-4a4b-ae5e-904958bd9df1","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Summary\": \"<string>\"\n}"},{"id":"ed57cf9e-40d2-430d-a4d5-cd8d4711b1fb","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"8a52ddc7-e03c-450f-862d-8a0ee13679d0","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"b8891c40-26e8-42d9-8776-a276a79add7c","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"83396f6f-8423-431f-b73b-8dc77648a374"},{"name":"Upload an image to a table field","id":"82c426d7-69a7-45e2-8e62-9aed85ce1867","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this in the header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"images","type":"file","description":"<p>Attach your image in the body payload.</p>\n","value":null}]},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","description":"<p>Uploads an image file to a specific image field in a table within the board form. The following image file formats are supported - .jpg, .jpeg, .jpe, .png, or .gif.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each table in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each row of a table in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"22182ee6-5a85-464d-8d9c-22d55a33718e","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Summary\": \"<string>\"\n}"},{"id":"19b89585-fc6f-459b-8d0c-461ca340eb6d","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"2aeadfe5-faec-4e66-a78a-bb4a5d0ed02a","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"f9745797-4e76-4c42-913b-256200f5ec91","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"table_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"82c426d7-69a7-45e2-8e62-9aed85ce1867"},{"name":"Upload an image file to an image field","id":"7909e9fb-a833-4db6-91cc-c7f63888daa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","description":"<p>Do not pass this in the header when used inside Postman. Use the default header set by Postman, instead.</p>\n"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"images","type":"file","description":"<p>Attach your image in the body payload.</p>\n","value":null}]},"url":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/image","description":"<p>Uploads an image file to a specific image field in the board form. The following file formats are supported - .jpg, .jpeg, .jpe, .png, or .gif.</p>\n","urlObject":{"protocol":"https","path":["case","2",":account_id",":case_id",":item_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each board. You can find the case ID from the web URL. For instance, if the board URL is <a href=\"https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all\">https://thestarkcorporation.kissflow.com/view/case/Customer_feedback_requests/home/Customer_feedback_requests_all</a>, Customer_feedback_requests will be the case_id. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"description":{"content":"<p>(Required) The unique identifier for an individual item in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field in the board. </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"e85dccfc-4861-4630-971b-40828d5732e3","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Summary\": \"<string>\"\n}"},{"id":"e1a30197-7974-4155-a9ed-20478505623b","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"c45ff78b-d84e-4f57-8f37-cec92d1d1761","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"},{"id":"c82a99c6-d80b-4015-8ba8-bcdeea19a6eb","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":{"raw":"https://subdomain.kissflow.com/case/2/:account_id/:case_id/:item_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","2",":account_id",":case_id",":item_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"case_id","value":""},{"key":"item_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\",\n  \"args\": {}\n}"}],"_postman_id":"7909e9fb-a833-4db6-91cc-c7f63888daa9"}],"id":"559893af-7002-4f25-b7d6-87f01b4315fd","description":"<p>Boards in Kissflow are highly adaptable workflows that help you track information and manage work efficiently.</p>\n<h3 id=\"using-boards-in-portals\">Using boards in portals</h3>\n<p>All of these board API endpoints can also be consumed within <a href=\"https://api.kissflow.com/#587a3da2-9417-440d-8322-1322ec870a32\">portals</a>. Portals are applications that allow business operations to be conducted in collaboration with external users such as vendors, customers, or partners without the need to add them to your Kissflow account.</p>\n<p><strong>Key points:</strong></p>\n<ul>\n<li><p>Ensure the subdomain used in the API endpoint URL is your <a href=\"https://community.kissflow.com/t/p8h4atv/administering-portals#portal-details\">portal domain</a>, obtained from <em>Portal administration &gt; Portal settings &gt; Portal details &gt; Portal domain.</em></p>\n</li>\n<li><p>The <a href=\"https://community.kissflow.com/t/q6h4akr/creating-and-managing-access-keys\">access keys</a> must be from a service account in your portal, created from <strong>Account administration &gt; Service account.</strong> Select your portal service account and click <strong>Create access key</strong>.</p>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"e68efafa-c0a8-41f8-9530-88914486fe67","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"d1229a4f-b2d4-4368-87ff-1486bf280e2a","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"559893af-7002-4f25-b7d6-87f01b4315fd"},{"name":"Dataforms and dataform views","item":[{"name":"Dataforms","item":[{"name":"Create a new dataform record","id":"9f791d8b-1a77-47cc-86b5-67d05289d138","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name_1\": \"<string>\",\n  \"Employee_ID\": \"<string>\"\n  \"Department\": \"<string>\"\n  \"Emergency_contact\": \"<string>\"\n  \"Address\":\"<string>\"\n  \"DOB\":\"<date>\"\n}\n","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/create/submit","description":"<p>Creates and submits a new dataform record.</p>\n","urlObject":{"protocol":"https","path":["form","2",":account_id",":form_id","create","submit"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataform. You can find the dataform ID from the web URL. For instance, if the dataform URL is <code>https://development-thestarkcorporation.kissflow.com/appbuilder/PACMS_A00/form/Testimonial_Form_A00</code>, <code>Testimonial_Form_A00</code> will be the <code>form_ID</code>. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"form_id"}]}},"response":[{"id":"e27777ea-eab6-4072-8766-8969beb3cee8","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/create/submit","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","create","submit"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"04a19cf8-7495-4895-8e07-11fb61a7d504","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name_1\": \"Jane Doe\",\n  \"Employee_ID\": \"109001\"\n  \"Department\": \"Marketing\"\n  \"Emergency_contact\": \"623892836\"\n  \"Address\":\"31/33, Park avenue, Elcot city\"\n  \"DOB\":\"09-04-1998\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/create/submit","protocol":"https","host":["subdomain","kissflow","com"],"path":["form","2",":account_id",":form_id","create","submit"],"variable":[{"key":"account_id","value":"<string>","description":"(Required) Kissflow Account ID. Learn how to retrieve an [Account ID](https://community.kissflow.com/t/35h4az8/api-authentication#account-id) from Kissflow."},{"key":"form_id","value":"<string>","description":"(Required) The unique identifier for each dataform. You can find the dataform ID from the web URL. For instance, if the dataform URL is `https://development-thestarkcorporation.kissflow.com/appbuilder/PACMS_A00/form/Testimonial_Form_A00`, `Testimonial_Form_A00` will be the `form_ID`. If you require additional assistance, please contact customer support."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"UnauthorizedException\",\n    \"error_code\": \"KISSFLOW_ERROR_00014\",\n    \"en_message\": \"You are not authorized to access this resource.\",\n    \"message\": \"You are not authorized to access this resource.\",\n    \"_id\": \"1696a0d7-af5b-4564-87de-20ce190c143d\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.create-and-submit-instance-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}\n"},{"id":"d586aa31-ba0d-437d-8079-daa6bc201ffe","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/create/submit","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","create","submit"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"PermissionDeniedError\",\n    \"error_code\": \"KISSFLOW_ERROR_00010\",\n    \"en_message\": \"You don't have permission to access this resource.\",\n    \"message\": \"You don't have permission to access this resource.\",\n    \"_id\": \"023062bf-3472-4233-a198-ff4dc69c117c\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.create-and-submit-instance-dba7c3fe-863f-4dd0-830f-e18430ffa5f3\"\n}\n"},{"id":"7f729386-ebce-46b0-b913-1c3371af3463","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/create/submit","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","create","submit"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"9f791d8b-1a77-47cc-86b5-67d05289d138"},{"name":"Update dataform record","id":"50e3bef6-eb7c-4b06-a0a4-84752c3a71ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Emergency_contact\": \"<string>\"\n  \"Address\":\"<string>\"\n}\n","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","description":"<p>Updates values of a specific dataform record.</p>\n","urlObject":{"protocol":"https","path":["form","2",":account_id",":form_id",":instance_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataform. You can find the dataform ID from the web URL. For instance, if the dataform URL is <code>https://development-thestarkcorporation.kissflow.com/appbuilder/PACMS_A00/form/Testimonial_Form_A00</code>, <code>Testimonial_Form_A00</code> will be the <code>form_ID</code>. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"form_id"},{"description":{"content":"<p>(Required) This is the unique identifier for each dataform record. You can fetch this from the network tab of your browser.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"aee432a1-e71c-4902-bfb0-8ab289549744","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n\"_id\": \"someItemId\",\n\"Emergency_contact\": \"0981902839\",\n\"Address\":\"40, Titanium towers, Hudson yard\",\n\"_modified_at\": \"date time value\"\n}\n"},{"id":"0681eadb-0efc-483e-b3e6-8049afb50b27","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"UnauthorizedException\",\n    \"error_code\": \"KISSFLOW_ERROR_00014\",\n    \"en_message\": \"You are not authorized to access this resource.\",\n    \"message\": \"You are not authorized to access this resource.\",\n    \"_id\": \"1696a0d7-af5b-4564-87de-20ce190c143d\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.update-form-item-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}\n"},{"id":"8a6096ee-fb25-4d65-9bdb-f3b42769d19d","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"PermissionDeniedError\",\n    \"error_code\": \"KISSFLOW_ERROR_00010\",\n    \"en_message\": \"You don't have permission to access this resource.\",\n    \"message\": \"You don't have permission to access this resource.\",\n    \"_id\": \"023062bf-3472-4233-a198-ff4dc69c117c\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.update-form-item-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}"},{"id":"4f00c2c6-9a12-4947-aed3-366c9882ebf4","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"DocumentNotFound\",\n    \"error_code\": \"KISSFLOW_ERROR_01015\",\n    \"en_message\": \"The item, Pk9GcIGoUptV, could not be located within Employee Data.\",\n    \"message\": \"The item, {instance_id}, could not be located within {model_name}.\",\n    \"_id\": \"47bcb156-f564-487f-8b66-db3ff2dcc566\",\n    \"args\": {\n        \"instance_id\": \"Pk9GcIGoUptV\",\n        \"model_name\": \"Employee Data\"\n    },\n    \"status\": \"error\",\n    \"request_id\": \"Form.update-form-item-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}"}],"_postman_id":"50e3bef6-eb7c-4b06-a0a4-84752c3a71ae"},{"name":"Get details of a dataform record","id":"f8921ff3-27f6-427c-bed2-c438cd4e1243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","description":"<p>Retrieves all the details of a specific dataform record.</p>\n","urlObject":{"protocol":"https","path":["form","2",":account_id",":form_id",":instance_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataform. You can find the dataform ID from the web URL. For instance, if the dataform URL is <code>https://development-thestarkcorporation.kissflow.com/appbuilder/PACMS_A00/form/Testimonial_Form_A00</code>, <code>Testimonial_Form_A00</code> will be the <code>form_ID</code>. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"form_id"},{"description":{"content":"<p>(Required) This is the unique identifier for each dataform record. You can fetch this from the network tab of your browser.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"a37f2197-86d2-4594-b645-a477daa7c380","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{_id: \"PkAuBpLW2MWe\", Name: \"Employee data from Jane Doe\",…}\nAddress: \"Ronald avenue\"\nBlood_group: \"o+ve\"\nDOB: \"1980-05-14\"\nDate_of_joining: \"2025-02-05\"\nDepartment: \"Marketing\"\nEmail_ID: \"jane@kissflow.com\"\nEmergency_contact: 563252535\nEmployee_ID: 11838\nName: \"Employee data from Jane Doe\"\nName_1: \"Jane Doe\"\nPersonal_email_ID: \"jane@gmail.com\"\n_application_id: \"HRMS_app_A00\"\n_created_at: \"2025-02-25T06:55:21Z\"\n_created_by: {_id: \"Us8WjMSnu7f6\", Name: \"Jane Doe\", Kind: \"User\"}\n_doc_version: \"170529622467989792\"\n_flow_name: \"Employee data\"\n_flow_type: \"Form\"\n_id: \"PkAuBpLW2MWe\"\n_modified_at: \"2025-02-25T06:55:21Z\"\n_modified_by: {_id: \"Us8WjMSnu7f6\", Name: \"Jane Doe\", Kind: \"User\"}\n"},{"id":"7beabcd2-d4ee-4790-91c0-e355e9986cb0","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"UnauthorizedException\",\n    \"error_code\": \"KISSFLOW_ERROR_00014\",\n    \"en_message\": \"You are not authorized to access this resource.\",\n    \"message\": \"You are not authorized to access this resource.\",\n    \"_id\": \"1696a0d7-af5b-4564-87de-20ce190c143d\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.get-item-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}\n"},{"id":"25e847fe-d94b-4aa2-af33-4d6f8bb46767","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"PermissionDeniedError\",\n    \"error_code\": \"KISSFLOW_ERROR_00010\",\n    \"en_message\": \"You don't have permission to access this resource.\",\n    \"message\": \"You don't have permission to access this resource.\",\n    \"_id\": \"023062bf-3472-4233-a198-ff4dc69c117c\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.get-item-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}"},{"id":"600060c4-cdb2-446f-a683-0aa8ddd8902d","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"DocumentNotFound\",\n    \"error_code\": \"KISSFLOW_ERROR_01015\",\n    \"en_message\": \"The item, Pk9GcIGoUptV, could not be located within Employee Data.\",\n    \"message\": \"The item, {instance_id}, could not be located within {model_name}.\",\n    \"_id\": \"47bcb156-f564-487f-8b66-db3ff2dcc566\",\n    \"args\": {\n        \"instance_id\": \"Pk9GcIGoUptV\",\n        \"model_name\": \"Tuesday\"\n    },\n    \"status\": \"error\",\n    \"request_id\": \"Form.get-item-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}"}],"_postman_id":"f8921ff3-27f6-427c-bed2-c438cd4e1243"},{"name":"Delete a dataform record","id":"934af02d-cf13-451c-97bf-11d18aec91b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","description":"<p>Deletes all the values associated with a specific dataform record.</p>\n","urlObject":{"protocol":"https","path":["form","2",":account_id",":form_id",":instance_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataform. You can find the dataform ID from the web URL. For instance, if the dataform URL is <code>https://development-thestarkcorporation.kissflow.com/appbuilder/PACMS_A00/form/Testimonial_Form_A00</code>, <code>Testimonial_Form_A00</code> will be the <code>form_ID</code>. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"form_id"},{"description":{"content":"<p>(Required) This is the unique identifier for each dataform record. You can fetch this from the network tab of your browser.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"619077d8-4942-4175-ba64-ec9d850489f3","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[{\"_id\":\"PkAryUa7pA2T\",\"_is_deleted\":true}]"},{"id":"5221d2ca-184e-44f1-9372-9195ae112612","name":"401 Unauthorized","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"UnauthorizedException\",\n    \"error_code\": \"KISSFLOW_ERROR_00014\",\n    \"en_message\": \"You are not authorized to access this resource.\",\n    \"message\": \"You are not authorized to access this resource.\",\n    \"_id\": \"1696a0d7-af5b-4564-87de-20ce190c143d\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.delete-form-item-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}"},{"id":"9ca5c11e-6e73-4a2e-94ef-91b8e89b8be4","name":"403 Forbidden","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"PermissionDeniedError\",\n    \"error_code\": \"KISSFLOW_ERROR_00010\",\n    \"en_message\": \"You don't have permission to access this resource.\",\n    \"message\": \"You don't have permission to access this resource.\",\n    \"_id\": \"023062bf-3472-4233-a198-ff4dc69c117c\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.delete-form-item-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}\n"},{"id":"e81534c9-5c26-4238-a11a-8c8a9f3d438e","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/:instance_id","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id",":instance_id"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"instance_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"DocumentNotFound\",\n    \"error_code\": \"KISSFLOW_ERROR_01015\",\n    \"en_message\": \"The item, Pk9GcIGoUptV, could not be located within Employee Data.\",\n    \"message\": \"The item, {instance_id}, could not be located within {model_name}.\",\n    \"_id\": \"47bcb156-f564-487f-8b66-db3ff2dcc566\",\n    \"args\": {\n        \"instance_id\": \"Pk9GcIGoUptV\",\n        \"model_name\": \"Tuesday\"\n    },\n    \"status\": \"error\",\n    \"request_id\": \"Form.delete-form-item-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}\n"}],"_postman_id":"934af02d-cf13-451c-97bf-11d18aec91b0"},{"name":"Bulk delete dataform records","id":"ccb2ddc7-ed2e-4dc1-bb06-9c14a438e055","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_id\": \"<string>\"\n  },\n  {\n    \"_id\": \"<string>\"\n  }\n]\n","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/batch/delete","description":"<p>Deletes multiple records from a dataform in bulk.</p>\n","urlObject":{"protocol":"https","path":["form","2",":account_id",":form_id","batch","delete"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataform. You can find the dataform ID from the web URL. For instance, if the dataform URL is <code>https://development-thestarkcorporation.kissflow.com/appbuilder/PACMS_A00/form/Testimonial_Form_A00</code>, <code>Testimonial_Form_A00</code> will be the <code>form_ID</code>. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"form_id"}]}},"response":[{"id":"3a8fa811-f80c-4442-9e50-003e5bd0bdb2","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_id\": \"<string>\"\n  },\n  {\n    \"_id\": \"<string>\"\n  }\n]\n","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/batch/delete","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","batch","delete"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n{\"_id\":\"PkAryUa7pA2T\",\"_is_deleted\":true},\n{\"_id\":\"WkAryUa7pA2T\",\"_is_deleted\":true} \n]\n"},{"id":"b199ada8-13b9-4a58-87cd-415ab3dbd631","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_id\": \"<string>\"\n  },\n  {\n    \"_id\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/batch/delete","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","batch","delete"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"UnauthorizedException\",\n    \"error_code\": \"KISSFLOW_ERROR_00014\",\n    \"en_message\": \"You are not authorized to access this resource.\",\n    \"message\": \"You are not authorized to access this resource.\",\n    \"_id\": \"1696a0d7-af5b-4564-87de-20ce190c143d\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.delete-form-items-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}\n"},{"id":"33809887-9145-4be9-ad4b-b86eefa8618f","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_id\": \"<string>\"\n  },\n  {\n    \"_id\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/batch/delete","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","batch","delete"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"PermissionDeniedError\",\n    \"error_code\": \"KISSFLOW_ERROR_00010\",\n    \"en_message\": \"You don't have permission to access this resource.\",\n    \"message\": \"You don't have permission to access this resource.\",\n    \"_id\": \"023062bf-3472-4233-a198-ff4dc69c117c\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.delete-form-items-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}\n"},{"id":"a39151a8-fdf7-4ba1-9522-633bf13b830f","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_id\": \"<string>\"\n  },\n  {\n    \"_id\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/batch/delete","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","batch","delete"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"DocumentNotFound\",\n    \"error_code\": \"KISSFLOW_ERROR_01015\",\n    \"en_message\": \"The item, Pk9GcIGoUptV, could not be located within Employee Data.\",\n    \"message\": \"The item, {instance_id}, could not be located within {model_name}.\",\n    \"_id\": \"47bcb156-f564-487f-8b66-db3ff2dcc566\",\n    \"args\": {\n        \"instance_id\": \"Pk9GcIGoUptV\",\n        \"model_name\": \"Tuesday\"\n    },\n    \"status\": \"error\",\n    \"request_id\": \"Form.delete-form-items-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}\n"}],"_postman_id":"ccb2ddc7-ed2e-4dc1-bb06-9c14a438e055"},{"name":"Bulk update dataform records","id":"66506242-fd01-4c98-bce8-5d97e4c00b8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"[ \n    // --- UPDATE an existing record ---\n    {\n        \"_id\": \"string\",\n        \"TotalPrice\": \"new string\",\n        \"PONumber\": \"new string\",\n        \"RequestedBy\": {\n            \"_id\": \"string\",\n            \"Name\": \"new string\"\n        },\n        \"Name\": \"new string\"\n    },\n    // --- CREATE a new record ---\n    {\n        \"_is_created\": true,\n        \"TotalPrice\": \"string\",\n        \"PONumber\": \"string\",\n        \"Name\": \"string\"\n    }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/batch","description":"<p>This endpoint performs bulk operations (creation and/or updates) on multiple records within a dataform. You can create/update up to <strong>500 records</strong> at a time.</p>\n<p>To use it, send a JSON array in the <strong>request body</strong>. Each object in the array represents a single record operation (create or update). Structure each object based on the intended action:</p>\n<p><strong>1. To update an existing record:</strong></p>\n<ul>\n<li><p>Identify the record using its unique <code>_id</code> (string).</p>\n</li>\n<li><p>Make sure there is no mention of the <code>_is_created</code> field and its <code>boolean</code> value here.</p>\n</li>\n<li><p><code>JSON example:</code><br />  <code>{ \"_id\": \"existing-record-123\", \"fieldName\": \"new value\", \"anotherField\": \"updated data\" }</code></p>\n</li>\n</ul>\n<p><strong>2. To create a new record:</strong></p>\n<ul>\n<li><p>Provide all fields required by the dataform, along with their initial values. Optional fields can also be included.</p>\n</li>\n<li><p>Make sure to add the following field <code>_is_created</code> with the value <code>true</code> (boolean) to create a new record.</p>\n</li>\n<li><p><code>JSON example:</code><br />  <code>{ \"_is_created\": true, \"requiredFieldA\": \"value A\", \"requiredFieldB\": 123, \"optionalFieldC\": \"some data\" }</code></p>\n</li>\n</ul>\n<p><strong>Key points:</strong></p>\n<ul>\n<li><p>You can mix objects for creation and updating within the same request array.</p>\n</li>\n<li><p>Ensure your request's field names and data types match the dataform's schema.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["form","2",":account_id",":form_id","batch"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataform. You can find the dataform ID from the web URL. For instance, if the dataform URL is <code>https://development-thestarkcorporation.kissflow.com/appbuilder/PACMS_A00/form/Testimonial_Form_A00</code>, <code>Testimonial_Form_A00</code> will be the <code>form_ID</code>. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"form_id"}]}},"response":[{"id":"09c3e12d-523b-4e56-b4ab-4375a0f6bb0c","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"_id\": \"1234\",\n        \"TotalPrice\": \"string\",\n        \"PONumber\": \"string\",\n        \"RequestedBy\": {\n            \"_id\": \"string\",\n            \"Name\": \"string\"\n        },\n        \"Name\": \"string\"\n    }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/batch","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n{\n\"Name_1\": \"John Doe\",\n\"Emergency_contact\": \"623892836\",\n\"Address\": \"31/33, Park avenue, Elcot city\",\n\"DOB\": \"09-04-1998\",\n\"_modified_at\": \"2025-03-14T08:59:42Z\",\n\"_id\": \"Pkuawduh\",\n},\n{\n\"Department\": \"Revenue\",\n\"Address\": \"new address\",\n\"_modified_at\": \"2025-03-14T08:59:45Z\",\n\"_id\": \"Pkdudolp\"\n}\n]\n"},{"id":"625f39da-689b-4608-b8f6-230a252d44c3","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"_id\": \"string\",\n        \"TotalPrice\": \"string\",\n        \"PONumber\": \"string\",\n        \"RequestedBy\": {\n            \"_id\": \"string\",\n            \"Name\": \"string\"\n        },\n        \"Name\": \"string\"\n    }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/batch","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"UnauthorizedException\",\n    \"error_code\": \"KISSFLOW_ERROR_00014\",\n    \"en_message\": \"You are not authorized to access this resource.\",\n    \"message\": \"You are not authorized to access this resource.\",\n    \"_id\": \"1696a0d7-af5b-4564-87de-20ce190c143d\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.batch-update-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}"},{"id":"82b18f10-6572-4ec8-84fc-6fc7e581bae9","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"_id\": \"string\",\n        \"TotalPrice\": \"string\",\n        \"PONumber\": \"string\",\n        \"RequestedBy\": {\n            \"_id\": \"string\",\n            \"Name\": \"string\"\n        },\n        \"Name\": \"string\"\n    }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/batch","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"PermissionDeniedError\",\n    \"error_code\": \"KISSFLOW_ERROR_00010\",\n    \"en_message\": \"You don't have permission to access this resource.\",\n    \"message\": \"You don't have permission to access this resource.\",\n    \"_id\": \"023062bf-3472-4233-a198-ff4dc69c117c\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.batch-update-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}\n"},{"id":"3ce41b7e-0dbd-4fc1-9df4-6f94ce94a88e","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"_id\": \"string\",\n        \"TotalPrice\": \"string\",\n        \"PONumber\": \"string\",\n        \"RequestedBy\": {\n            \"_id\": \"string\",\n            \"Name\": \"string\"\n        },\n        \"Name\": \"string\"\n    }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/batch","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"DocumentNotFound\",\n    \"error_code\": \"KISSFLOW_ERROR_01015\",\n    \"en_message\": \"The item, Pk9GcIGoUptV, could not be located within Employee Data.\",\n    \"message\": \"The item, {instance_id}, could not be located within {model_name}.\",\n    \"_id\": \"47bcb156-f564-487f-8b66-db3ff2dcc566\",\n    \"args\": {\n        \"instance_id\": \"Pk9GcIGoUptV\",\n        \"model_name\": \"Tuesday\"\n    },\n    \"status\": \"error\",\n    \"request_id\": \"Form.batch-update-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}\n"}],"_postman_id":"66506242-fd01-4c98-bce8-5d97e4c00b8b"},{"name":"Get all dataform records","id":"0f073169-b7b5-4df4-a646-8770c8a248cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/list?visited=<boolean>&page_number=<integer>&page_size=<integer>&q=<string>&search_field=<string>","description":"<p>Retrieves details of all records in a dataform.</p>\n","urlObject":{"protocol":"https","path":["form","2",":account_id",":form_id","list"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>This is the search filter string based on visited status, and it is an optional parameter.</p>\n","type":"text/plain"},"key":"visited","value":"<boolean>"},{"description":{"content":"<p>This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1.</p>\n","type":"text/plain"},"key":"page_number","value":"<integer>"},{"description":{"content":"<p>The number of items that can be listed in a page result and is an optional parameter. Default value is 10.</p>\n","type":"text/plain"},"key":"page_size","value":"<integer>"},{"description":{"content":"<p>This is the search string and is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"},{"description":{"content":"<p>This is the search filter string based on a specific field and is an optional parameter.</p>\n","type":"text/plain"},"key":"search_field","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataform. You can find the dataform ID from the web URL. For instance, if the dataform URL is <code>https://development-thestarkcorporation.kissflow.com/appbuilder/PACMS_A00/form/Testimonial_Form_A00</code>, <code>Testimonial_Form_A00</code> will be the <code>form_ID</code>. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"form_id"}]}},"response":[{"id":"84c620ae-cfd8-4265-b1ac-9932623cf976","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/list?visited=<boolean>&page_number=<integer>&page_size=<integer>&q=<string>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","list"],"query":[{"key":"visited","value":"<boolean>","description":"This is the search filter string based on visited status, and it is an optional parameter."},{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on a specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{_id: \"Employee_datatable_A00\",…}\nColumns: [{Id: \"Name_1\", Name: \"Name\", Type: \"Text\", ReadOnly: false, Width: null, MapTo: null,…},…]\nData: [{_id: \"PkAryRdojeZJ\"}, {_id: \"PkAryzBsK6m6\"}, {_id: \"PkArz7xtXHkj\"},…]\n0: {Name_1: \"Ron Wellesly \", Employee_ID: 8924, Department: \"IT\", DOB: \"2006-05-10\", Blood_group: \"B+ve\",…}\nBlood_group: \"B+ve\"\nDOB: \"2006-05-10\"\nDepartment: \"IT\"\nEmployee_ID: 8924\nName_1: \"Ron Wellesly \"\n_id: \"PkAsQq9l6Mef\"\n1: {Name_1: \"Jane Dow\", Employee_ID: 11838, Department: \"Marketing\", DOB: \"1980-05-14\",…}\nBlood_group: \"o+ve\"\nDOB: \"1980-05-14\"\nDepartment: \"Marketing\"\nEmployee_ID: 11838\nName_1: \"Jane Doe\"\n_id: \"PkAuBpLW2MWe\"\nFilter: {}\nSort: []\ncount: 5\n_id: \"Employee_datatable_A00\"\n"},{"id":"7d74f4ea-6ed1-43d7-8381-de04e2b901e5","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/list?visited=<boolean>&page_number=<integer>&page_size=<integer>&q=<string>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","list"],"query":[{"key":"visited","value":"<boolean>","description":"This is the search filter string based on visited status, and it is an optional parameter."},{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on a specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"UnauthorizedException\",\n    \"error_code\": \"KISSFLOW_ERROR_00014\",\n    \"en_message\": \"You are not authorized to access this resource.\",\n    \"message\": \"You are not authorized to access this resource.\",\n    \"_id\": \"1696a0d7-af5b-4564-87de-20ce190c143d\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.get-form-items-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}\n"},{"id":"7922be03-9f63-45f8-acb5-140e89bfa72d","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/list?visited=<boolean>&page_number=<integer>&page_size=<integer>&q=<string>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","list"],"query":[{"key":"visited","value":"<boolean>","description":"This is the search filter string based on visited status, and it is an optional parameter."},{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search string and is an optional parameter."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on a specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"PermissionDeniedError\",\n    \"error_code\": \"KISSFLOW_ERROR_00010\",\n    \"en_message\": \"You don't have permission to access this resource.\",\n    \"message\": \"You don't have permission to access this resource.\",\n    \"_id\": \"023062bf-3472-4233-a198-ff4dc69c117c\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"Form.get-form-items-6eafc588-6c5f-486f-b15d-a0e35425fc3d\"\n}"}],"_postman_id":"0f073169-b7b5-4df4-a646-8770c8a248cd"}],"id":"40369208-6408-4ab2-85d7-15edf0bd5d66","description":"<p>Dataforms in Kissflow are data-gathering forms that collect and store information without including a workflow approval process. They're essentially forms that let users submit data into an app.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"d9c0843f-0d2b-45d6-89fa-1f451f9696d2","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"0f297ecd-e69b-48b8-821a-992bdd396abd","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"40369208-6408-4ab2-85d7-15edf0bd5d66"},{"name":"Dataform views","item":[{"name":"Get all records of a dataform view","id":"6fcc0efd-bfaf-46ee-86c3-5a030c252caa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/view/:view_id/list?page_number=<integer>&page_size=<integer>&q=<string>&search_field=<string>","description":"<p>Retrieves all records of a dataform view.</p>\n","urlObject":{"protocol":"https","path":["form","2",":account_id",":form_id","view",":view_id","list"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1.</p>\n","type":"text/plain"},"key":"page_number","value":"<integer>"},{"description":{"content":"<p>The number of items that can be listed in a page result and is an optional parameter. Default value is 10.</p>\n","type":"text/plain"},"key":"page_size","value":"<integer>"},{"description":{"content":"<p>This is the search filter string, and is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"},{"description":{"content":"<p>This is the search filter string based on specific field and is an optional parameter.</p>\n","type":"text/plain"},"key":"search_field","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataform. You can find the dataform ID from the web URL. For instance, if the dataform URL is <code>https://development-thestarkcorporation.kissflow.com/appbuilder/PACMS_A00/form/Testimonial_Form_A00</code>, <code>Testimonial_Form_A00</code> will be the <code>form_ID</code>. If you require additional assistance, please contact customer support.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"form_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataform view. You can fetch it from the network tab of your browser. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"view_id"}]}},"response":[{"id":"9feb03ec-6a9a-4dae-bddc-8deaf3a3431c","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/view/:view_id/list?page_number=<integer>&page_size=<integer>&q=<string>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","view",":view_id","list"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"view_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{_id: \"Employee_datatable_A00\",…}\nColumns: [{Id: \"Name_1\", Name: \"Name\", Type: \"Text\", ReadOnly: false, Width: null, MapTo: null,…},…]\nComponentFilter: {}\nData: [{_id: \"PkAryRdojeZJ\"}, {_id: \"PkAryzBsK6m6\"}, {_id: \"PkArz7xtXHkj\"},…]\n0: {Name_1: \"Ron Wellesly \", Employee_ID: 8924, Department: \"IT\", DOB: \"2006-05-10\", Blood_group: \"B+ve\",…}\nBlood_group: \"B+ve\"\nDOB: \"2006-05-10\"\nDepartment: \"IT\"\nEmployee_ID: 8924\nName_1: \"Ron Wellesly \"\n_id: \"PkAsQq9l6Mef\"\n1: {Name_1: \"Jane Doe\", Employee_ID: 11838, Department: \"Marketing\", DOB: \"1980-05-14\",…}\nBlood_group: \"o+ve\"\nDOB: \"1980-05-14\"\nDepartment: \"Marketing\"\nEmployee_ID: 11838\nName_1: \"Jane Doe\"\n_id: \"PkAuBpLW2MWe\"\nFilter: {}\nSort: []\ncount: 5\n_id: \"Employee_datatable_A00\"\n"},{"id":"2dcf02ae-9ef3-47d0-b4f4-189958d52746","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/view/:view_id/list?page_number=<integer>&page_size=<integer>&q=<string>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","view",":view_id","list"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"view_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"UnauthorizedException\",\n    \"error_code\": \"KISSFLOW_ERROR_00014\",\n    \"en_message\": \"You are not authorized to access this resource.\",\n    \"message\": \"You are not authorized to access this resource.\",\n    \"_id\": \"1696a0d7-af5b-4564-87de-20ce190c143d\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"FormView.get-list-view-items-93ac9d62-29de-4cfc-b84a-09124b2f049c\"\n}"},{"id":"a0271c38-beae-449f-a048-6a07c0b91045","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/view/:view_id/list?page_number=<integer>&page_size=<integer>&q=<string>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","view",":view_id","list"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"view_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"type\": \"PermissionDeniedError\",\n    \"error_code\": \"KISSFLOW_ERROR_00010\",\n    \"en_message\": \"You don't have permission to access this resource.\",\n    \"message\": \"You don't have permission to access this resource.\",\n    \"_id\": \"023062bf-3472-4233-a198-ff4dc69c117c\",\n    \"args\": {},\n    \"status\": \"error\",\n    \"request_id\": \"FormView.get-list-view-items-93ac9d62-29de-4cfc-b84a-09124b2f049c\"\n}"},{"id":"876066f8-fe1c-4313-91b4-6a3130260d17","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/form/2/:account_id/:form_id/view/:view_id/list?page_number=<integer>&page_size=<integer>&q=<string>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["form","2",":account_id",":form_id","view",":view_id","list"],"query":[{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"form_id","value":""},{"key":"view_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"6fcc0efd-bfaf-46ee-86c3-5a030c252caa"}],"id":"a4b95b95-8294-4d8d-b187-ddf71cd8f38e","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"655abe6c-b9b9-4955-bb9d-5a9ccc1933a6","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"402f6b59-b65d-43af-a31d-d444aff4378d","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"a4b95b95-8294-4d8d-b187-ddf71cd8f38e","description":""}],"id":"548c0abe-c98b-4ac5-a364-f8edf10e04f3","description":"<p>Dataforms in Kissflow are data-gathering forms that collect and store information without including a workflow approval process. They're essentially forms that let users submit data into an app.</p>\n<h3 id=\"using-dataforms-in-portals\">Using dataforms in portals</h3>\n<p>All of these dataform API endpoints can also be consumed within <a href=\"https://api.kissflow.com/#587a3da2-9417-440d-8322-1322ec870a32\">portals</a>. Portals are applications that allow business operations to be conducted in collaboration with external users such as vendors, customers, or partners without the need to add them to your Kissflow account.</p>\n<p><strong>Key points:</strong></p>\n<ul>\n<li><p>Ensure the subdomain used in the API endpoint URL is your <a href=\"https://community.kissflow.com/t/p8h4atv/administering-portals#portal-details\">portal domain</a>, obtained from <em>Portal administration &gt; Portal settings &gt; Portal details &gt; Portal domain.</em></p>\n</li>\n<li><p>The <a href=\"https://community.kissflow.com/t/q6h4akr/creating-and-managing-access-keys\">access keys</a> must be from a service account in your portal, created from <strong>Account administration &gt; Service account.</strong> Select your portal service account and click <strong>Create access key</strong>.</p>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"6d529b50-8e9e-402e-a23d-4e9e8f998194","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"bacbe270-eb09-4cbe-bd26-75e98126fbc2","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"548c0abe-c98b-4ac5-a364-f8edf10e04f3"},{"name":"Dataset and dataset views","item":[{"name":"Update dataset records","id":"3ef19d58-547b-4b1c-857c-85c494c61a72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","description":"<p>Updates an existing dataset in Kissflow.</p>\n","urlObject":{"protocol":"https","path":["dataset","2",":account_id",":dataset_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset. You can find the dataset ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset</code>, <code>Bank_Dataset</code> will be the dataset ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"}]}},"response":[{"id":"98d5f3d9-1cc5-495a-99d5-93a87ec4c5eb","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"eff18563-63e0-4e88-9385-a292f3956de4","name":"401 Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"d093c559-99e7-407f-82d2-bf47a1290c8d","name":"403 Forbidden","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"9c9c99fe-4b24-4230-8522-62064c8e191f","name":"404 Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"}],"_postman_id":"3ef19d58-547b-4b1c-857c-85c494c61a72"},{"name":"Get records of a dataset view","id":"81e724e2-49d9-43b1-91bc-4305369cb013","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/view/:view_id/list?q=<string>&page_number=<integer>&page_size=<integer>&search_field=<string>","description":"<p>Retrieves all the records of a specific dataset view.</p>\n","urlObject":{"protocol":"https","path":["dataset","2",":account_id",":dataset_id","view",":view_id","list"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>This is the search filter string.</p>\n","type":"text/plain"},"key":"q","value":"<string>"},{"description":{"content":"<p>This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1.</p>\n","type":"text/plain"},"key":"page_number","value":"<integer>"},{"description":{"content":"<p>The number of items that can be listed in a page result and is an optional parameter. Default value is 10.</p>\n","type":"text/plain"},"key":"page_size","value":"<integer>"},{"description":{"content":"<p>This is the search filter string based on specific field and is an optional parameter.</p>\n","type":"text/plain"},"key":"search_field","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset. You can find the dataset ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset</code>, <code>Bank_Dataset</code> will be the dataset ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset view. You can find the dataset view ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset/view/Bank_statements</code>, <code>Bank_statements</code> will be the dataset view ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"view_id"}]}},"response":[{"id":"4d3ac31e-dd16-4c48-816d-b8463b88f9f7","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/view/:view_id/list?q=<string>&page_number=<integer>&page_size=<integer>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","view",":view_id","list"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string."},{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"view_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Filter\": {},\n  \"Table_TableName\": [\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        },\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        }\n      ]\n    },\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        },\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        }\n      ]\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}"},{"id":"28c964cd-d93d-42ad-b3ad-60ee16912a2f","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/view/:view_id/list?q=<string>&page_number=<integer>&page_size=<integer>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","view",":view_id","list"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string."},{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"view_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"86773dfc-21cc-4a57-aaca-313b25cb7a16","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/view/:view_id/list?q=<string>&page_number=<integer>&page_size=<integer>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","view",":view_id","list"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string."},{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"view_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"8a220775-901e-40c5-b9a4-b998d7e85d36","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/view/:view_id/list?q=<string>&page_number=<integer>&page_size=<integer>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","view",":view_id","list"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string."},{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"view_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"}],"_postman_id":"81e724e2-49d9-43b1-91bc-4305369cb013"},{"name":"Create a dataset","id":"52d37bed-2b1d-4b99-969b-395b5de38fa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","description":"<p>Creates a new dataset record in Kissflow.</p>\n","urlObject":{"protocol":"https","path":["dataset","2",":account_id",":dataset_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset. You can find the dataset ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset</code>, <code>Bank_Dataset</code> will be the dataset ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"}]}},"response":[{"id":"718cfccb-9643-489a-8d19-ac40e3fddc59","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"d9df2e6a-7589-497c-8075-bece5807362f","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"7a5f7d40-e7d6-48fe-b366-8c8dd25cad46","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"dafc5560-aafb-4db3-8635-14dbdcb599e3","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Field1\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"}],"_postman_id":"52d37bed-2b1d-4b99-969b-395b5de38fa8"},{"name":"Get dataset record","id":"be901dfe-d408-4e5b-b86f-766cc81e42ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id?Name=<string>","description":"<p>Retrieves all details about a specific dataset record based on key value.</p>\n","urlObject":{"protocol":"https","path":["dataset","2",":account_id",":dataset_id"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>(Required) The <code>Key</code> column value of the dataset. It is a unique string that identifies the record you are trying to fetch from the dataset. It is a mandatory parameter.<br /></p>\n","type":"text/plain"},"key":"Name","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset. You can find the dataset ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset</code>, <code>Bank_Dataset</code> will be the dataset ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"}]}},"response":[{"id":"18cfe779-bdf6-4fd4-bb17-e14ea7b34cdc","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id?Name=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"query":[{"key":"Name","value":"<string>","description":"(Required) The `Key` column value of the dataset. It is a unique string that identifies the record you are trying to fetch from the dataset. It is a mandatory parameter.<br />"}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3655f540-f022-455e-b18b-986de453d5d4","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id?Name=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"query":[{"key":"Name","value":"<string>","description":"(Required) The `Key` column value of the dataset. It is a unique string that identifies the record you are trying to fetch from the dataset. It is a mandatory parameter.<br />"}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"f0407b7d-712e-44f6-8a1e-8f8043d345d8","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id?Name=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"query":[{"key":"Name","value":"<string>","description":"(Required) The `Key` column value of the dataset. It is a unique string that identifies the record you are trying to fetch from the dataset. It is a mandatory parameter.<br />"}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"b6ad3680-c930-48c2-b298-2f0078f23488","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id?Name=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"query":[{"key":"Name","value":"<string>","description":"(Required) The `Key` column value of the dataset. It is a unique string that identifies the record you are trying to fetch from the dataset. It is a mandatory parameter.<br />"}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"}],"_postman_id":"be901dfe-d408-4e5b-b86f-766cc81e42ae"},{"name":"Get aggregated details of dataset's fields","id":"66609507-03b7-4352-9269-b3b9b82f7715","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/aggregation?q=<string>&page_number=1&page_size=10&field_ids=<string>","description":"<p>Retrieves aggregated details of a dataset's fields.</p>\n","urlObject":{"protocol":"https","path":["dataset","2",":account_id",":dataset_id","aggregation"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>This is the search filter string, and is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"},{"description":{"content":"<p>This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1.</p>\n","type":"text/plain"},"key":"page_number","value":"1"},{"description":{"content":"<p>The number of items that can be listed in a page result and is an optional parameter. Default value is 10.</p>\n","type":"text/plain"},"key":"page_size","value":"10"},{"description":{"content":"<p>List of field IDs under the current dataset whose aggregation details are to be fetched specifically. It is an optional parameter and when not specified, aggregation for all the dataset fields is returned by default. The field IDs must be comma-separated, hence the query param should be properly URL encoded.</p>\n","type":"text/plain"},"key":"field_ids","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset. You can find the dataset ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset</code>, <code>Bank_Dataset</code> will be the dataset ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"}]}},"response":[{"id":"2f4cd88f-1699-4d6f-84e8-3be0747041f4","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/aggregation?q=<string>&page_number=1&page_size=10&field_ids=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","aggregation"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"10","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"field_ids","value":"<string>","description":"List of field IDs under the current dataset whose aggregation details are to be fetched specifically. It is an optional parameter and when not specified, aggregation for all the dataset fields is returned by default. The field IDs must be comma-separated, hence the query param should be properly URL encoded."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"78a42721-6317-453b-98da-d4d51faf7bb8","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/aggregation?q=<string>&page_number=1&page_size=10&field_ids=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","aggregation"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"10","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"field_ids","value":"<string>","description":"List of field IDs under the current dataset whose aggregation details are to be fetched specifically. It is an optional parameter and when not specified, aggregation for all the dataset fields is returned by default. The field IDs must be comma-separated, hence the query param should be properly URL encoded."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"e16c044c-b142-45b3-ae93-e1fc588de914","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/aggregation?q=<string>&page_number=1&page_size=10&field_ids=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","aggregation"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"10","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"field_ids","value":"<string>","description":"List of field IDs under the current dataset whose aggregation details are to be fetched specifically. It is an optional parameter and when not specified, aggregation for all the dataset fields is returned by default. The field IDs must be comma-separated, hence the query param should be properly URL encoded."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"835fe7b9-ad82-43cb-a76c-36528ec21e6d","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/aggregation?q=<string>&page_number=1&page_size=10&field_ids=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","aggregation"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"page_number","value":"1","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"10","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"field_ids","value":"<string>","description":"List of field IDs under the current dataset whose aggregation details are to be fetched specifically. It is an optional parameter and when not specified, aggregation for all the dataset fields is returned by default. The field IDs must be comma-separated, hence the query param should be properly URL encoded."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"}],"_postman_id":"66609507-03b7-4352-9269-b3b9b82f7715"},{"name":"Delete a dataset","id":"0f743d66-9df5-4f1d-87d3-68f59dcdfe2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","description":"<p>Deletes a specific dataset in Kissflow.</p>\n","urlObject":{"protocol":"https","path":["dataset","2",":account_id",":dataset_id"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset. You can find the dataset ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset</code>, <code>Bank_Dataset</code> will be the dataset ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"}]}},"response":[{"id":"25b0ca91-a454-4c23-9459-863d2b588ee9","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f07195b3-b58e-4ae4-a733-5cf13328585a","name":"401 Unauthorized","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"cc07fa30-29d8-4d78-8107-f1b7a80e7e7c","name":"403 Forbidden","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"6a7caf09-60dd-4608-b7c2-cb483f895eeb","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"}],"_postman_id":"0f743d66-9df5-4f1d-87d3-68f59dcdfe2f"},{"name":"Get all dataset records","id":"ea70405f-410c-4882-bd61-18280da57900","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"url":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/list?q=<string>&page_number=<integer>&page_size=<integer>&search_field=<string>","description":"<p>Retrieves all records of a specific dataset, including dataset fields and their corresponding values.</p>\n","urlObject":{"protocol":"https","path":["dataset","2",":account_id",":dataset_id","list"],"host":["subdomain","kissflow","com"],"query":[{"description":{"content":"<p>This is the search filter string, and is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"},{"description":{"content":"<p>This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1.</p>\n","type":"text/plain"},"key":"page_number","value":"<integer>"},{"description":{"content":"<p>The number of items that can be listed in a page result and is an optional parameter. Default value is 10.</p>\n","type":"text/plain"},"key":"page_size","value":"<integer>"},{"description":{"content":"<p>This is the search filter string based on specific field and is an optional parameter.</p>\n","type":"text/plain"},"key":"search_field","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset. You can find the dataset ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset</code>, <code>Bank_Dataset</code> will be the dataset ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"}]}},"response":[{"id":"31992d00-da31-4727-9bd7-f8431cfd9e26","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/list?q=<string>&page_number=<integer>&page_size=<integer>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","list"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Filter\": {},\n  \"Table_TableName\": [\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        },\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        }\n      ]\n    },\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        },\n        {\n          \"Name\": \"<string>\",\n          \"_id\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"TotalPrice\": \"<string>\",\n          \"RequestedBy\": {\n            \"_id\": \"<string>\",\n            \"Name\": \"<string>\"\n          }\n        }\n      ]\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\",\n      \"Name\": \"<string>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"IsSystemField\": \"<boolean>\",\n      \"Name\": \"<string>\"\n    }\n  ]\n}"},{"id":"f2f521dd-4413-4682-aa73-220207c1fd36","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/list?q=<string>&page_number=<integer>&page_size=<integer>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","list"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"c28e3fc2-9380-46ee-aebd-2f1ec92d4bd5","name":"403 Forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/list?q=<string>&page_number=<integer>&page_size=<integer>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","list"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"e2ce5596-1adf-477e-b998-e880a9f1ca77","name":"404 Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/list?q=<string>&page_number=<integer>&page_size=<integer>&search_field=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","list"],"query":[{"key":"q","value":"<string>","description":"This is the search filter string, and is an optional parameter."},{"key":"page_number","value":"<integer>","description":"This is the specific page number of an item list and is an optional parameter. The page number can be specified as 1, 2, 3, etc. Default value is 1."},{"key":"page_size","value":"<integer>","description":"The number of items that can be listed in a page result and is an optional parameter. Default value is 10."},{"key":"search_field","value":"<string>","description":"This is the search filter string based on specific field and is an optional parameter."}],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"}],"_postman_id":"ea70405f-410c-4882-bd61-18280da57900"},{"name":"Bulk update dataset records","id":"4821c31b-ab7a-4a28-be38-414189ce9782","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"Data","value":"[Object]","type":"text","description":"<p>Add records to the body payload.</p>\n"}]},"url":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/batch","description":"<p>This endpoint allows you to create or update up to 500 dataset records per request. It uses the <code>_id</code> field to determine the action: providing an existing <code>_id</code> updates the current record, while providing a new <code>_id</code> creates a new one.</p>\n","urlObject":{"protocol":"https","path":["dataset","2",":account_id",":dataset_id","batch"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset. You can find the dataset ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset</code>, <code>Bank_Dataset</code> will be the dataset ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"}]}},"response":[{"id":"37e9f7ff-164c-4b6c-b142-7431cbfd3f49","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"[object Object]","type":"text"},{"key":"1","value":"[object Object]","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/batch","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"Name\": \"<string>\",\n    \"_id\": \"<string>\",\n    \"PONumber\": \"<string>\",\n    \"TotalPrice\": \"<string>\",\n    \"RequestedBy\": {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  },\n  {\n    \"Name\": \"<string>\",\n    \"_id\": \"<string>\",\n    \"PONumber\": \"<string>\",\n    \"TotalPrice\": \"<string>\",\n    \"RequestedBy\": {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  }\n]"},{"id":"1ceff410-71d1-438a-9421-af5e9c90ec95","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"[object Object]","type":"text"},{"key":"1","value":"[object Object]","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/batch","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"062db9a8-b1a4-4fa4-b43a-83ae5bd75409","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"[object Object]","type":"text"},{"key":"1","value":"[object Object]","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/batch","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"3e8b368a-66ea-47a1-a277-5100c4f8af23","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"[object Object]","type":"text"},{"key":"1","value":"[object Object]","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/batch","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"}],"_postman_id":"4821c31b-ab7a-4a28-be38-414189ce9782"},{"name":"Bulk update records of a dataset view","id":"91b1a0a4-c36f-49c9-9d79-2f331ab60158","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"Add record","value":"Record","type":"text","description":"<p>Add a dataform record in the body payload.</p>\n"}]},"url":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/view/:view_id/batch","description":"<p>This endpoint lets you bulk create/update up to <strong>500 fields and values</strong> of a specified dataset view.</p>\n","urlObject":{"protocol":"https","path":["dataset","2",":account_id",":dataset_id","view",":view_id","batch"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset. You can find the dataset ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset</code>, <code>Bank_Dataset</code> will be the dataset ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset view. You can find the dataset view ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset/view/Bank_statements</code>, <code>Bank_statements</code> will be the dataset view ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"view_id"}]}},"response":[{"id":"193eccbf-2579-4d1e-a3d4-7e21029d171c","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"[object Object]","type":"text"},{"key":"1","value":"[object Object]","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/view/:view_id/batch","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","view",":view_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"view_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"Name\": \"<string>\",\n    \"_id\": \"<string>\",\n    \"PONumber\": \"<string>\",\n    \"TotalPrice\": \"<string>\",\n    \"RequestedBy\": {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  },\n  {\n    \"Name\": \"<string>\",\n    \"_id\": \"<string>\",\n    \"PONumber\": \"<string>\",\n    \"TotalPrice\": \"<string>\",\n    \"RequestedBy\": {\n      \"_id\": \"<string>\",\n      \"Name\": \"<string>\"\n    }\n  }\n]"},{"id":"3934dced-10f5-4811-bd19-41785abcbc7b","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"[object Object]","type":"text"},{"key":"1","value":"[object Object]","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/view/:view_id/batch","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","view",":view_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"view_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"c5d66f87-ce91-467e-b5a2-97a6387c78ea","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"[object Object]","type":"text"},{"key":"1","value":"[object Object]","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/view/:view_id/batch","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","view",":view_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"view_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"797b1c11-4a38-40d4-b068-3da399fc075d","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"[object Object]","type":"text"},{"key":"1","value":"[object Object]","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/view/:view_id/batch","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id","view",":view_id","batch"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"view_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"}],"_postman_id":"91b1a0a4-c36f-49c9-9d79-2f331ab60158"},{"name":"Add an attachment","id":"0e615288-049e-4a27-9060-0ebdb2e51ab8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":" <string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"Attachment","type":"file","description":"<p>Attach sample file in the body payload.</p>\n","src":"sXoDQG4Iz/Sample file.txt"}]},"url":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/:row_id/:field_id/attachment","description":"<p>Uploads a file to a specific field of a dataset row.</p>\n","urlObject":{"protocol":"https","path":["dataset","2",":account_id",":dataset_id",":row_id",":field_id","attachment"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset. You can find the dataset ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset</code>, <code>Bank_Dataset</code> will be the dataset ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"},{"description":{"content":"<p>(Required) The unique identifier for each row in a dataset.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The Field ID is a unique identifier for each field, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"b1d4173f-8aa2-4134-acb1-108109e2e4e1","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"<","type":"text"},{"key":"1","value":"b","type":"text"},{"key":"2","value":"i","type":"text"},{"key":"3","value":"n","type":"text"},{"key":"4","value":"a","type":"text"},{"key":"5","value":"r","type":"text"},{"key":"6","value":"y","type":"text"},{"key":"7","value":">","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": [\n    {\n      \"Name\": \"<string>\",\n      \"_id\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"TotalPrice\": \"<string>\",\n      \"_modified_by\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"RequestedBy\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\"\n    },\n    {\n      \"Name\": \"<string>\",\n      \"_id\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"TotalPrice\": \"<string>\",\n      \"_modified_by\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"RequestedBy\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\"\n    }\n  ]\n}"},{"id":"df48d4a3-31b6-4980-a4fc-280301108b5a","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"<","type":"text"},{"key":"1","value":"b","type":"text"},{"key":"2","value":"i","type":"text"},{"key":"3","value":"n","type":"text"},{"key":"4","value":"a","type":"text"},{"key":"5","value":"r","type":"text"},{"key":"6","value":"y","type":"text"},{"key":"7","value":">","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"8215a850-eb91-406d-81bf-60c40472bd46","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"<","type":"text"},{"key":"1","value":"b","type":"text"},{"key":"2","value":"i","type":"text"},{"key":"3","value":"n","type":"text"},{"key":"4","value":"a","type":"text"},{"key":"5","value":"r","type":"text"},{"key":"6","value":"y","type":"text"},{"key":"7","value":">","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"f81b35ad-77b8-473a-a894-1599f9ec7d03","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"<","type":"text"},{"key":"1","value":"b","type":"text"},{"key":"2","value":"i","type":"text"},{"key":"3","value":"n","type":"text"},{"key":"4","value":"a","type":"text"},{"key":"5","value":"r","type":"text"},{"key":"6","value":"y","type":"text"},{"key":"7","value":">","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"}],"_postman_id":"0e615288-049e-4a27-9060-0ebdb2e51ab8"},{"name":"Add image file","id":"1853d8f0-6358-440d-92d5-f23a95ed03e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key ID</a></p>\n","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"<p>(Required) <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#access-keys\">Access key secret</a></p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"Add image","type":"file","description":"<p>Add image in the body payload.</p>\n","value":null}]},"url":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/:row_id/:field_id/image","description":"<p>Uploads an image file to a specific field of a dataset row.</p>\n","urlObject":{"protocol":"https","path":["dataset","2",":account_id",":dataset_id",":row_id",":field_id","image"],"host":["subdomain","kissflow","com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Kissflow Account ID. Learn how to retrieve an <a href=\"https://community.kissflow.com/t/35h4az8/api-authentication#account-id\">Account ID</a> from Kissflow.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) The unique identifier for each dataset. You can find the dataset ID from the web URL. For instance, in the URL, <code>https://thestarkcorporation.kissflow.com/view/dataset/Bank_Dataset</code>, <code>Bank_Dataset</code> will be the dataset ID. Contact customer support if you need further assistance.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"},{"description":{"content":"<p>(Required) The row ID is a unique identifier for each row, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) The field ID is a unique identifier for each field, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"4ddb1620-a22c-4170-9d0e-810cd6e127ef","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"<","type":"text"},{"key":"1","value":"b","type":"text"},{"key":"2","value":"i","type":"text"},{"key":"3","value":"n","type":"text"},{"key":"4","value":"a","type":"text"},{"key":"5","value":"r","type":"text"},{"key":"6","value":"y","type":"text"},{"key":"7","value":">","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": [\n    {\n      \"Name\": \"<string>\",\n      \"_id\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"TotalPrice\": \"<string>\",\n      \"_modified_by\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"RequestedBy\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\"\n    },\n    {\n      \"Name\": \"<string>\",\n      \"_id\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"TotalPrice\": \"<string>\",\n      \"_modified_by\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"RequestedBy\": {\n        \"_id\": \"<string>\",\n        \"Name\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\"\n    }\n  ]\n}"},{"id":"23933c9b-2cfa-40c1-9388-368c63aae04d","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"<","type":"text"},{"key":"1","value":"b","type":"text"},{"key":"2","value":"i","type":"text"},{"key":"3","value":"n","type":"text"},{"key":"4","value":"a","type":"text"},{"key":"5","value":"r","type":"text"},{"key":"6","value":"y","type":"text"},{"key":"7","value":">","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"a2821e9d-84f5-4f15-b69d-11e58c622506","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"<","type":"text"},{"key":"1","value":"b","type":"text"},{"key":"2","value":"i","type":"text"},{"key":"3","value":"n","type":"text"},{"key":"4","value":"a","type":"text"},{"key":"5","value":"r","type":"text"},{"key":"6","value":"y","type":"text"},{"key":"7","value":">","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"},{"id":"343cde38-d7ae-4a66-80cd-3e709e6598fb","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"},{"key":"X-Access-Key-Id","value":"<string>","description":"(Required) [Access key ID](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"},{"key":"X-Access-Key-Secret","value":"<string>","description":"(Required) [Access key secret](https://community.kissflow.com/t/35h4az8/api-authentication#access-keys)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"0","value":"<","type":"text"},{"key":"1","value":"b","type":"text"},{"key":"2","value":"i","type":"text"},{"key":"3","value":"n","type":"text"},{"key":"4","value":"a","type":"text"},{"key":"5","value":"r","type":"text"},{"key":"6","value":"y","type":"text"},{"key":"7","value":">","type":"text"}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/2/:account_id/:dataset_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["dataset","2",":account_id",":dataset_id",":row_id",":field_id","image"],"variable":[{"key":"account_id","value":""},{"key":"dataset_id","value":""},{"key":"row_id","value":""},{"key":"field_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"<string>\",\n  \"error_code\": \"<string>\",\n  \"en_message\": \"<string>\",\n  \"args\": {},\n  \"message\": \"<string>\"\n}"}],"_postman_id":"1853d8f0-6358-440d-92d5-f23a95ed03e1"}],"id":"45b6c936-1695-4759-98ba-319c27223978","description":"<p><strong>Dataset and dataset views</strong></p>\n<ul>\n<li><p><strong>Dataset:</strong> A dataset in Kissflow is a structured collection of data, often imported from external sources or generated within the system.</p>\n</li>\n<li><p><strong>Dataset Views:</strong> Dataset Views allow you to create customized perspectives on your underlying dataset. You can apply filters, sorting, and calculations to present specific subsets of data or derive new insights. This flexibility empowers users to tailor data presentation for different audiences or use cases without modifying the original dataset.</p>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"100385ae-83bb-4d85-a019-c334520b7d79","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"724a477b-a7f3-4bef-81aa-1358a474d802","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"45b6c936-1695-4759-98ba-319c27223978"}],"event":[{"listen":"prerequest","script":{"id":"e6403a9f-e11e-4520-92dc-2c3b018fad1c","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"9eb3d7b8-72b9-4740-8e2a-d0e1c2bd8d36","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"Access key ID","value":"X-Access-Key-Id"},{"key":"baseUrl","value":"https://subdomain.kissflow.com"},{"key":"subdomain","value":"subdomain","type":"string"}]}