{"info":{"_postman_id":"9d3cfe2e-d7f2-49c2-8997-d965cbe58bb2","name":"KISSFLOW LEGACY APIs (v 3.0)","description":"<html><head></head><body><h1 id=\"getting-started-with-kissflow-apis\">Getting started with Kissflow APIs</h1>\n<p>Kissflow legacy APIs (v. 3.0) enable you to remotely manage (create, read, update, and delete) various components within the Kissflow platform, including users, groups, processes, projects, datasets, and more.</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.</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/channel/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, a limit of 400 API calls per minute can be made. </p>\n</blockquote>\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>API key (X-Api-Key) is required to access Kissflow's protected resources. You can <a href=\"https://docs.kissflow.com/article/63jo7jam5x-api-keys\">follow these instructions</a> to create an <strong>API key</strong> in your Kissflow account.</p>\n<p><strong>Note</strong>:</p>\n<ul>\n<li><p>API key is generated at the individual user level, not for the entire account.</p>\n</li>\n<li><p>Users can create multiple API keys within a single account.</p>\n</li>\n<li><p>To ensure security, users should delete unused API keys.</p>\n</li>\n<li><p>API 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.</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":"9d3cfe2e-d7f2-49c2-8997-d965cbe58bb2","publishedId":"2sAY4vgMuJ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"4AA147"},"publishDate":"2024-12-06T12:52:58.000Z"},"item":[{"name":"SETTINGS","item":[{"name":"My Items and My Tasks","item":[{"name":"Get status of created process items","id":"4afb6748-537c-4a06-a1ed-c6a5bf697a8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/search/1/:account_id/global/myitems/:status/p1/:page_size","description":"<p>This endpoint lets you retrieve a list of process items created by you on a defined page size.</p>\n","urlObject":{"path":["search","1",":account_id","global","myitems",":status","p1",":page_size"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"669654e3-64f2-487e-bf1d-a705b436010d","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"41eb3e17-4758-4c86-a92f-48aadd489352","description":{"content":"<p>(Required) Current &lt;<a>glossary:Status</a>&gt; of an item in a process. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"status"},{"id":"5ffa1424-a320-41a0-9a1d-35de937274f6","description":{"content":"<p>(Required) The number of items that can be listed in a page. It can be 10, 25, 50, 100, etc. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"page_size"}]}},"response":[{"id":"27a825f6-3869-407f-abf3-427b4727265c","name":"This request successfully retrieves a list of all your intiated, in progress, withdrawn, rejected, or completed flow items.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/search/1/:account_id/global/myitems/:status/p1/:page_size","host":["https://subdomain.kissflow.com"],"path":["search","1",":account_id","global","myitems",":status","p1",":page_size"],"variable":[{"key":"account_id"},{"key":"status"},{"key":"page_size"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Created at\": \"<dateTime>\",\n  \"Flow Id\": \"<string>\",\n  \"Flow Name\": \"<string>\",\n  \"Item Title\": \"<string>\",\n  \"_activity_id\": \"<string>\",\n  \"_activity_instance_id\": \"<string>\"\n}"},{"id":"f2cec76d-dd78-460f-96cf-e22176674809","name":"The status of your items could not be retrieved due to insufficient permission.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/search/1/:account_id/global/myitems/:status/p1/:page_size","host":["https://subdomain.kissflow.com"],"path":["search","1",":account_id","global","myitems",":status","p1",":page_size"],"variable":[{"key":"account_id"},{"key":"status"},{"key":"page_size"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"4afb6748-537c-4a06-a1ed-c6a5bf697a8c"},{"name":"Get current items assigned to you","id":"427dd28a-a416-43af-9751-cdab1d4ba780","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/search/1/:account_id/global/pendingitems/p1/:page_size","description":"<p>This endpoint lets you retrieve a list of process items currently assigned to you.</p>\n","urlObject":{"path":["search","1",":account_id","global","pendingitems","p1",":page_size"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"f669109c-2736-498a-8ac3-cd81d2f09299","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"e69dd733-2eb9-44d4-8171-c86bc3724279","description":{"content":"<p>(Required) The number of items that can be listed in a page. It can be 10, 25, 50, 100, etc. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"page_size"}]}},"response":[{"id":"e2b9467f-8b5a-4428-a023-4f25adcc0aa0","name":"This request successfully retrieves a list of items that are assigned to you for approval.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/search/1/:account_id/global/pendingitems/p1/:page_size","host":["https://subdomain.kissflow.com"],"path":["search","1",":account_id","global","pendingitems","p1",":page_size"],"variable":[{"key":"account_id"},{"key":"page_size"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Created at\": \"<dateTime>\",\n  \"Due Date\": \"<dateTime>\",\n  \"Flow Id\": \"<string>\",\n  \"Flow Name\": \"<string>\",\n  \"Item Title\": \"<string>\",\n  \"Step Name\": \"<string>\",\n  \"_activity_id\": \"<string>\",\n  \"_activity_instance_id\": \"<string>\",\n  \"_created_by\": {},\n  \"_status\": \"<string>\"\n}"},{"id":"01735aef-2097-493d-9d72-9bac1a13d31e","name":"The status of your tasks could not be retrieved due to insufficient permission.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/search/1/:account_id/global/pendingitems/p1/:page_size","host":["https://subdomain.kissflow.com"],"path":["search","1",":account_id","global","pendingitems","p1",":page_size"],"variable":[{"key":"account_id"},{"key":"page_size"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"427dd28a-a416-43af-9751-cdab1d4ba780"}],"id":"95788368-cb2e-41ff-9d73-fb00627c68ad","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"c7603505-28a8-4193-b593-a4019f2dbd1f","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"946b58b8-f76f-4adb-8d59-e35ad7ff5d56","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"95788368-cb2e-41ff-9d73-fb00627c68ad","description":""},{"name":"User","item":[{"name":"Create a new user","id":"6bfa66c2-be15-4052-9f99-c50753fa0c64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"FirstName\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"LastName\": \"<string>\",\n  \"Manager\": {\n    \"Kind\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"NickName\": \"<string>\",\n  \"Phone\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/user/1/:account_id/","description":"<p>This endpoint lets you create a new user in Kissflow.</p>\n","urlObject":{"path":["user","1",":account_id",""],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"37bdd6b1-b83a-4da5-924f-f3f97ad2b584","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"}]}},"response":[{"id":"0de9a7da-7648-476d-a8c3-31ac7ed555f2","name":"This request creates a new user in Kissflow.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"FirstName\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"LastName\": \"<string>\",\n  \"Manager\": {\n    \"Kind\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"NickName\": \"<string>\",\n  \"Phone\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/1/:account_id/","host":["https://subdomain.kissflow.com"],"path":["user","1",":account_id",""],"variable":[{"key":"account_id"}]}},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Accessibility\": \"<string>\",\n  \"AppConfig\": {\n    \"ProfileBasePath\": \"<string>\",\n    \"UploadHost\": \"<string>\"\n  },\n  \"DelegatedTo\": {\n    \"Kind\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"DelegationEndDate\": \"<date>\",\n  \"DelegationStartDate\": \"<date>\",\n  \"Designation\": \"<string>\",\n  \"FirstName\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"Kind\": \"<string>\",\n  \"Language\": \"<string>\",\n  \"LastName\": \"<string>\",\n  \"Manager\": {\n    \"Kind\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"Name\": \"<string>\",\n  \"NickName\": \"<string>\",\n  \"Phone\": \"<string>\",\n  \"ProfilePicture\": \"<string>\",\n  \"Signature\": \"<string>\",\n  \"Status\": \"<string>\",\n  \"TimeZone\": {},\n  \"UserSystemType\": \"<integer>\",\n  \"UserType\": \"<string>\",\n  \"_created_at\": \"<dateTime>\",\n  \"_created_by\": {\n    \"FirstName\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": false\n      },\n      {\n        \"_id\": -58175554.30698565\n      }\n    ],\n    \"Kind\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"Status\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"UserType\": \"<string>\"\n  },\n  \"_modified_at\": \"<dateTime>\",\n  \"_modified_by\": {\n    \"FirstName\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": -3832481\n      },\n      {\n        \"_id\": \"amet culpa est\"\n      }\n    ],\n    \"Kind\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"Status\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"UserType\": \"<string>\"\n  }\n}"},{"id":"00310d48-62a2-4146-9882-95286f87e00f","name":"The request to create a new user could not be processed due to a malformed request syntax. Check if you've entered the first name, phone number, and email in the body parameters fields.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"FirstName\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"LastName\": \"<string>\",\n  \"Manager\": {\n    \"Kind\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"NickName\": \"<string>\",\n  \"Phone\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/1/:account_id/","host":["https://subdomain.kissflow.com"],"path":["user","1",":account_id",""],"variable":[{"key":"account_id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"8ca63216-470a-4d5a-b6d6-18a186e4418a","name":"The request could not be processed as the user is already a part of the account or you don't have sufficient permission to perform this action.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"<email>\",\n  \"FirstName\": \"<string>\",\n  \"Groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"LastName\": \"<string>\",\n  \"Manager\": {\n    \"Kind\": \"<string>\",\n    \"Name\": \"<string>\"\n  },\n  \"NickName\": \"<string>\",\n  \"Phone\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/1/:account_id/","host":["https://subdomain.kissflow.com"],"path":["user","1",":account_id",""],"variable":[{"key":"account_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"6bfa66c2-be15-4052-9f99-c50753fa0c64"},{"name":"Activate a new user","id":"18a3686c-66e2-4290-978d-0351ae91fb80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/user/1/:account_id/activate","description":"<p>This endpoint lets you activate a user in Kissflow.</p>\n","urlObject":{"path":["user","1",":account_id","activate"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"d29e9661-b5a4-4454-9510-0edae1fb54a7","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"}]}},"response":[{"id":"06accbfe-9e96-4e9b-93fe-9e0bbe21cf21","name":"This request retrieves a list of activated users in Kissflow.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/1/:account_id/activate","host":["https://subdomain.kissflow.com"],"path":["user","1",":account_id","activate"],"variable":[{"key":"account_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"Name\": \"<string>\"\n  },\n  {\n    \"Name\": \"<string>\"\n  }\n]"},{"id":"c39399e0-3627-43e4-9ff0-41aedc47ad3f","name":"Permission issues","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/1/:account_id/activate","host":["https://subdomain.kissflow.com"],"path":["user","1",":account_id","activate"],"variable":[{"key":"account_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"18a3686c-66e2-4290-978d-0351ae91fb80"},{"name":"Bulk user actions","id":"0b234d3c-9c6a-4a15-9b07-1f2bce8e6ed2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"[\n  {\n    \"Name\": \"<string>\"\n  },\n  {\n    \"Name\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/user/1/:account_id/batch","description":"<p>This endpoint lets you perform bulk user actions like name and email change, user permission change, user deletions etc. in Kissflow.</p>\n","urlObject":{"path":["user","1",":account_id","batch"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"473edca9-d188-4e29-8680-a59809a09ee6","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"}]}},"response":[{"id":"239a70ff-6613-4d42-8a3b-0cf91bf99da6","name":"This request performs bulk user actions like user name change, email change, deletion, suspension etc. successfully.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"Name\": \"<string>\"\n  },\n  {\n    \"Name\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/1/:account_id/batch","host":["https://subdomain.kissflow.com"],"path":["user","1",":account_id","batch"],"variable":[{"key":"account_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"Name\": \"<string>\"\n  },\n  {\n    \"Name\": \"<string>\"\n  }\n]"},{"id":"240d3146-3d7d-4812-87b8-e0a3f1bb5ffe","name":"The request to perform bulk user actions could not be processed as you don't have sufficient permission to do so.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"Name\": \"<string>\"\n  },\n  {\n    \"Name\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/1/:account_id/batch","host":["https://subdomain.kissflow.com"],"path":["user","1",":account_id","batch"],"variable":[{"key":"account_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"0b234d3c-9c6a-4a15-9b07-1f2bce8e6ed2"},{"name":"Deactivate user","id":"d0a3e9e3-d91a-416d-8c99-ae75bbcfd5e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/user/1/:account_id/deactivate","description":"<p>This endpoint lets you deactivate users in Kissflow.</p>\n","urlObject":{"path":["user","1",":account_id","deactivate"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"12f0478b-fd3b-4a1e-96fe-9ebfe1169173","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"}]}},"response":[{"id":"9c82b2d9-4b89-43ab-9fe0-842dfeab3eb8","name":"This request retrieves the list of deactivated users in Kissflow.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/1/:account_id/deactivate","host":["https://subdomain.kissflow.com"],"path":["user","1",":account_id","deactivate"],"variable":[{"key":"account_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"Name\": \"<string>\"\n  },\n  {\n    \"Name\": \"<string>\"\n  }\n]"},{"id":"3e8905e3-edbe-4a6a-a73e-ec5eb459b763","name":"Request to perform user deactivation could not be processed as you don't have sufficient permission to do so.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/user/1/:account_id/deactivate","host":["https://subdomain.kissflow.com"],"path":["user","1",":account_id","deactivate"],"variable":[{"key":"account_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"d0a3e9e3-d91a-416d-8c99-ae75bbcfd5e2"},{"name":"Get user list","id":"a4a98f1a-70ad-4204-90d5-79ba2cb20408","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/user/1/:account_id/p<string>/:size?q=<string>&user_type=User Admin","description":"<p>This endpoint lets you retrieve all the users in the Kissflow account.</p>\n","urlObject":{"path":["user","1",":account_id","p<string>",":size"],"host":["https://subdomain.kissflow.com"],"query":[{"description":{"content":"<p>The search filter string. This is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"},{"description":{"content":"<p>&lt;&lt;glossary:User Type&gt;&gt; defines the permission of a specific user in Kissflow.</p>\n","type":"text/plain"},"key":"user_type","value":"User Admin"}],"variable":[{"id":"6d9d3d5b-0a56-48f7-9034-db53a7e4948f","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"0d3aea79-72dd-4ed3-89e0-d4893f1bc82f","description":{"content":"<p>(Required) The number of items that can be listed in a page. It can be 10, 25, 50, 100, etc. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"10","key":"size"}]}},"response":[{"id":"281d10bc-f974-4f19-bb5f-9dc6e189adc3","name":"This request retrieves the list of all users based on the filter set by you.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/user/1/:account_id/p<string>/:size?q=<string>&user_type=User Admin","host":["https://subdomain.kissflow.com"],"path":["user","1",":account_id","p<string>",":size"],"query":[{"description":"The search filter string. This is an optional parameter.","key":"q","value":"<string>"},{"description":"<<glossary:User Type>> defines the permission of a specific user in Kissflow.","key":"user_type","value":"User Admin"}],"variable":[{"key":"account_id"},{"key":"size"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"FirstName\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": 58742694\n      },\n      {\n        \"_id\": \"adipisicing\"\n      }\n    ],\n    \"Kind\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"Status\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"UserType\": \"<string>\"\n  },\n  {\n    \"FirstName\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": \"enim nulla a\"\n      },\n      {\n        \"_id\": 59023578\n      }\n    ],\n    \"Kind\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"Status\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"UserType\": \"<string>\"\n  }\n]"}],"_postman_id":"a4a98f1a-70ad-4204-90d5-79ba2cb20408"},{"name":"Get user details","id":"fb5ba026-b803-40cd-9f26-968cfebf8105","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/user/1/:account_id/:user_id","description":"<p>This endpoint lets you retrieve the user details of a specific Kissflow user.</p>\n","urlObject":{"path":["user","1",":account_id",":user_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"f3300014-1029-4326-80e8-61370cf5b601","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"eb836bf4-05d6-4530-9f2f-f144878014fc","description":{"content":"<p>(Required) The unique &lt;&lt;glossary:User ID&gt;&gt; of a Kissflow user. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"user_id"}]}},"response":[{"id":"643aaade-08df-4cf4-b444-159f7ead6195","name":"This request retrieves the user details of a particular user.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/user/1/:account_id/:user_id","host":["https://subdomain.kissflow.com"],"path":["user","1",":account_id",":user_id"],"variable":[{"key":"account_id"},{"key":"user_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"FirstName\": \"<string>\",\n  \"Groups\": [\n    {\n      \"_id\": -24542202\n    },\n    {\n      \"_id\": \"dolore laborum qui Duis do\"\n    }\n  ],\n  \"Kind\": \"<string>\",\n  \"LastName\": \"<string>\",\n  \"Name\": \"<string>\",\n  \"NickName\": \"<string>\",\n  \"Phone\": \"<string>\",\n  \"ProfilePicture\": \"<string>\",\n  \"Status\": \"<string>\",\n  \"UserSystemType\": \"<integer>\",\n  \"UserType\": \"<string>\"\n}"}],"_postman_id":"fb5ba026-b803-40cd-9f26-968cfebf8105"}],"id":"5dde8cc6-53d9-4841-a0a5-b05c159804cd","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"b0dbf4cd-0146-4ef1-a40f-ad1a4883a8db","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"80916987-1f90-4d0d-b5a0-7dc9c469c11a","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"5dde8cc6-53d9-4841-a0a5-b05c159804cd","description":""},{"name":"Group","item":[{"name":"Create a new group","id":"b60907fb-a400-404d-ba92-a5ffaa213114","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Groups\": {\n    \"IsDelete\": \"<boolean>\"\n  },\n  \"Users\": {\n    \"IsDelete\": \"<boolean>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/group/1/:account_id/","description":"<p>This endpoint lets you create a new group in Kissflow.</p>\n","urlObject":{"path":["group","1",":account_id",""],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"80d7a351-ecf3-4df6-8b18-bf119800bf3d","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"}]}},"response":[{"id":"8e877d80-17d1-45cc-9239-4b31d70a655f","name":"This request creates a new group in Kissflow.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Groups\": {\n    \"IsDelete\": \"<boolean>\"\n  },\n  \"Users\": {\n    \"IsDelete\": \"<boolean>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/1/:account_id/","host":["https://subdomain.kissflow.com"],"path":["group","1",":account_id",""],"variable":[{"key":"account_id"}]}},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"8a5cacc4-e741-4e13-a57b-c0d4a0524b02","name":"The request to create a new group in Kissflow could not be processed due to a malformed request syntax. Make sure you've added the Name parameter.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Groups\": {\n    \"IsDelete\": \"<boolean>\"\n  },\n  \"Users\": {\n    \"IsDelete\": \"<boolean>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/1/:account_id/","host":["https://subdomain.kissflow.com"],"path":["group","1",":account_id",""],"variable":[{"key":"account_id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"af8390e7-3544-4939-980b-457dadbbb63a","name":"The request to create a new group could not be processed as either the group is already present or you don't have sufficient permission to create one.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\",\n  \"Description\": \"<string>\",\n  \"Groups\": {\n    \"IsDelete\": \"<boolean>\"\n  },\n  \"Users\": {\n    \"IsDelete\": \"<boolean>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/1/:account_id/","host":["https://subdomain.kissflow.com"],"path":["group","1",":account_id",""],"variable":[{"key":"account_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"b60907fb-a400-404d-ba92-a5ffaa213114"},{"name":"List groups by page","id":"8c13d7e8-cfea-4739-9e85-033e5870f080","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/group/1/:account_id/p1/:page_size?q=<string>","description":"<p>This endpoint retrieves the list of groups for a specific filter view.</p>\n","urlObject":{"path":["group","1",":account_id","p1",":page_size"],"host":["https://subdomain.kissflow.com"],"query":[{"description":{"content":"<p>The search filter string. This is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"}],"variable":[{"id":"b517a457-5a3f-4334-bf3d-6019c6a93a76","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"37b59c82-4481-4e95-8110-3730ec447f4f","description":{"content":"<p>(Required) The number of items that can be listed in a page. It can be 10, 25, 50, 100, etc. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"10","key":"page_size"}]}},"response":[{"id":"830852cf-8dd4-4fd6-8ce5-6702911bc207","name":"This request retrieves list of all groups based on a selected pagination view.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/group/1/:account_id/p1/:page_size?q=<string>","host":["https://subdomain.kissflow.com"],"path":["group","1",":account_id","p1",":page_size"],"query":[{"description":"The search filter string. This is an optional parameter.","key":"q","value":"<string>"}],"variable":[{"key":"account_id"},{"key":"page_size"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"GroupCount\": \"<integer>\",\n    \"Name\": \"<string>\",\n    \"SyncFrom\": \"<string>\",\n    \"UserCount\": \"<integer>\"\n  },\n  {\n    \"GroupCount\": \"<integer>\",\n    \"Name\": \"<string>\",\n    \"SyncFrom\": \"<string>\",\n    \"UserCount\": \"<integer>\"\n  }\n]"}],"_postman_id":"8c13d7e8-cfea-4739-9e85-033e5870f080"},{"name":"List groups by page","id":"c32c8348-7477-435e-99dd-35ffd69f0a04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"Sort\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/group/1/:account_id/p1/:page_size?q=<string>","description":"<p>List Of groups For Admin Group management</p>\n","urlObject":{"path":["group","1",":account_id","p1",":page_size"],"host":["https://subdomain.kissflow.com"],"query":[{"description":{"content":"<p>The search filter string. This is an optional parameter.</p>\n","type":"text/plain"},"key":"q","value":"<string>"}],"variable":[{"id":"c91e29e1-759e-4796-b47a-d624852472ff","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"8f913519-2cf6-4a26-8be9-8e20724b2aee","description":{"content":"<p>(Required) The number of items that can be listed in a page. It can be 10, 25, 50, 100, etc. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"10","key":"page_size"}]}},"response":[{"id":"575eafec-0034-4b5b-adf3-f1a076321b9a","name":"List of groups","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Sort\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"DESC\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/group/1/:account_id/p1/:page_size?q=<string>","host":["https://subdomain.kissflow.com"],"path":["group","1",":account_id","p1",":page_size"],"query":[{"description":"The search filter string. This is an optional parameter.","key":"q","value":"<string>"}],"variable":[{"key":"account_id"},{"key":"page_size"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"GroupCount\": \"<integer>\",\n    \"Name\": \"<string>\",\n    \"SyncFrom\": \"<string>\",\n    \"UserCount\": \"<integer>\"\n  },\n  {\n    \"GroupCount\": \"<integer>\",\n    \"Name\": \"<string>\",\n    \"SyncFrom\": \"<string>\",\n    \"UserCount\": \"<integer>\"\n  }\n]"}],"_postman_id":"c32c8348-7477-435e-99dd-35ffd69f0a04"},{"name":"Delete a group","id":"c97bd14d-4674-420d-8f78-a5e505aeb2c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/group/1/:account_id/:group_id","description":"<p>This endpoint lets you delete a group in Kissflow.</p>\n","urlObject":{"path":["group","1",":account_id",":group_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"bfcbf391-a5e3-4798-9b7d-7f1bdacf08c2","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"aa22ff1d-2064-4e7d-b420-af71e7fae039","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Group ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"group_id"}]}},"response":[{"id":"c695ed78-9285-4555-83ca-56ea0f8dc699","name":"This request successfully deletes a group from Kissflow.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/group/1/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","1",":account_id",":group_id"],"variable":[{"key":"account_id"},{"key":"group_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"c97bd14d-4674-420d-8f78-a5e505aeb2c7"},{"name":"Get group details","id":"8cf76617-549e-49f6-8bc5-50b64c9c9f14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/group/1/:account_id/:group_id","description":"<p>This endpoint lets you retrieve the details of individual members of a specific group.</p>\n","urlObject":{"path":["group","1",":account_id",":group_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"f5e92287-1b8e-4a97-ba74-4545fadc6fe0","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"cdeaa5e5-dc27-4a03-84fc-850e8794b9cb","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Group ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"group_id"}]}},"response":[{"id":"6fbab60e-79c1-44ec-b954-76a8b28e1d79","name":"This request successfully retrieves details about individual users of that group.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/group/1/:account_id/:group_id","host":["https://subdomain.kissflow.com"],"path":["group","1",":account_id",":group_id"],"variable":[{"key":"account_id"},{"key":"group_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"GroupCount\": \"<integer>\",\n  \"GroupMembers\": [\n    {\n      \"FirstName\": \"<string>\",\n      \"Groups\": [\n        {\n          \"_id\": -61902755.4980466\n        },\n        {\n          \"_id\": 90630540.58648124\n        }\n      ],\n      \"Kind\": \"<string>\",\n      \"LastName\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"NickName\": \"<string>\",\n      \"Phone\": \"<string>\",\n      \"ProfilePicture\": \"<string>\",\n      \"Status\": \"<string>\",\n      \"UserSystemType\": \"<integer>\",\n      \"UserType\": \"<string>\"\n    },\n    {\n      \"FirstName\": \"<string>\",\n      \"Groups\": [\n        {\n          \"_id\": true\n        },\n        {\n          \"_id\": \"sit adipisicing\"\n        }\n      ],\n      \"Kind\": \"<string>\",\n      \"LastName\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"NickName\": \"<string>\",\n      \"Phone\": \"<string>\",\n      \"ProfilePicture\": \"<string>\",\n      \"Status\": \"<string>\",\n      \"UserSystemType\": \"<integer>\",\n      \"UserType\": \"<string>\"\n    }\n  ],\n  \"Name\": \"<string>\",\n  \"SyncFrom\": \"<string>\",\n  \"UserCount\": \"<integer>\"\n}"}],"_postman_id":"8cf76617-549e-49f6-8bc5-50b64c9c9f14"},{"name":"Get group details by page","id":"9b6cd022-0010-482d-a5cc-50553f9f3049","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/group/1/:account_id/:group_id/members/p1/:page_size?fields=<string>","description":"<p>This endpoint retrieves the user list of a given group for a specific filter view.</p>\n","urlObject":{"path":["group","1",":account_id",":group_id","members","p1",":page_size"],"host":["https://subdomain.kissflow.com"],"query":[{"description":{"content":"<p>Specify the fields that are required in API response. You can specify multiple fields as comma separated values.</p>\n","type":"text/plain"},"key":"fields","value":"<string>"}],"variable":[{"id":"46e7eeaa-bf99-49de-968e-fee52ede8cdc","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"8a7681de-e9ce-4e26-8272-78483dbdbe00","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Group ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"group_id"},{"id":"b91ab313-a0f6-4d34-bfba-1bfbed6568e3","description":{"content":"<p>(Required) The number of items that can be listed in a page. It can be 10, 25, 50, 100, etc. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"10","key":"page_size"}]}},"response":[{"id":"50ef2336-73ad-434b-a44b-790a22fa67d5","name":"This request retrieves details about individual user records of that group based on a selected pagination view.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/group/1/:account_id/:group_id/members/p1/:page_size?fields=<string>","host":["https://subdomain.kissflow.com"],"path":["group","1",":account_id",":group_id","members","p1",":page_size"],"query":[{"description":"Specify the fields that are required in API response. You can specify multiple fields as comma separated values.","key":"fields","value":"<string>"}],"variable":[{"key":"account_id"},{"key":"group_id"},{"key":"page_size"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"FirstName\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": 58742694\n      },\n      {\n        \"_id\": \"adipisicing\"\n      }\n    ],\n    \"Kind\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"Status\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"UserType\": \"<string>\"\n  },\n  {\n    \"FirstName\": \"<string>\",\n    \"Groups\": [\n      {\n        \"_id\": \"enim nulla a\"\n      },\n      {\n        \"_id\": 59023578\n      }\n    ],\n    \"Kind\": \"<string>\",\n    \"LastName\": \"<string>\",\n    \"Name\": \"<string>\",\n    \"NickName\": \"<string>\",\n    \"Phone\": \"<string>\",\n    \"ProfilePicture\": \"<string>\",\n    \"Status\": \"<string>\",\n    \"UserSystemType\": \"<integer>\",\n    \"UserType\": \"<string>\"\n  }\n]"}],"_postman_id":"9b6cd022-0010-482d-a5cc-50553f9f3049"}],"id":"f8a68613-ea36-4cd1-a504-ea3e31c1dfb4","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"5bdb3049-5891-4083-ab03-909a0126fb4a","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"7c0b80db-e973-4029-a60d-dc94fe89f2f7","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"f8a68613-ea36-4cd1-a504-ea3e31c1dfb4","description":""}],"id":"5efe0374-d0ed-445d-99f8-82cef6af82d2","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"5cc77e0b-41c1-47e5-96d3-cc876a9944f0","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"0c58b857-8f54-41b4-8a1b-3c611079c0a9","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"5efe0374-d0ed-445d-99f8-82cef6af82d2","description":""},{"name":"WORKFLOW","item":[{"name":"Processes","item":[{"name":"Get the item list","id":"c2813f8e-ec0f-4a89-a914-b6a70fcb49dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/process/1/:account_id/admin/:process_id/item/p1/:page_size","description":"<p>This endpoint lets you retrieve the list of all items from a Kissflow process. Only Process Admins can call this endpoint.</p>\n","urlObject":{"path":["process","1",":account_id","admin",":process_id","item","p1",":page_size"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"09a80944-3078-4c8d-841d-305f4e5fea46","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"e75bbca7-f4d3-482d-b92e-9536d7683d55","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"id":"94e04f60-5d7a-4944-965e-d1fff7627c3c","description":{"content":"<p>(Required) The number of items that can be listed in a page. It can be 10, 25, 50, or 100. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"page_size"}]}},"response":[{"id":"6f56cdae-739a-4e80-b20f-3c5ad7f3dfa9","name":"This request retrieves the list of all items in your process.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/admin/:process_id/item/p1/:page_size","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id","admin",":process_id","item","p1",":page_size"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"page_size"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    }\n  ],\n  \"Filter\": {},\n  \"Table_TableName\": [\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        },\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        }\n      ]\n    },\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        },\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"7400a6e3-c96e-4454-8ec9-ff5525c2eee3","name":"Get the item list","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/admin/:process_id/item/p1/:page_size","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id","admin",":process_id","item","p1",":page_size"],"variable":[{"key":"account_id","value":"<string>","description":"(Required) Your Kissflow <<glossary:Account ID>>. This is a mandatory parameter."},{"key":"process_id","value":"<string>","description":"(Required) Your Kissflow <<glossary:Process ID>>. This is a mandatory parameter."},{"key":"page_size","value":"<string>","description":"(Required) The number of items that can be listed in a page. It can be 10, 25, 50, or 100. This is a mandatory parameter."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c2813f8e-ec0f-4a89-a914-b6a70fcb49dd"},{"name":"Delete an item in a process","id":"eeefa233-7260-4eca-b640-989287f4f507","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/process/1/:account_id/admin/:process_id/:instance_id","description":"<p>This endpoint lets you delete a specific item from your process. Only Process Admins can call this endpoint.</p>\n","urlObject":{"path":["process","1",":account_id","admin",":process_id",":instance_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) Your unique &lt;&lt;glossary:Instance ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"38d548c0-44f5-4b1b-9de6-02e0f5e3753f","name":"This request retrieves the item details at a specific workflow step in your process.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_current_assigned_to\": [\n    {\n      \"Name\": \"<string>\"\n    },\n    {\n      \"Name\": \"<string>\"\n    }\n  ],\n  \"_current_step\": \"<string>\",\n  \"_progress\": \"<integer>\"\n}"}],"_postman_id":"eeefa233-7260-4eca-b640-989287f4f507"},{"name":"Get item details","id":"ed1daf47-0598-422a-a44c-4f8d0495cabe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/process/1/:account_id/admin/:process_id/:instance_id","description":"<p>This endpoint lets you retrieve the details of a specific item from your Kissflow process. Only Process Admins can call this endpoint.</p>\n","urlObject":{"path":["process","1",":account_id","admin",":process_id",":instance_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) Your unique &lt;&lt;glossary:Instance ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"863f17c2-e5bf-489d-a5db-8c44c7bd949a","name":"This request retrieves the item details at a specific workflow step in your process.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_current_assigned_to\": [\n    {\n      \"Name\": \"<string>\"\n    },\n    {\n      \"Name\": \"<string>\"\n    }\n  ],\n  \"_current_step\": \"<string>\",\n  \"_progress\": \"<integer>\"\n}"}],"_postman_id":"ed1daf47-0598-422a-a44c-4f8d0495cabe"},{"name":"Update item details","id":"c4a68524-e3d1-45d3-98d6-f2f47d42746a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/process/1/:account_id/admin/:process_id/:instance_id","description":"<p>This endpoint helps you update the records of a specific item in your process. Only Process Admins can call this endpoint.</p>\n","urlObject":{"path":["process","1",":account_id","admin",":process_id",":instance_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) Your unique &lt;&lt;glossary:Instance ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"806517cf-8035-47f1-bb0a-240f06f0a4fa","name":"This request retrieves the progress details of a specific item in your process.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/progress","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id","progress"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"steps\": [\n    {\n      \"Type\": \"<string>\"\n    },\n    {\n      \"Type\": \"<string>\"\n    }\n  ]\n}"}],"_postman_id":"c4a68524-e3d1-45d3-98d6-f2f47d42746a"},{"name":"Add attachment to form field as admin","id":"d8a9ef51-6745-45f3-917d-ffe4ff4a20f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/1/:account_id/admin/:process_id/:instance_id/:field_id/attachment","description":"<p>This endpoint lets you upload an attachment file to your process' form field. You can add an attachment in the following file formats - .pdf, .doc, .ppt, .xls, .jpg, .jpeg, .jpe, .png, .gif, or .mp4. Only the Flow Admin can invoke this API.</p>\n","urlObject":{"path":["process","1",":account_id","admin",":process_id",":instance_id",":field_id","attachment"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance ID&gt;&gt; is a unique identifier for an individual item, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field of your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"c586d283-42eb-427f-ae3f-47ba837bd6c5","name":"This request successfully adds a new attachment to your process form field.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"Name\": \"<string>\"\n  },\n  \"TotalPrice\": \"<string>\"\n}"}],"_postman_id":"d8a9ef51-6745-45f3-917d-ffe4ff4a20f1"},{"name":"Add image to form field as admin","id":"cbf9ab66-22d6-4e4b-8cec-5788782d4c3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/1/:account_id/admin/:process_id/:instance_id/:field_id/image","description":"<p>This endpoint lets you upload an image file to your process' form field. You can add an image in the following file formats - .jpg, .jpeg, .jpe, .png, or .gif. Only the Flow Admin can invoke this API.</p>\n","urlObject":{"path":["process","1",":account_id","admin",":process_id",":instance_id",":field_id","image"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance ID&gt;&gt; is a unique identifier for an individual item, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The unique identifier assigned to each field of your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"af57faf4-b5df-4895-91c2-b6a935573979","name":"This request successfully adds a new image file to your process form field.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"Name\": \"<string>\"\n  },\n  \"TotalPrice\": \"<string>\"\n}"}],"_postman_id":"cbf9ab66-22d6-4e4b-8cec-5788782d4c3f"},{"name":"Add attachment to table as admin","id":"6006b442-226e-4c65-893d-101b4612baa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/1/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/attachment","description":"<p>This endpoint lets you upload attachment files to a table in your process form. You can add an attachment in the following file formats - .pdf, .doc, .ppt, .xls, .jpg, .jpeg, .jpe, .png, .gif, or .mp4. Only Flow Admins can invoke this API.</p>\n","urlObject":{"path":["process","1",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","attachment"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance ID&gt;&gt; is a unique identifier for an individual item, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) This is a unique identifier assigned to each table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) This is a unique identifier assigned to each row of a table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) This is a unique identifier assigned to each column of a table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"1b9766f0-8272-4505-ab15-a570a08bb9b5","name":"This request successfully adds new attachments to a table in your process form.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"},{"key":"table_id"},{"key":"row_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"Name\": \"<string>\"\n  },\n  \"TotalPrice\": \"<string>\"\n}"}],"_postman_id":"6006b442-226e-4c65-893d-101b4612baa7"},{"name":"Add image to table as admin","id":"0a9d6df7-f6d0-421e-b397-2a5cf3a31b73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/1/:account_id/admin/:process_id/:instance_id/:table_id/:row_id/:field_id/image","description":"<p>This endpoint lets you upload an image file to a table in your process form. You can add an image in the following file formats - .jpg, .jpeg, .jpe, .png, or .gif. Only Flow Admins can invoke this API.</p>\n","urlObject":{"path":["process","1",":account_id","admin",":process_id",":instance_id",":table_id",":row_id",":field_id","image"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance ID&gt;&gt; is a unique identifier for an individual item, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) This is a unique identifier assigned to each table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"description":{"content":"<p>(Required) This is a unique identifier assigned to each row of a table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"description":{"content":"<p>(Required) This is a unique identifier assigned to each column of a table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"39e3bce5-d37d-4418-b12a-2fe1ff77865a","name":"This request successfully adds a new image to a table in your process form.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"},{"key":"table_id"},{"key":"row_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"Name\": \"<string>\"\n  },\n  \"TotalPrice\": \"<string>\"\n}"}],"_postman_id":"0a9d6df7-f6d0-421e-b397-2a5cf3a31b73"},{"name":"Create a new item request","id":"983167cb-63dd-43ed-b91f-4654ac90913e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/process/1/:account_id/:process_id","description":"<p>This endpoint lets you create a new item request in your process.</p>\n","urlObject":{"path":["process","1",":account_id",":process_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"ffc132ae-77a5-485f-8a6b-21d3f4ef7f38","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"a4bffac9-e862-48a2-a182-8298561e6d00","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"}]}},"response":[{"id":"64a6c044-f693-4dfd-847f-04528ba985ed","name":"This request creates a new item in your process.","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id"],"variable":[{"key":"account_id"},{"key":"process_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"ActivityInstanceId\": \"<string>\",\n  \"InstanceId\": \"<string>\",\n  \"ModelId\": \"<string>\"\n}"}],"_postman_id":"983167cb-63dd-43ed-b91f-4654ac90913e"},{"name":"Get my item list","id":"7fdfe0af-cb21-4bdc-8abb-d96b2ccd60a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/myitems/p<string>/:per_page","description":"<p>This endpoint lets you retrieve all the items that you have initiated and participated in your process.</p>\n","urlObject":{"path":["process","1",":account_id",":process_id","myitems","p<string>",":per_page"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"cac31b1d-253d-42a4-9eec-34456284e7f5","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"be3f48c2-0a79-40c0-a226-f031fbeaa901","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"id":"89769c07-da71-402d-bda7-e7336087cbe4","description":{"content":"<p>(Required) The number of items that can be listed in a page. It can be 10, 25, 50, 100, etc. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"per_page"}]}},"response":[{"id":"bf91590b-19f6-438c-8325-5f9f4faa70d6","name":"This request successfully retrieves all the items that you've initiated in your process.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/myitems/p<string>/:per_page","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id","myitems","p<string>",":per_page"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"per_page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"CardFields\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    }\n  ],\n  \"Data\": [\n    {\n      \"Type\": \"<string>\"\n    },\n    {\n      \"Type\": \"<string>\"\n    }\n  ]\n}"}],"_postman_id":"7fdfe0af-cb21-4bdc-8abb-d96b2ccd60a4"},{"name":"Get my task list","id":"97ab3d4f-4c6f-4f25-b9ce-8c52e231f90c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/pending/p<string>/:per_page","description":"<p>This endpoint lets you retrieve all the items that are awaiting your approval at any specific step in a process.</p>\n","urlObject":{"path":["process","1",":account_id",":process_id","pending","p<string>",":per_page"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"a0d747ff-412c-499b-a1ac-f15d972c4838","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"95ad2c13-7db6-4305-b3b7-2442cf310507","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"id":"59ff6b08-50a2-451f-92f0-d4161da670aa","description":{"content":"<p>(Required) The number of items that can be listed in a page. It can be 10, 25, 50, or 100. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"per_page"}]}},"response":[{"id":"11e1e68c-8861-452c-aedc-dad52a6cd6d9","name":"This request successfully retrieves all the items that are awaiting your approval at any step in your process.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/pending/p<string>/:per_page","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id","pending","p<string>",":per_page"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"per_page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"CardFields\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    }\n  ],\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    }\n  ],\n  \"Data\": [\n    {\n      \"Type\": \"<string>\"\n    },\n    {\n      \"Type\": \"<string>\"\n    }\n  ]\n}"}],"_postman_id":"97ab3d4f-4c6f-4f25-b9ce-8c52e231f90c"},{"name":"Get progress details","id":"7c6f7d65-3a24-4292-9b89-22abf66f1810","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/progress","description":"<p>This endpoint lets you retrieve the progress of a specific item in your process.</p>\n","urlObject":{"path":["process","1",":account_id",":process_id",":instance_id","progress"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"69c03100-bcba-40b2-baf2-2e1b7fc81581","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"a7a8bcf5-af6b-4c5c-95d8-dc12f64b8b92","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"id":"b61cc9fc-bcff-4e5a-bec7-29fdcd82ce3f","description":{"content":"<p>(Required) Your unique &lt;&lt;glossary:Instance ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"}]}},"response":[{"id":"af87e60f-986d-454e-8402-a5b677bd79d6","name":"This request retrieves the progress details of a specific item in your process.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/progress","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id","progress"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"steps\": [\n    {\n      \"Type\": \"<string>\"\n    },\n    {\n      \"Type\": \"<string>\"\n    }\n  ]\n}"}],"_postman_id":"7c6f7d65-3a24-4292-9b89-22abf66f1810"},{"name":"Get item details at workflow step","id":"d1702d84-fb73-4614-b40b-cfa1cea37e06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id","description":"<p>This endpoint lets you retrieve the details of an item at a specific workflow step of your Kissflow process.</p>\n","urlObject":{"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"e179228b-476f-4ab0-94df-e3522c3f5679","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"9debb906-a871-406b-898d-dd8e3386ec8b","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"id":"d70dc440-25fa-4152-81aa-5649be6ad00d","description":{"content":"<p>(Required) Your unique &lt;&lt;glossary:Instance ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"id":"facd94b3-fdc6-45d3-a384-134070df56de","description":{"content":"<p>(Required) Your unique &lt;&lt;glossary:Step Instance ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"}]}},"response":[{"id":"4dbb873c-e3a2-434f-9f20-b9fca303e8bf","name":"This request retrieves the item details at a specific workflow step in your process.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"_current_assigned_to\": [\n    {\n      \"Name\": \"<string>\"\n    },\n    {\n      \"Name\": \"<string>\"\n    }\n  ],\n  \"_current_step\": \"<string>\",\n  \"_progress\": \"<integer>\"\n}"}],"_postman_id":"d1702d84-fb73-4614-b40b-cfa1cea37e06"},{"name":"Reject an item","id":"e2afdad5-8b6f-4e44-95a1-613d0d1b9b0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"Note\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/reject","description":"<p>This endpoint lets you reject a specific item at workflow step in your process.</p>\n","urlObject":{"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id","reject"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"817375a9-4c4f-4cda-a16b-c2a7b0ca86dc","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"4ba26697-fc22-47e9-bb67-92fd112434ac","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"id":"6a8c07b2-8993-4f5a-bdc4-ef37695268ba","description":{"content":"<p>(Required) Your unique &lt;&lt;glossary:Instance ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"id":"9086595a-3771-4b77-81de-9ec6ac3f1436","description":{"content":"<p>(Required) The &lt;&lt;glossary:Step Instance ID&gt;&gt; is the unique identifier for a particular step, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"}]}},"response":[{"id":"cc7eafa3-1a0b-4de7-97b8-3011b398a688","name":"This request rejects an item at a specific process workflow step.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Note\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/reject","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id","reject"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Success\": \"<string>\"\n}"}],"_postman_id":"e2afdad5-8b6f-4e44-95a1-613d0d1b9b0d"},{"name":"Submit an item","id":"96b99bd6-6e86-4023-80b2-12f6ea6d73cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/submit","description":"<p>This endpoint lets you submit a specific item at workflow step in your process.</p>\n","urlObject":{"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id","submit"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"fd4c2c6d-763c-4c65-aada-cdf585b09b82","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"3d891186-ac81-4b15-8e46-0e06ded15804","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Process ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"id":"661f9746-42e4-4b4c-a101-8e9069ad4e9b","description":{"content":"<p>(Required) Your unique &lt;&lt;glossary:Instance ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"id":"3abd1000-8af0-4155-a2c6-1c4bcfff963a","description":{"content":"<p>(Required) The &lt;&lt;glossary:Step Instance ID&gt;&gt; is the unique identifier for a particular step, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"}]}},"response":[{"id":"a84706b7-af5c-4393-ae82-55483af190d2","name":"This request submits an item at a specific process workflow step.","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/submit","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id","submit"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": \"<string>\"\n}"}],"_postman_id":"96b99bd6-6e86-4023-80b2-12f6ea6d73cb"},{"name":"Add attachment to form field","id":"9937155a-36af-4f24-b187-0770c8537f4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment","description":"<p>This endpoint lets you upload an attachment file to your process' form field. You can add an attachment in the following file formats - .pdf, .doc, .ppt, .xls, .jpg, .jpeg, .jpe, .png, .gif, or .mp4.</p>\n","urlObject":{"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"e690a81c-dcac-4fc4-9c55-32b8fb07a205","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"2dac71d1-66fa-4ad0-b936-5193e6a4d106","description":{"content":"<p>(Required) The &lt;&lt;glossary:Process ID&gt;&gt; is a unique identifier for each process, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"id":"62fb5a02-f489-4f9d-a49b-f7fa7acdf4e6","description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance ID&gt;&gt; is a unique identifier for an individual item, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"id":"7188789f-e042-4f74-a77e-b9ccb8d7ec5c","description":{"content":"<p>(Required) The &lt;&lt;glossary:Step Instance ID&gt;&gt; is the unique identifier for a particular step, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"id":"579203da-a68b-4a65-8a51-6b9144b122e5","description":{"content":"<p>(Required) The unique identifier assigned to each field of your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"c748d992-6237-4cb0-9073-110a02f4d28e","name":"This request successfully adds a new attachment to your process form field.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","attachment"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"Name\": \"<string>\"\n  },\n  \"TotalPrice\": \"<string>\"\n}"}],"_postman_id":"9937155a-36af-4f24-b187-0770c8537f4a"},{"name":"Add image to form field","id":"4b7a450c-3a9c-4f7d-a4e2-67abfb0d8f48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","description":"<p>This endpoint lets you upload an image file to your process' form field. You can add an image in the following file formats - .jpg, .jpeg, .jpe, .png, or .gif. Only the Flow Admin can invoke this API.</p>\n","urlObject":{"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"29638758-3fa5-4b6f-b4d4-933f468ff220","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"4178a2a7-f375-41b2-be03-e20f7f1e4bb9","description":{"content":"<p>(Required) The &lt;&lt;glossary:Process ID&gt;&gt; is a unique identifier for each process, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"id":"3496abe0-d1fe-4a53-a0c9-ac416a792313","description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance ID&gt;&gt; is a unique identifier for an individual item, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"id":"70c021ac-7b55-4868-ad92-081c788dd3b1","description":{"content":"<p>(Required) The &lt;&lt;glossary:Step Instance ID&gt;&gt; is the unique identifier for a particular step, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"id":"e51c18b0-45c0-4753-bae5-cbd273025285","description":{"content":"<p>(Required) The unique identifier assigned to each field of your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"659e5386-2f27-4b15-9c5c-128a8cf08cc6","name":"This request successfully adds a new image file to your process form field.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":field_id","image"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"Name\": \"<string>\"\n  },\n  \"TotalPrice\": \"<string>\"\n}"}],"_postman_id":"4b7a450c-3a9c-4f7d-a4e2-67abfb0d8f48"},{"name":"Add attachment to table","id":"33fbea95-cc0c-48c7-bbef-8078f2f1b448","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment","description":"<p>This endpoint lets you upload attachment files to a table in your process form. You can add an attachment in the following file formats - .pdf, .doc, .ppt, .xls, .jpg, .jpeg, .jpe, .png, .gif, or .mp4.</p>\n","urlObject":{"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"c6029ea6-fba1-459a-90b8-3476dfbae091","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"a90f77c2-5829-4190-b366-bb60945eda34","description":{"content":"<p>(Required) The &lt;&lt;glossary:Process ID&gt;&gt; is a unique identifier for each process, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"id":"aed00729-fa05-4d60-88e1-4ceeb3707c93","description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance ID&gt;&gt; is a unique identifier for an individual item, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"id":"5103e9ad-6856-423b-99fd-ee665f1ad5b8","description":{"content":"<p>(Required) The &lt;&lt;glossary:Step Instance ID&gt;&gt; is the unique identifier for a particular step, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"id":"09c85279-fac6-4474-9a1d-86a1506b66ad","description":{"content":"<p>(Required) This is a unique identifier assigned to each table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"id":"65c18644-d3f8-42b1-b2f5-14741b63aed4","description":{"content":"<p>(Required) This is a unique identifier assigned to each row of a table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"id":"d1ee587e-0461-47c6-bf6e-80162c67eabe","description":{"content":"<p>(Required) This is a unique identifier assigned to each column of a table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"d1b7e717-b38d-45e6-bd00-7011b94b2bbb","name":"This request successfully adds new attachments to a table in your process form.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"},{"key":"table_id"},{"key":"row_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"Name\": \"<string>\"\n  },\n  \"TotalPrice\": \"<string>\"\n}"}],"_postman_id":"33fbea95-cc0c-48c7-bbef-8078f2f1b448"},{"name":"Add image to table","id":"a8d12b4a-32ee-4955-b8b5-018bd39c0530","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","description":"<p>This endpoint lets you upload an image file to a table in your process form. You can add an image in the following file formats - .jpg, .jpeg, .jpe, .png, or .gif.</p>\n","urlObject":{"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"ad0ea868-5b5e-46a6-9586-f7c1d4360c52","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"562eff1a-4019-472a-bab4-24ba78859487","description":{"content":"<p>(Required) The &lt;&lt;glossary:Process ID&gt;&gt; is a unique identifier for each process, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"process_id"},{"id":"35865d81-0858-4e3c-9796-b3ac897dd4e8","description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance ID&gt;&gt; is a unique identifier for an individual item, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"id":"d0b3e908-e7d0-41d9-92a0-d9d87a4cac7d","description":{"content":"<p>(Required) Activity instance id</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"activity_instance_id"},{"id":"85f40c6c-68cc-4b1e-8627-32b4fa6dda3f","description":{"content":"<p>(Required) This is a unique identifier assigned to each table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"id":"b97f471e-06e3-4bd8-9e64-dbfe0dde8f7d","description":{"content":"<p>(Required) This is a unique identifier assigned to each row of a table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"id":"a9fdf7a9-7a5e-4589-90c1-b34a7ae11455","description":{"content":"<p>(Required) This is a unique identifier assigned to each column of a table in your process form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"9bfda52b-5320-4dbf-985a-c909de1aa63b","name":"This request successfully adds a new image to a table in your process form.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/process/1/:account_id/:process_id/:instance_id/:activity_instance_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["process","1",":account_id",":process_id",":instance_id",":activity_instance_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id"},{"key":"process_id"},{"key":"instance_id"},{"key":"activity_instance_id"},{"key":"table_id"},{"key":"row_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Name\": \"<string>\",\n  \"PONumber\": \"<string>\",\n  \"RequestedBy\": {\n    \"Name\": \"<string>\"\n  },\n  \"TotalPrice\": \"<string>\"\n}"}],"_postman_id":"a8d12b4a-32ee-4955-b8b5-018bd39c0530"}],"id":"af8a10ef-dfc9-4fdb-921a-45dbe8a87762","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"9188d9b9-0193-44fd-89a9-ee7d3a8f4c4a","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"7f7cc699-10e4-4b19-a9e6-01c26796936a","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"af8a10ef-dfc9-4fdb-921a-45dbe8a87762","description":""},{"name":"Cases","item":[{"name":"Create a new item","id":"c550b7a3-0c11-4194-a349-ba9b99f7b68d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/1/:account_id/:case_id","description":"<p>This endpoint lets you create a new item under the specified Kissflow case.</p>\n","urlObject":{"path":["case","1",":account_id",":case_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"1a5a20b9-21ba-46b5-a17a-84c79691ed8e","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"14e77c0a-0bc7-4eb3-b418-fe56913a3ef4","description":{"content":"<p>(Required) The &lt;&lt;glossary:Case ID&gt;&gt; is the unique identifier for each case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"c39c3994-d151-4e26-9fc6-7e6a4a5528a9","name":"This request creates a new item and adds it to the Not Started step of the case.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id"],"variable":[{"key":"account_id"},{"key":"case_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"},{"id":"4cb4069b-5029-4d56-b83d-fe3806f721bd","name":"The specific case URL could not be found in the server. Check if the account_id or case_id entered is correct.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id"],"variable":[{"key":"account_id"},{"key":"case_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"c550b7a3-0c11-4194-a349-ba9b99f7b68d"},{"name":"Get all items","id":"aa9f1582-15bc-4c75-b9a0-4ee291bfd769","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/","description":"<p>This endpoint retrieves all the items for a given case.</p>\n","urlObject":{"path":["case","1",":account_id",":case_id",""],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"dd71f251-6d7f-4a4c-9eb9-f4bf17f9846d","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"1b419fe8-7c29-42cd-a58f-78c5fa44539c","description":{"content":"<p>(Required) The &lt;&lt;glossary:Case ID&gt;&gt; is the unique identifier for each case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"dce764ff-613c-4ad6-b0ad-b4002523c87b","name":"This request retrieves all the items in the case.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",""],"variable":[{"key":"account_id"},{"key":"case_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    }\n  ],\n  \"Filter\": {},\n  \"Table_TableName\": [\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        },\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        }\n      ]\n    },\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        },\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        }\n      ]\n    }\n  ]\n}"},{"id":"940b4311-f571-4aa4-9d96-0679c60cc44d","name":"The specific case URL could not be found in the server. Check if the account_id or case_id entered is correct.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",""],"variable":[{"key":"account_id"},{"key":"case_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"aa9f1582-15bc-4c75-b9a0-4ee291bfd769"},{"name":"Add items to new resolution","id":"88a1746c-640f-464b-8cf0-0502dddd422f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  },\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/batch/move","description":"<p>This endpoint lets you move your items to a resolution in any step.</p>\n","urlObject":{"path":["case","1",":account_id",":case_id","batch","move"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"54237b4f-b8d9-4a64-bef4-9adef700f637","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"876fff2f-bd8c-4128-97ad-d84675b7851e","description":{"content":"<p>(Required) Your unique Kissflow &lt;&lt;glossary:Case ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"16ce8461-f363-467f-80c2-cc5619154f5e","name":"This request moves items to a different resolution inside the case.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  },\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/batch/move","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id","batch","move"],"variable":[{"key":"account_id"},{"key":"case_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"response\": [\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      },\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      }\n    ]\n  },\n  {\n    \"response\": [\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      },\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      }\n    ]\n  }\n]"},{"id":"2a7cfe3b-07ee-4a47-b197-e789a10d1209","name":"The specific case URL could not be found in the server. Check if the account_id or case_id entered is correct.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  },\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/batch/move","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id","batch","move"],"variable":[{"key":"account_id"},{"key":"case_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"88a1746c-640f-464b-8cf0-0502dddd422f"},{"name":"Change assignee for multiple items","id":"8e99436c-d91d-472e-aa32-bb21d7461fee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"[\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/batch/reassign","description":"<p>This endpoint lets you assign multiple items to a different user in the case.</p>\n","urlObject":{"path":["case","1",":account_id",":case_id","batch","reassign"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"f33555e9-b8ad-477b-9b61-5787c98fb0de","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"27a989b4-2bb3-4dca-95bf-32f891254fd0","description":{"content":"<p>(Required) Your unique Kissflow &lt;&lt;glossary:Case ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"}]}},"response":[{"id":"3baa3da1-fe18-4c64-b004-0c99bbf34fff","name":"This request retrieves the list of items reassigned in a case.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/batch/reassign","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id","batch","reassign"],"variable":[{"key":"account_id"},{"key":"case_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"response\": [\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      },\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      }\n    ]\n  },\n  {\n    \"response\": [\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      },\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      }\n    ]\n  }\n]"},{"id":"413cba71-8bd5-4eec-b84f-e8a028d5e885","name":"The specific case URL could not be found in the server. Check if the account_id or case_id entered is correct.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/batch/reassign","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id","batch","reassign"],"variable":[{"key":"account_id"},{"key":"case_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"8e99436c-d91d-472e-aa32-bb21d7461fee"},{"name":"Delete item","id":"8aeac033-d651-4539-88b6-b20267d0eeab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id","description":"<p>This endpoint deletes a particular item in the case.</p>\n","urlObject":{"path":["case","1",":account_id",":case_id",":item_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"7736b095-a011-436e-b376-1ca27266a352","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"16c07069-bd34-4e0b-812f-319388e971e4","description":{"content":"<p>(Required) The &lt;&lt;glossary:Case ID&gt;&gt; is the unique identifier for each case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"id":"04f2601d-72e7-47df-9ac2-a17fd54ed4f4","description":{"content":"<p>(Required) The &lt;&lt;glossary:Item ID&gt;&gt; is the unique identifier for each item inside a case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"e60f5472-3e36-467b-b6df-f7760275367e","name":"This request deletes an item in the case.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id"},{"key":"case_id"},{"key":"item_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\"\n}"},{"id":"a0d4c56c-edfe-4752-8714-a7d1524c6671","name":"The specific case URL could not be found in the server. Check if the account_id, case_id or item_id entered is correct.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id"},{"key":"case_id"},{"key":"item_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"8aeac033-d651-4539-88b6-b20267d0eeab"},{"name":"Get field values of an item","id":"b268c263-be30-4986-ae7a-a80ea08f85ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id","description":"<p>This endpoint retrieves field values of an item in the given case.</p>\n","urlObject":{"path":["case","1",":account_id",":case_id",":item_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"6e8252d9-5014-42e9-ab24-6c68d9ad3c79","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"3fad146c-62d5-4e0e-9076-2258169aae91","description":{"content":"<p>(Required) The &lt;&lt;glossary:Case ID&gt;&gt; is the unique identifier for each case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"id":"8a9af393-a856-446e-9cc9-bf9792ddd03a","description":{"content":"<p>(Required) The &lt;&lt;glossary:Item ID&gt;&gt; is the unique identifier for each item inside a case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"3192a72f-5a15-4882-b1f5-567e7589db0b","name":"This request successfully retrieves field values of an item in the given case.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id"},{"key":"case_id"},{"key":"item_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"},{"id":"843643da-d07a-4781-b4f8-fd695abde5c9","name":"The specific case URL could not be found in the server. Check if the account_id, case_id or item_id entered is correct.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id"},{"key":"case_id"},{"key":"item_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"b268c263-be30-4986-ae7a-a80ea08f85ef"},{"name":"Change form field values","id":"77dfe085-b01f-4504-8dfe-0ce779daf1a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id","description":"<p>This endpoint updates field values of an item in the given case.</p>\n","urlObject":{"path":["case","1",":account_id",":case_id",":item_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"ef0ef919-2fb4-4b5e-9ed4-157ca8d8367c","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"db121fde-84bf-4ac9-b131-56b2544a9b55","description":{"content":"<p>(Required) The &lt;&lt;glossary:Case ID&gt;&gt; is the unique identifier for each case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"id":"d15eb4fb-95ee-461f-9a5f-2ca056e22327","description":{"content":"<p>(Required) The &lt;&lt;glossary:Item ID&gt;&gt; is the unique identifier for each item inside a case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"f784ffd9-eacf-425a-9ffa-a11981f1183c","name":"This request updates field values of an item in the given case.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id"},{"key":"case_id"},{"key":"item_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"},{"id":"04830f7b-d3e3-489a-83af-d70acf6e655c","name":"The specific case URL could not be found in the server. Check if the account_id, case_id or item_id entered is correct.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",":item_id"],"variable":[{"key":"account_id"},{"key":"case_id"},{"key":"item_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"77dfe085-b01f-4504-8dfe-0ce779daf1a6"},{"name":"Add attachment to item","id":"fc5a6d5d-0275-4ce7-b8a6-d3a1e095804f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id/:field_id/attachment","description":"<p>This endpoint lets you upload attachment files to a form field of your case item. You can add an attachment in the following file formats - .pdf, .doc, .ppt, .xls, .jpg, .jpeg, .jpe, .png, .gif, or .mp4.</p>\n","urlObject":{"path":["case","1",":account_id",":case_id",":item_id",":field_id","attachment"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"e0d3c949-141e-4ed0-909b-97929ee0e71c","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"e8646b92-cd59-411d-b5a6-ab987361dcbf","description":{"content":"<p>(Required) The &lt;&lt;glossary:Case ID&gt;&gt; is the unique identifier for each case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"id":"2e85504f-0e1f-45cb-a05a-73fd61c9477d","description":{"content":"<p>(Required) The &lt;&lt;glossary:Item ID&gt;&gt; is the unique identifier for each item inside a case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"id":"078cce2e-5cf1-4d50-8957-8f0c3ed85704","description":{"content":"<p>(Required) The unique identifier assigned to each field of your case form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"1feb1dc6-5136-49d0-a424-d600e825b329","name":"This request successfully adds new attachments to your case's form field.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",":item_id",":field_id","attachment"],"variable":[{"key":"account_id"},{"key":"case_id"},{"key":"item_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"}],"_postman_id":"fc5a6d5d-0275-4ce7-b8a6-d3a1e095804f"},{"name":"Add image to item","id":"1ed9a4c1-e7f7-430e-8784-03dd9799dda5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id/:field_id/image","description":"<p>This endpoint lets you upload an image file to a form field of your case item. You can add an image in the following file formats - .jpg, .jpeg, .jpe, .png, or .gif.</p>\n","urlObject":{"path":["case","1",":account_id",":case_id",":item_id",":field_id","image"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"b8d4be0f-4622-44a5-af52-ca01d64782f1","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"57bfabb2-fa5d-4cd0-aa97-6f9074f20885","description":{"content":"<p>(Required) The &lt;&lt;glossary:Case ID&gt;&gt; is the unique identifier for each case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"id":"7bcf3024-49ee-4ea2-921a-9794f3c6cddc","description":{"content":"<p>(Required) The &lt;&lt;glossary:Item ID&gt;&gt; is the unique identifier for each item inside a case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"id":"6043da39-93a0-4493-811c-359cafee18d7","description":{"content":"<p>(Required) The unique identifier assigned to each field of your case form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"ca9abbb5-9025-42c3-8276-518ffd75fd83","name":"This request successfully adds a new image to your case's form field.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",":item_id",":field_id","image"],"variable":[{"key":"account_id"},{"key":"case_id"},{"key":"item_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"}],"_postman_id":"1ed9a4c1-e7f7-430e-8784-03dd9799dda5"},{"name":"Add attachment to table","id":"501b7428-d048-403c-90ce-4b5f6eb1a7da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment","description":"<p>This endpoint lets you upload attachment files to a table inside a case form. You can add an attachment in the following file formats - .pdf, .doc, .ppt, .xls, .jpg, .jpeg, .jpe, .png, .gif, or .mp4.</p>\n","urlObject":{"path":["case","1",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"decdc722-7483-48db-84a9-5ed60b74be19","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"5dcbb1f7-33e8-4b57-9ea6-d122bc7106d3","description":{"content":"<p>(Required) The &lt;&lt;glossary:Case ID&gt;&gt; is the unique identifier for each case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"id":"0f35885f-21b0-4279-a1a4-c5d794b18852","description":{"content":"<p>(Required) The &lt;&lt;glossary:Item ID&gt;&gt; is the unique identifier for each item inside a case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"id":"73f07596-cfee-4a40-a40b-4162bdb30abc","description":{"content":"<p>(Required) This is a unique identifier assigned to each table in your case form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"id":"5e21678a-3de4-4e45-adf1-cd751d899c1c","description":{"content":"<p>(Required) This is a unique identifier assigned to each row of a table in your case form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"id":"5ce19146-5033-4ec6-ac10-3d82f4a2e082","description":{"content":"<p>(Required) This is a unique identifier assigned to each column of a table in your case form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"17499042-cdec-466f-9613-4b0c01b8f546","name":"This request successfully adds new attachments to a table in your case form.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id"},{"key":"case_id"},{"key":"item_id"},{"key":"table_id"},{"key":"row_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"}],"_postman_id":"501b7428-d048-403c-90ce-4b5f6eb1a7da"},{"name":"Add image to table","id":"df859eda-6dc6-41f3-aeed-fb1026e41a79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","description":"<p>This endpoint lets you upload an image file to a table inside your case form. You can add an image in the following file formats - .jpg, .jpeg, .jpe, .png, or .gif.</p>\n","urlObject":{"path":["case","1",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"e1723dc9-89b5-420d-9a98-86cc89cd1266","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"09a58715-d9f7-4ccc-9253-6dbaf359a9d7","description":{"content":"<p>(Required) The &lt;&lt;glossary:Case ID&gt;&gt; is the unique identifier for each project. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"case_id"},{"id":"7c054387-aaea-449f-bb6d-9a3e39e57737","description":{"content":"<p>(Required) The &lt;&lt;glossary:Item ID&gt;&gt; is the unique identifier for each item inside a case. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"id":"1374e324-007e-4844-b27f-cf714497daa1","description":{"content":"<p>(Required) This is a unique identifier assigned to each table in your case form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"id":"19380f22-0849-4d0e-8b72-1b073045d0af","description":{"content":"<p>(Required) This is a unique identifier assigned to each row of a table in your case form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"id":"b9cb6bb6-8c3a-4ef5-a2b0-be1ee297a48c","description":{"content":"<p>(Required) This is a unique identifier assigned to each column of a table in your case form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"7e31a254-9e1c-48ab-a8f2-a58e227228de","name":"This request successfully adds a new image to a table in your case form.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/case/1/:account_id/:case_id/:item_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["case","1",":account_id",":case_id",":item_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id"},{"key":"case_id"},{"key":"item_id"},{"key":"table_id"},{"key":"row_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"}],"_postman_id":"df859eda-6dc6-41f3-aeed-fb1026e41a79"}],"id":"e53db836-3024-4a1d-9dcf-0f56bf5f2b53","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"eefb7206-c2ef-40c4-96d7-7356845c2a74","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"b051328e-8580-4fcb-9995-3e622064c017","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"e53db836-3024-4a1d-9dcf-0f56bf5f2b53","description":""}],"id":"af70fc2f-36e0-4cfa-8e80-cf159d54c940","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"dfcb8f26-af03-4437-b2ba-a27c0658aa85","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"ab9021e4-f30f-4afa-aa5d-85d43220662d","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"af70fc2f-36e0-4cfa-8e80-cf159d54c940","description":""},{"name":"DATA SOURCES","item":[{"name":"Dataset","item":[{"name":"Modify dataset records","id":"ff243ab9-ad23-4228-97ac-51cf33ffcf51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"response\": [\n    {\n      \"Name\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"RequestedBy\": {\n        \"Name\": \"<string>\"\n      },\n      \"TotalPrice\": \"<string>\"\n    },\n    {\n      \"Name\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"RequestedBy\": {\n        \"Name\": \"<string>\"\n      },\n      \"TotalPrice\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/dataset/1/:account_id/:dataset_id/batch","description":"<p>This endpoint lets you update dataset fields and values in bulk.</p>\n","urlObject":{"path":["dataset","1",":account_id",":dataset_id","batch"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"6c47538f-d44f-49a5-8a44-1001de8c02ba","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"42a0580c-8d00-4256-ab81-911af9e7c65e","description":{"content":"<p>(Required) The &lt;&lt;glossary:Dataset ID&gt;&gt; is a unique identifyer for each dataset, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"}]}},"response":[{"id":"9cec8440-3450-4309-a358-01664c5ab074","name":"This request successfully modifies your dataset values.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"response\": [\n    {\n      \"Name\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"RequestedBy\": {\n        \"Name\": \"<string>\"\n      },\n      \"TotalPrice\": \"<string>\"\n    },\n    {\n      \"Name\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"RequestedBy\": {\n        \"Name\": \"<string>\"\n      },\n      \"TotalPrice\": \"<string>\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/dataset/1/:account_id/:dataset_id/batch","host":["https://subdomain.kissflow.com"],"path":["dataset","1",":account_id",":dataset_id","batch"],"variable":[{"key":"account_id"},{"key":"dataset_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": [\n    {\n      \"Name\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"RequestedBy\": {\n        \"Name\": \"<string>\"\n      },\n      \"TotalPrice\": \"<string>\",\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Name\": \"<string>\"\n      }\n    },\n    {\n      \"Name\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"RequestedBy\": {\n        \"Name\": \"<string>\"\n      },\n      \"TotalPrice\": \"<string>\",\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Name\": \"<string>\"\n      }\n    }\n  ]\n}"}],"_postman_id":"ff243ab9-ad23-4228-97ac-51cf33ffcf51"},{"name":"Get dataset records","id":"d1d1de90-1423-431b-937a-89466a1b61fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/dataset/1/:account_id/:dataset_id/p<string>/:per_page?q=<string>","description":"<p>This endpoint lets you retrieve a specific dataset's records, including dataset fields and respective values.</p>\n","urlObject":{"path":["dataset","1",":account_id",":dataset_id","p<string>",":per_page"],"host":["https://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":[{"id":"3bf06170-d56b-402b-a602-c42b14e30c8f","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"e3c6a06b-c571-4867-8266-04509d01d892","description":{"content":"<p>(Required) The &lt;&lt;glossary:Dataset ID&gt;&gt; is a unique identifyer for each dataset, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"},{"id":"cc3bfc9f-685a-43d1-9f89-d69bb810540b","description":{"content":"<p>(Required) The number of items that can be listed in a page. It can be 10, 25, 50, 100, etc. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"per_page"}]}},"response":[{"id":"fd475ee7-f68f-496b-a52c-6b34667019a3","name":"This request successfully retrieves your dataset's fields and values.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/dataset/1/:account_id/:dataset_id/p<string>/:per_page?q=<string>","host":["https://subdomain.kissflow.com"],"path":["dataset","1",":account_id",":dataset_id","p<string>",":per_page"],"query":[{"description":"This is the search filter string, and is an optional parameter.","key":"q","value":"<string>"}],"variable":[{"key":"account_id"},{"key":"dataset_id"},{"key":"per_page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Columns\": [\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"ReadOnly\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"width\": \"<integer>\"\n    }\n  ],\n  \"Filter\": {},\n  \"Table_TableName\": [\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        },\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        }\n      ]\n    },\n    {\n      \"response\": [\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        },\n        {\n          \"Name\": \"<string>\",\n          \"PONumber\": \"<string>\",\n          \"RequestedBy\": {\n            \"Name\": \"<string>\"\n          },\n          \"TotalPrice\": \"<string>\"\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"d1d1de90-1423-431b-937a-89466a1b61fa"},{"name":"Add attachment","id":"2b7bf267-4230-4b2e-8d40-ada88d7e0c77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file to upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/dataset/1/:account_id/:dataset_id/:row_id/:field_id/attachment","description":"<p>This endpoint lets you upload file to an attachment field in row.</p>\n","urlObject":{"path":["dataset","1",":account_id",":dataset_id",":row_id",":field_id","attachment"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"829de049-035c-471d-836c-d27be50d8d45","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"da9d20f8-b608-451c-a77b-9da8b842219d","description":{"content":"<p>(Required) The &lt;&lt;glossary:Dataset ID&gt;&gt; is a unique identifyer for each dataset, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"},{"id":"c7a2e594-505f-41d6-b003-f9cdb8ecace0","description":{"content":"<p>(Required) The &lt;&lt;glossary:Row ID&gt;&gt; is a unique identifyer for each row, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"id":"c1c623fd-98b5-4cfe-9005-3d9312ee3adf","description":{"content":"<p>(Required) The &lt;&lt;glossary:Field ID&gt;&gt; is a unique identifyer for each field, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"a0bd6b02-85d0-4f3a-a0d5-eabead339655","name":"This request successfully adds a new attachment to your dataset field.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/1/:account_id/:dataset_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["dataset","1",":account_id",":dataset_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id"},{"key":"dataset_id"},{"key":"row_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": [\n    {\n      \"Name\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"RequestedBy\": {\n        \"Name\": \"<string>\"\n      },\n      \"TotalPrice\": \"<string>\",\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Name\": \"<string>\"\n      }\n    },\n    {\n      \"Name\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"RequestedBy\": {\n        \"Name\": \"<string>\"\n      },\n      \"TotalPrice\": \"<string>\",\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Name\": \"<string>\"\n      }\n    }\n  ]\n}"}],"_postman_id":"2b7bf267-4230-4b2e-8d40-ada88d7e0c77"},{"name":"Add image file","id":"3d960bfd-ab00-4e1c-aae7-609f1ff18fdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file to upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/dataset/1/:account_id/:dataset_id/:row_id/:field_id/image","description":"<p>This endpoint lets you upload image to field in row.</p>\n","urlObject":{"path":["dataset","1",":account_id",":dataset_id",":row_id",":field_id","image"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"2960273d-593e-4bcd-b449-4b3d395a55c9","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"cde7dbda-28a5-4dba-8e25-04c68809ffb1","description":{"content":"<p>(Required) The &lt;&lt;glossary:Dataset ID&gt;&gt; is a unique identifyer for each dataset, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"dataset_id"},{"id":"690cd48a-9176-423a-99b5-971dbac50a35","description":{"content":"<p>(Required) The &lt;&lt;glossary:Row ID&gt;&gt; is a unique identifyer for each row, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"id":"3c0f63b7-24b2-4786-aa0f-c5353c96b42f","description":{"content":"<p>(Required) The &lt;&lt;glossary:Field ID&gt;&gt; is a unique identifyer for each field, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"973e66c3-b19b-4f8f-8ec2-ec2e2cb536b5","name":"This request successfully adds a new image file to your dataset field.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/dataset/1/:account_id/:dataset_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["dataset","1",":account_id",":dataset_id",":row_id",":field_id","image"],"variable":[{"key":"account_id"},{"key":"dataset_id"},{"key":"row_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": [\n    {\n      \"Name\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"RequestedBy\": {\n        \"Name\": \"<string>\"\n      },\n      \"TotalPrice\": \"<string>\",\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Name\": \"<string>\"\n      }\n    },\n    {\n      \"Name\": \"<string>\",\n      \"PONumber\": \"<string>\",\n      \"RequestedBy\": {\n        \"Name\": \"<string>\"\n      },\n      \"TotalPrice\": \"<string>\",\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Name\": \"<string>\"\n      }\n    }\n  ]\n}"}],"_postman_id":"3d960bfd-ab00-4e1c-aae7-609f1ff18fdc"}],"id":"9f790ee0-98b8-4590-8746-687aeff865d8","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"0bef2a00-05e1-4ca0-900b-d08a2b102d80","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"2e035c52-210b-499a-96fe-a3496fed98e9","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"9f790ee0-98b8-4590-8746-687aeff865d8","description":""}],"id":"8205d152-f8eb-43e9-8ab5-7f183750e36f","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"07a1b96d-a179-48f8-afd9-e7dc0292402f","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"c13194d7-4324-4fb8-89db-a600d64a7276","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"8205d152-f8eb-43e9-8ab5-7f183750e36f","description":""},{"name":"PROJECT","item":[{"name":"Projects","item":[{"name":"Create a new item","id":"dd0600f1-884b-4404-bb66-46cb78b43963","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/project/1/:account_id/:project_id","description":"<p>This endpoint lets you create a new draft item in your Kissflow project.</p>\n","urlObject":{"path":["project","1",":account_id",":project_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"d7eac759-b669-4eb9-b6c2-41dec8b2580f","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"737dd386-a374-483d-a463-0403778e663e","description":{"content":"<p>(Required) Your unique Kissflow &lt;&lt;glossary:Project ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"project_id"}]}},"response":[{"id":"8990414d-7267-4221-833c-c5036aaae49a","name":"This request creates a new item and adds it to the Not Started step of the project.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id"],"variable":[{"key":"account_id"},{"key":"project_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"},{"id":"cd112738-d83a-4bba-8ea4-a26d2f6d318f","name":"The request to create a new project in your account could not be executed. Check if the project_id or account_id entered is correct.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id"],"variable":[{"key":"account_id"},{"key":"project_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"dd0600f1-884b-4404-bb66-46cb78b43963"},{"name":"Add items to new state in any step","id":"e4264b82-d7e6-41ed-aaef-8b41ab032b4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  },\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/batch/move","description":"<p>This endpoint lets you move items to a new state in any step.</p>\n","urlObject":{"path":["project","1",":account_id",":project_id","batch","move"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"69256a68-48fc-484d-af75-54a0d0d74b58","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"38065945-a3b2-429a-a1dd-8f876225a147","description":{"content":"<p>(Required) Your unique Kissflow &lt;&lt;glossary:Project ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"project_id"}]}},"response":[{"id":"4463409d-9905-473e-bd57-dcc26975f1eb","name":"This request successfully moves multiple items to a different state of any step in your project.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  },\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/batch/move","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id","batch","move"],"variable":[{"key":"account_id"},{"key":"project_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"response\": [\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      },\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      }\n    ]\n  },\n  {\n    \"response\": [\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      },\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      }\n    ]\n  }\n]"},{"id":"26ca792e-a231-48b3-bf18-2ade32f6e32d","name":"The request to move items to a new state in any step of your project failed. Check if the project_id or account_id entered is correct.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  },\n  {\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"_stage\": \"<string>\",\n    \"_state\": \"<string>\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/batch/move","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id","batch","move"],"variable":[{"key":"account_id"},{"key":"project_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"e4264b82-d7e6-41ed-aaef-8b41ab032b4a"},{"name":"Change assignee for multiple items","id":"f33d09ed-797f-43d1-863f-8554363a87d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"[\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/batch/reassign","description":"<p>This endpoint lets you assign multiple items to a different user in the project.</p>\n","urlObject":{"path":["project","1",":account_id",":project_id","batch","reassign"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"78897267-5706-45ca-9194-6269dc028a95","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"7913e0b1-dc9b-433b-91bb-40fa865317b1","description":{"content":"<p>(Required) Your unique Kissflow &lt;&lt;glossary:Project ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"project_id"}]}},"response":[{"id":"11830b0f-a721-4387-b9af-bc7c37dabb20","name":"This request successfully changes the assignee of multiple items in your project.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/batch/reassign","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id","batch","reassign"],"variable":[{"key":"account_id"},{"key":"project_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"response\": [\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      },\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      }\n    ]\n  },\n  {\n    \"response\": [\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      },\n      {\n        \"Name\": \"<string>\",\n        \"PONumber\": \"<string>\",\n        \"RequestedBy\": {\n          \"Name\": \"<string>\"\n        },\n        \"TotalPrice\": \"<string>\",\n        \"_modified_at\": \"<dateTime>\",\n        \"_modified_by\": {\n          \"Name\": \"<string>\"\n        }\n      }\n    ]\n  }\n]"},{"id":"2ef85386-2047-476e-823d-9e2bd26408c4","name":"The request to change assignee of your items in your project failed. Check if the project_id or account_id entered is correct.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  {\n    \"AssignedTo\": {\n      \"Id\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"BaseMetadata\": \"<string>\",\n      \"Field_QueryDefinition\": \"<string>\",\n      \"Kind\": \"<string>\",\n      \"Label\": \"<string>\",\n      \"Type\": \"<string>\"\n    },\n    \"_ids\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/batch/reassign","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id","batch","reassign"],"variable":[{"key":"account_id"},{"key":"project_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"f33d09ed-797f-43d1-863f-8554363a87d7"},{"name":"Delete item","id":"b63c13f0-7b71-45b1-b6b7-4b8e69cdd602","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id","description":"<p>This endpoint lets you delete a specific item in your project.</p>\n","urlObject":{"path":["project","1",":account_id",":project_id",":item_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"dcf0b2fe-13bb-44d3-aef1-98b382299016","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"007d3394-e057-459e-a83c-823e9aa3a531","description":{"content":"<p>(Required) Your unique Kissflow &lt;&lt;glossary:Project ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"project_id"},{"id":"8001cfd5-38f0-4801-afb7-01977f1927d0","description":{"content":"<p>(Required) Unique ID generated for your &lt;&lt;glossary:Item ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"cdb4ee68-4f12-4ee6-bea0-4d7831799999","name":"This request successfully deletes a specific item in your project.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id",":item_id"],"variable":[{"key":"account_id"},{"key":"project_id"},{"key":"item_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\"\n}"},{"id":"822b85fb-bb09-435b-ab57-9543e2709ce3","name":"The request to delete a specific item in your project failed. Check if the project_id, item_id, or account_id entered is correct.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id",":item_id"],"variable":[{"key":"account_id"},{"key":"project_id"},{"key":"item_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"b63c13f0-7b71-45b1-b6b7-4b8e69cdd602"},{"name":"Get field values of an item","id":"f761493d-f947-44c9-b1d7-4933ea12f454","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id","description":"<p>This endpoint lets you retrieve all the field values of an item in the given project.</p>\n","urlObject":{"path":["project","1",":account_id",":project_id",":item_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"e46a12b8-14fa-4bf0-8baf-075b5d07636e","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"f1def58a-c8d9-45ce-89e3-a377a7da758d","description":{"content":"<p>(Required) Your unique Kissflow &lt;&lt;glossary:Project ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"project_id"},{"id":"a8bc3340-2a47-47aa-a0c0-15243eb60005","description":{"content":"<p>(Required) Unique ID generated for your item. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"3113e1a6-461e-4843-aaeb-a317d545a6ea","name":"This request retrieves field values of an item in the given project.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id",":item_id"],"variable":[{"key":"account_id"},{"key":"project_id"},{"key":"item_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"},{"id":"6aa70209-2f35-4b2e-95c7-1857e76b921c","name":"The request to retrieve field values of an item in your project failed. Check if the project_id, account_id, or item_id entered is correct.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id",":item_id"],"variable":[{"key":"account_id"},{"key":"project_id"},{"key":"item_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"f761493d-f947-44c9-b1d7-4933ea12f454"},{"name":"Change form field values","id":"ce48468f-18a1-41df-9add-693bf58fa0b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id","description":"<p>This endpoint lets you update field values of an item in the given project.</p>\n","urlObject":{"path":["project","1",":account_id",":project_id",":item_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"0894330b-84d9-42bf-a836-fe381b6fec1a","description":{"content":"<p>(Required) Your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"2c1f7f1c-c699-4200-a770-1e4111b5118e","description":{"content":"<p>(Required) Your unique Kissflow &lt;&lt;glossary:Project ID&gt;&gt;. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"project_id"},{"id":"0ea74e35-b95c-4f18-89f2-557ccd387315","description":{"content":"<p>(Required) Unique ID generated for your item. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"}]}},"response":[{"id":"d00fbd6c-5216-46bd-a232-08a217fee358","name":"This request updates the field values of an item in the given project.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id",":item_id"],"variable":[{"key":"account_id"},{"key":"project_id"},{"key":"item_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"},{"id":"4ce385d1-a9b8-4d43-9315-1161d0cacafc","name":"The request to update the field values of an item in your project failed. Check if the project_id, account_id, or item_id entered is correct.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id",":item_id"],"variable":[{"key":"account_id"},{"key":"project_id"},{"key":"item_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"error_code\": \"<string>\",\n  \"args\": {},\n  \"en_message\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"ce48468f-18a1-41df-9add-693bf58fa0b4"},{"name":"Add attachment to item","id":"a0d1ed96-91b8-42a3-b9a0-55e1f5c91a24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id/:field_id/attachment","description":"<p>This endpoint lets you upload attachment files to a form field of your project item. You can add an attachment in the following file formats - .pdf, .doc, .ppt, .xls, .jpg, .jpeg, .jpe, .png, .gif, or .mp4.</p>\n","urlObject":{"path":["project","1",":account_id",":project_id",":item_id",":field_id","attachment"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"44eaa0a8-9c1e-4108-8dc9-9bdc0ff273d4","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"1a816ba4-7260-424d-b9a3-f4fd214a7c87","description":{"content":"<p>(Required) The &lt;&lt;glossary:Project ID&gt;&gt; is the unique identifier for each project. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"project_id"},{"id":"58efebb8-7939-42be-bf49-5110b29ff722","description":{"content":"<p>(Required) The &lt;&lt;glossary:Item ID&gt;&gt; is the unique identifier for each item inside a project. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"id":"c8576146-9f3f-4a63-921a-d860656ef20b","description":{"content":"<p>(Required) The unique identifier assigned to each field of your project form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"ab292998-9a1d-4a04-b3e5-cd6850372664","name":"This request successfully adds new attachments to your project's form field.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id",":item_id",":field_id","attachment"],"variable":[{"key":"account_id"},{"key":"project_id"},{"key":"item_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"}],"_postman_id":"a0d1ed96-91b8-42a3-b9a0-55e1f5c91a24"},{"name":"Add image to item","id":"042655f3-3324-4063-ae48-8cf8952f1975","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id/:field_id/image","description":"<p>This endpoint lets you upload an image file to a form field of your project item. You can add an image in the following file formats - .jpg, .jpeg, .jpe, .png, or .gif.</p>\n","urlObject":{"path":["project","1",":account_id",":project_id",":item_id",":field_id","image"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"a9d25712-560d-4c76-b5ce-b67584c25dfc","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"252789b6-5c4d-4716-8e88-5c118aca4aeb","description":{"content":"<p>(Required) The &lt;&lt;glossary:Project ID&gt;&gt; is the unique identifier for each project. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"project_id"},{"id":"4b07833a-afca-4ecb-b6e9-f860664057b8","description":{"content":"<p>(Required) The &lt;&lt;Iglossary:tem ID&gt;&gt; is the unique identifier for each item inside a project. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"id":"1597cd7c-ad75-488b-a6b6-954939b22a3d","description":{"content":"<p>(Required) The unique identifier assigned to each field of your project form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"7f6653f9-05be-4dce-8b5c-beb0628a2c07","name":"This request successfully adds a new image to your project's form field.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id",":item_id",":field_id","image"],"variable":[{"key":"account_id"},{"key":"project_id"},{"key":"item_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"}],"_postman_id":"042655f3-3324-4063-ae48-8cf8952f1975"},{"name":"Add attachment to table","id":"559cc500-a65d-496f-b228-4d907106b2a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id/:table_id/:row_id/:field_id/attachment","description":"<p>This endpoint lets you upload attachment files to a table in your project form. You can add an attachment in the following file formats - .pdf, .doc, .ppt, .xls, .jpg, .jpeg, .jpe, .png, .gif, or .mp4.</p>\n","urlObject":{"path":["project","1",":account_id",":project_id",":item_id",":table_id",":row_id",":field_id","attachment"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"11041367-6109-42bf-b854-e8c7cee99bd4","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"99bfb616-7c79-48e2-b3e5-96c91c520225","description":{"content":"<p>(Required) The &lt;&lt;glossary:Project ID&gt;&gt; is the unique identifier for each project. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"project_id"},{"id":"5f538d6d-4e1e-491a-9edf-fbd2c95b5ecd","description":{"content":"<p>(Required) The &lt;&lt;glossary:Item ID&gt;&gt; is the unique identifier for each item in a project. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"id":"db5734dd-bb63-4e69-9d24-437f11e792da","description":{"content":"<p>(Required) This is a unique identifier assigned to each table in your project form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"id":"48658d9c-211b-4f74-8a11-58aac6e16fa0","description":{"content":"<p>(Required) This is a unique identifier assigned to each row of a table in your project form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"id":"1d9f4d0b-bf7b-400a-97f7-03e885533521","description":{"content":"<p>(Required) This is a unique identifier assigned to each column of a table in your project form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"178dc978-1997-420c-a7da-61b21a145410","name":"This request successfully adds new attachments to a table in your project form.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id/:table_id/:row_id/:field_id/attachment","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id",":item_id",":table_id",":row_id",":field_id","attachment"],"variable":[{"key":"account_id"},{"key":"project_id"},{"key":"item_id"},{"key":"table_id"},{"key":"row_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"}],"_postman_id":"559cc500-a65d-496f-b228-4d907106b2a4"},{"name":"Add image to table","id":"a74f19e8-9557-4402-8c89-36566b33b884","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>This is the file that you upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id/:table_id/:row_id/:field_id/image","description":"<p>This endpoint lets you upload an image file to a table in your project form. You can add an image in the following file formats - .jpg, .jpeg, .jpe, .png, or .gif.</p>\n","urlObject":{"path":["project","1",":account_id",":project_id",":item_id",":table_id",":row_id",":field_id","image"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"13881951-4068-40e5-abe0-530158e43569","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"c01f68c9-1629-410d-a97b-73024c77ba95","description":{"content":"<p>(Required) The &lt;&lt;glossary:Project ID&gt;&gt; is the unique identifier for each project. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"project_id"},{"id":"b56f3d4b-fb59-4c43-8d5b-a82621113aad","description":{"content":"<p>(Required) The &lt;&lt;glossary:Item ID&gt;&gt; is the unique identifier for each item inside a project. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"item_id"},{"id":"64c3f8b6-9e89-418e-aa1a-31caf1b7f768","description":{"content":"<p>(Required) This is a unique identifier assigned to each table in your project form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"table_id"},{"id":"b0e23344-a714-475f-aaea-a6c934afd059","description":{"content":"<p>(Required) This is a unique identifier assigned to each row of a table in your project form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"row_id"},{"id":"5e97b2c0-7d23-4ea5-9d67-b8a5d507744a","description":{"content":"<p>(Required) This is a unique identifier assigned to each column of a table in your project form. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"field_id"}]}},"response":[{"id":"6736fa2b-6b71-49f4-a89b-f40f58a23fcc","name":"This request successfully adds a new image to a table in your project form.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"This is the file that you upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/project/1/:account_id/:project_id/:item_id/:table_id/:row_id/:field_id/image","host":["https://subdomain.kissflow.com"],"path":["project","1",":account_id",":project_id",":item_id",":table_id",":row_id",":field_id","image"],"variable":[{"key":"account_id"},{"key":"project_id"},{"key":"item_id"},{"key":"table_id"},{"key":"row_id"},{"key":"field_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"_stage\": \"<string>\",\n  \"_state\": \"<string>\",\n  \"_status\": \"<string>\"\n}"}],"_postman_id":"a74f19e8-9557-4402-8c89-36566b33b884"}],"id":"97ad3e20-fbef-4296-aae9-9e3628de89ce","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"f1472905-2c4c-444e-bd71-71a8a9a2df5b","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"7050f77b-4bf3-4a34-aaba-4ad6446ace9a","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"97ad3e20-fbef-4296-aae9-9e3628de89ce","description":""}],"id":"f2452c1b-c7d5-4882-9644-5012bb5dd76a","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"2ba81862-1084-4d18-a377-6564ade366b9","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"9cabc4ca-7272-4c87-ac96-045208f5d10f","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"f2452c1b-c7d5-4882-9644-5012bb5dd76a","description":""},{"name":"COLLABORATION","item":[{"name":"Channels","item":[{"name":"List all announcements","id":"444097cc-48c1-450e-a3ec-604c89b5338a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/announcement","description":"<p>This endpoint lets you retrieve all the announcements in the specified Kissflow channel.</p>\n","urlObject":{"path":["channel","1",":account_id",":channel_id","announcement"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"062cac45-a990-4e2e-b4cd-71c88b8284a7","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"089770ba-eb54-41f9-860d-18c5e1ad994b","description":{"content":"<p>(Required) This is the unique &lt;&lt;glossary:Channel ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"channel_id"}]}},"response":[{"id":"4ca8c979-9b3e-4164-b7a1-cb371c0889a0","name":"This request successfully retrieves all announcements from the channel.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/announcement","host":["https://subdomain.kissflow.com"],"path":["channel","1",":account_id",":channel_id","announcement"],"variable":[{"key":"account_id"},{"key":"channel_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": [\n    {\n      \"AssignedTo\": {\n        \"Name\": \"<string>\",\n        \"Type\": \"<string>\"\n      },\n      \"Content\": {\n        \"document\": {\n          \"data\": {},\n          \"nodes\": [\n            {\n              \"data\": {},\n              \"isVoid\": \"<boolean>\",\n              \"nodes\": [\n                {\n                  \"leaves\": [\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    },\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    }\n                  ],\n                  \"object\": \"<string>\"\n                },\n                {\n                  \"leaves\": [\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    },\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    }\n                  ],\n                  \"object\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\",\n              \"type\": \"<string>\"\n            },\n            {\n              \"data\": {},\n              \"isVoid\": \"<boolean>\",\n              \"nodes\": [\n                {\n                  \"leaves\": [\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    },\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    }\n                  ],\n                  \"object\": \"<string>\"\n                },\n                {\n                  \"leaves\": [\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    },\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    }\n                  ],\n                  \"object\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\",\n              \"type\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\"\n        },\n        \"object\": \"<string>\"\n      },\n      \"IsComment\": \"<boolean>\",\n      \"IsPinned\": \"<boolean>\",\n      \"Name\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {\n        \"Name\": \"<string>\",\n        \"Type\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Name\": \"<string>\",\n        \"Type\": \"<string>\"\n      }\n    },\n    {\n      \"AssignedTo\": {\n        \"Name\": \"<string>\",\n        \"Type\": \"<string>\"\n      },\n      \"Content\": {\n        \"document\": {\n          \"data\": {},\n          \"nodes\": [\n            {\n              \"data\": {},\n              \"isVoid\": \"<boolean>\",\n              \"nodes\": [\n                {\n                  \"leaves\": [\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    },\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    }\n                  ],\n                  \"object\": \"<string>\"\n                },\n                {\n                  \"leaves\": [\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    },\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    }\n                  ],\n                  \"object\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\",\n              \"type\": \"<string>\"\n            },\n            {\n              \"data\": {},\n              \"isVoid\": \"<boolean>\",\n              \"nodes\": [\n                {\n                  \"leaves\": [\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    },\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    }\n                  ],\n                  \"object\": \"<string>\"\n                },\n                {\n                  \"leaves\": [\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    },\n                    {\n                      \"marks\": [\n                        \"<string>\",\n                        \"<string>\"\n                      ],\n                      \"object\": \"<string>\",\n                      \"text\": \"<string>\"\n                    }\n                  ],\n                  \"object\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\",\n              \"type\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\"\n        },\n        \"object\": \"<string>\"\n      },\n      \"IsComment\": \"<boolean>\",\n      \"IsPinned\": \"<boolean>\",\n      \"Name\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {\n        \"Name\": \"<string>\",\n        \"Type\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Name\": \"<string>\",\n        \"Type\": \"<string>\"\n      }\n    }\n  ]\n}"},{"id":"baefe0b4-72ee-47e8-b7c2-b70cd773592f","name":"The request to retrieve channel announcements could not be processed as you don't have permission to perform this action.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/announcement","host":["https://subdomain.kissflow.com"],"path":["channel","1",":account_id",":channel_id","announcement"],"variable":[{"key":"account_id"},{"key":"channel_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"444097cc-48c1-450e-a3ec-604c89b5338a"},{"name":"Create a new post","id":"e49d4580-a8ac-4ee2-a020-60dbae476b31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"Content\": {\n    \"document\": {\n      \"data\": {},\n      \"nodes\": [\n        {\n          \"data\": {},\n          \"isVoid\": \"<boolean>\",\n          \"nodes\": [\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            },\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\",\n          \"type\": \"<string>\"\n        },\n        {\n          \"data\": {},\n          \"isVoid\": \"<boolean>\",\n          \"nodes\": [\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            },\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\",\n          \"type\": \"<string>\"\n        }\n      ],\n      \"object\": \"<string>\"\n    },\n    \"object\": \"<string>\"\n  },\n  \"Polls\": {\n    \"anonymous\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"option\": [\n      {\n        \"_created_at\": \"<dateTime>\",\n        \"_created_by\": \"<string>\",\n        \"value\": \"<string>\",\n        \"votes\": [\n          {\n            \"name\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\"\n          }\n        ]\n      },\n      {\n        \"_created_at\": \"<dateTime>\",\n        \"_created_by\": \"<string>\",\n        \"value\": \"<string>\",\n        \"votes\": [\n          {\n            \"name\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\"\n          }\n        ]\n      }\n    ],\n    \"settings\": {},\n    \"title\": \"<string>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/post","description":"<p>This API creates a post, announcement, poll for a provided channel_id</p>\n","urlObject":{"path":["channel","1",":account_id",":channel_id","post"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"2c544ec0-83ef-46b8-84cc-0e7c875876e6","description":{"content":"<p>(Required) Account Id</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"9df42dfc-be13-459e-a4ad-db6b19fb938d","description":{"content":"<p>(Required) Channel Id</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"channel_id"}]}},"response":[{"id":"aac7dd1d-cc30-4410-9110-34d9436adccb","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Content\": {\n    \"document\": {\n      \"data\": {},\n      \"nodes\": [\n        {\n          \"data\": {},\n          \"isVoid\": \"<boolean>\",\n          \"nodes\": [\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            },\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\",\n          \"type\": \"<string>\"\n        },\n        {\n          \"data\": {},\n          \"isVoid\": \"<boolean>\",\n          \"nodes\": [\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            },\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\",\n          \"type\": \"<string>\"\n        }\n      ],\n      \"object\": \"<string>\"\n    },\n    \"object\": \"<string>\"\n  },\n  \"Polls\": {\n    \"anonymous\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"option\": [\n      {\n        \"_created_at\": \"<dateTime>\",\n        \"_created_by\": \"<string>\",\n        \"value\": \"<string>\",\n        \"votes\": [\n          {\n            \"name\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\"\n          }\n        ]\n      },\n      {\n        \"_created_at\": \"<dateTime>\",\n        \"_created_by\": \"<string>\",\n        \"value\": \"<string>\",\n        \"votes\": [\n          {\n            \"name\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\"\n          }\n        ]\n      }\n    ],\n    \"settings\": {},\n    \"title\": \"<string>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/post","host":["https://subdomain.kissflow.com"],"path":["channel","1",":account_id",":channel_id","post"],"variable":[{"key":"account_id"},{"key":"channel_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"AssignedTo\": {\n    \"Name\": \"<string>\",\n    \"Type\": \"<string>\"\n  },\n  \"Content\": {\n    \"document\": {\n      \"data\": {},\n      \"nodes\": [\n        {\n          \"data\": {},\n          \"isVoid\": \"<boolean>\",\n          \"nodes\": [\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            },\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\",\n          \"type\": \"<string>\"\n        },\n        {\n          \"data\": {},\n          \"isVoid\": \"<boolean>\",\n          \"nodes\": [\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            },\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\",\n          \"type\": \"<string>\"\n        }\n      ],\n      \"object\": \"<string>\"\n    },\n    \"object\": \"<string>\"\n  },\n  \"IsComment\": \"<boolean>\",\n  \"IsPinned\": \"<boolean>\",\n  \"Name\": \"<string>\",\n  \"Type\": \"<string>\",\n  \"_created_at\": \"<dateTime>\",\n  \"_created_by\": {\n    \"Name\": \"<string>\",\n    \"Type\": \"<string>\"\n  },\n  \"_modified_at\": \"<dateTime>\",\n  \"_modified_by\": {\n    \"Name\": \"<string>\",\n    \"Type\": \"<string>\"\n  }\n}"},{"id":"0eb200c6-ad86-463c-bad7-d6b9b9d55cae","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Content\": {\n    \"document\": {\n      \"data\": {},\n      \"nodes\": [\n        {\n          \"data\": {},\n          \"isVoid\": \"<boolean>\",\n          \"nodes\": [\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            },\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\",\n          \"type\": \"<string>\"\n        },\n        {\n          \"data\": {},\n          \"isVoid\": \"<boolean>\",\n          \"nodes\": [\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            },\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\",\n          \"type\": \"<string>\"\n        }\n      ],\n      \"object\": \"<string>\"\n    },\n    \"object\": \"<string>\"\n  },\n  \"Polls\": {\n    \"anonymous\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"option\": [\n      {\n        \"_created_at\": \"<dateTime>\",\n        \"_created_by\": \"<string>\",\n        \"value\": \"<string>\",\n        \"votes\": [\n          {\n            \"name\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\"\n          }\n        ]\n      },\n      {\n        \"_created_at\": \"<dateTime>\",\n        \"_created_by\": \"<string>\",\n        \"value\": \"<string>\",\n        \"votes\": [\n          {\n            \"name\": \"<string>\"\n          },\n          {\n            \"name\": \"<string>\"\n          }\n        ]\n      }\n    ],\n    \"settings\": {},\n    \"title\": \"<string>\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/post","host":["https://subdomain.kissflow.com"],"path":["channel","1",":account_id",":channel_id","post"],"variable":[{"key":"account_id"},{"key":"channel_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"e49d4580-a8ac-4ee2-a020-60dbae476b31"},{"name":"Delete channel post","id":"f4d5af33-d51b-4748-a00e-caeff714e7d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/post/:post_id","description":"<p>This endpoint lets you delete a specific post inside a Kissflow channel.</p>\n","urlObject":{"path":["channel","1",":account_id",":channel_id","post",":post_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"24f88859-cc06-4ce7-a300-ab92b5bd0959","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"99bb37cc-16ee-41bb-af52-f0b21af90cb9","description":{"content":"<p>(Required) This is the unique &lt;&lt;glossary:Channel ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"channel_id"},{"id":"247be626-977f-4531-92a8-d61eb8ee28e5","description":{"content":"<p>(Required) This is the unique &lt;&lt;glossary:Post ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"post_id"}]}},"response":[{"id":"39728646-19af-4848-9cbe-efeeab3d5fee","name":"This request successfully deletes a post, announcement, or poll in your channel.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/post/:post_id","host":["https://subdomain.kissflow.com"],"path":["channel","1",":account_id",":channel_id","post",":post_id"],"variable":[{"key":"account_id"},{"key":"channel_id"},{"key":"post_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"b2a4730f-1bca-4c41-90ae-a42db67e9521","name":"The request to delete a channel post could not be processed as you don't have permission to perform this action.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/post/:post_id","host":["https://subdomain.kissflow.com"],"path":["channel","1",":account_id",":channel_id","post",":post_id"],"variable":[{"key":"account_id"},{"key":"channel_id"},{"key":"post_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"f4d5af33-d51b-4748-a00e-caeff714e7d9"},{"name":"Get channel post details","id":"c8375dcf-b072-4361-b685-abb661cb6b29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/post/:post_id","description":"<p>This endpoint lets you retrieve the post details of a specific post in a channel.</p>\n","urlObject":{"path":["channel","1",":account_id",":channel_id","post",":post_id"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"a3d44b64-d89b-44af-8b60-0bb41c60ec0d","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"dfd17923-0b01-4e2d-843d-2a5b550fefb3","description":{"content":"<p>(Required) This is the unique &lt;&lt;glossary:Channel ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"channel_id"},{"id":"31b9657b-b76e-4405-88dc-5525b5dfa104","description":{"content":"<p>(Required) This is the unique &lt;&lt;glossary:Post ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"post_id"}]}},"response":[{"id":"d625e1ab-f417-41e4-9c65-05857be0cdcb","name":"This request successfully retrieves details of a specific post in a channel.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/post/:post_id","host":["https://subdomain.kissflow.com"],"path":["channel","1",":account_id",":channel_id","post",":post_id"],"variable":[{"key":"account_id"},{"key":"channel_id"},{"key":"post_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"AssignedTo\": {\n    \"Name\": \"<string>\",\n    \"Type\": \"<string>\"\n  },\n  \"Content\": {\n    \"document\": {\n      \"data\": {},\n      \"nodes\": [\n        {\n          \"data\": {},\n          \"isVoid\": \"<boolean>\",\n          \"nodes\": [\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            },\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\",\n          \"type\": \"<string>\"\n        },\n        {\n          \"data\": {},\n          \"isVoid\": \"<boolean>\",\n          \"nodes\": [\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            },\n            {\n              \"leaves\": [\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                },\n                {\n                  \"marks\": [\n                    \"<string>\",\n                    \"<string>\"\n                  ],\n                  \"object\": \"<string>\",\n                  \"text\": \"<string>\"\n                }\n              ],\n              \"object\": \"<string>\"\n            }\n          ],\n          \"object\": \"<string>\",\n          \"type\": \"<string>\"\n        }\n      ],\n      \"object\": \"<string>\"\n    },\n    \"object\": \"<string>\"\n  },\n  \"IsComment\": \"<boolean>\",\n  \"IsPinned\": \"<boolean>\",\n  \"Name\": \"<string>\",\n  \"Type\": \"<string>\",\n  \"_created_at\": \"<dateTime>\",\n  \"_created_by\": {\n    \"Name\": \"<string>\",\n    \"Type\": \"<string>\"\n  },\n  \"_modified_at\": \"<dateTime>\",\n  \"_modified_by\": {\n    \"Name\": \"<string>\",\n    \"Type\": \"<string>\"\n  }\n}"},{"id":"146989b8-6472-4d6b-8242-bc2b764c5db9","name":"The request to retrieve post details could not be processed as you don't have permission to perform this action.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/post/:post_id","host":["https://subdomain.kissflow.com"],"path":["channel","1",":account_id",":channel_id","post",":post_id"],"variable":[{"key":"account_id"},{"key":"channel_id"},{"key":"post_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"c8375dcf-b072-4361-b685-abb661cb6b29"},{"name":"Add attachment to post","id":"fc0a580c-dd6a-44b5-93d0-b750e7540c65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The file to upload.</p>\n","key":"file","type":"file","value":null}]},"url":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/:post_id/attachment","description":"<p>This endpoint lets you upload an attachment file to a channel post. You can add an attachment in the following file formats- .pdf, .doc, .ppt, .xls, .jpg, .jpeg, .jpe, .png, .gif, or .mp4.</p>\n","urlObject":{"path":["channel","1",":account_id",":channel_id",":post_id","attachment"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"5c34bc5d-0036-4adf-8568-c66aa6c30371","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"c36a755c-1253-4611-ac5e-6d7cbe61292b","description":{"content":"<p>(Required) This is the unique &lt;&lt;glossary:Channel ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"channel_id"},{"id":"fb4dc051-01c4-4397-a9a3-52b188209fde","description":{"content":"<p>(Required) This is the unique &lt;&lt;glossary:Post ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"post_id"}]}},"response":[{"id":"eb4766c7-9947-48bc-bb43-9c225aeee14c","name":"This request successfully adds a new attachment to your channel post.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/:post_id/attachment","host":["https://subdomain.kissflow.com"],"path":["channel","1",":account_id",":channel_id",":post_id","attachment"],"variable":[{"key":"account_id"},{"key":"channel_id"},{"key":"post_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"},{"id":"0276ceec-2646-413b-bff4-692de3cfeee7","name":"The request to add new attachment to your channel post could not be processed due to insufficient permissions.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"formdata","formdata":[{"description":"The file to upload.","key":"file","type":"file","src":[]}]},"url":{"raw":"https://subdomain.kissflow.com/channel/1/:account_id/:channel_id/:post_id/attachment","host":["https://subdomain.kissflow.com"],"path":["channel","1",":account_id",":channel_id",":post_id","attachment"],"variable":[{"key":"account_id"},{"key":"channel_id"},{"key":"post_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"fc0a580c-dd6a-44b5-93d0-b750e7540c65"}],"id":"b77bcb09-b1e2-4286-90d2-5c236144cf91","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"3b0e5f3f-3cb3-4d2e-8951-7ecdd33d4b66","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"b03c089d-5105-4847-85a5-5ec8e5ce4997","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"b77bcb09-b1e2-4286-90d2-5c236144cf91","description":""}],"id":"7cd871b2-1797-4350-88e4-408cf80dbfce","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"2f82c7e7-f6d7-4e66-a9ad-6643b75ae234","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"af45ecd5-73d6-437c-9112-bec2d97b672c","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"7cd871b2-1797-4350-88e4-408cf80dbfce","description":""},{"name":"PLATFORM","item":[{"name":"Flow","item":[{"name":"List all flows","id":"665230af-d8c9-44b2-8d20-0b92fedfa576","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/flow/1/:account_id/explore","description":"<p>This endpoint lets you retrieve all the configured flows in your Kissflow account.</p>\n","urlObject":{"path":["flow","1",":account_id","explore"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"0d0e0a51-cdf3-4534-ae33-cbbfd4fb61d7","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"}]}},"response":[{"id":"5c372b8d-d26d-45e1-9404-11b6fcc9df39","name":"This request retrieves all the flows in the Kissflow account.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/flow/1/:account_id/explore","host":["https://subdomain.kissflow.com"],"path":["flow","1",":account_id","explore"],"variable":[{"key":"account_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": [\n    {\n      \"ChildTables\": {},\n      \"Description\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"SharedWith\": [\n        {\n          \"Name\": \"<string>\",\n          \"Permission\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        },\n        {\n          \"Name\": \"<string>\",\n          \"Permission\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        }\n      ],\n      \"Status\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {},\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {}\n    },\n    {\n      \"ChildTables\": {},\n      \"Description\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"SharedWith\": [\n        {\n          \"Name\": \"<string>\",\n          \"Permission\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        },\n        {\n          \"Name\": \"<string>\",\n          \"Permission\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        }\n      ],\n      \"Status\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {},\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {}\n    }\n  ]\n}"},{"id":"b692ffca-0570-4eab-911d-cf1d19327bab","name":"The request to retrieve flows in Kissflow could not be processed due to a malformed request syntax.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/flow/1/:account_id/explore","host":["https://subdomain.kissflow.com"],"path":["flow","1",":account_id","explore"],"variable":[{"key":"account_id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"665230af-d8c9-44b2-8d20-0b92fedfa576"},{"name":"List flows by type","id":"a9322afc-c1ba-4a0a-82a5-b02bf498063f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/flow/1/:account_id/:flow_type","description":"<p>This endpoint lets you retrieve all the flows based on their &lt;&lt;glossary:Flow Type&gt;&gt;.</p>\n","urlObject":{"path":["flow","1",":account_id",":flow_type"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"1e54a8b9-a0a7-4e56-b20c-6ea0da1eb8d9","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"fd1f7e28-1ec6-4f2f-8218-241667c0da74","description":{"content":"<p>(Required) The &lt;&lt;glossary:Flow type&gt;&gt; can be process, project, case, channel, or dataset. This is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"flow_type"}]}},"response":[{"id":"34817b3b-8409-4167-975d-395693aa7532","name":"This request successfully retrieves flows based on their type.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/flow/1/:account_id/:flow_type","host":["https://subdomain.kissflow.com"],"path":["flow","1",":account_id",":flow_type"],"variable":[{"key":"account_id"},{"key":"flow_type"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": [\n    {\n      \"ChildTables\": {},\n      \"Description\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"SharedWith\": [\n        {\n          \"Name\": \"<string>\",\n          \"Permission\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        },\n        {\n          \"Name\": \"<string>\",\n          \"Permission\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        }\n      ],\n      \"Status\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {},\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {}\n    },\n    {\n      \"ChildTables\": {},\n      \"Description\": \"<string>\",\n      \"Name\": \"<string>\",\n      \"SharedWith\": [\n        {\n          \"Name\": \"<string>\",\n          \"Permission\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        },\n        {\n          \"Name\": \"<string>\",\n          \"Permission\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        }\n      ],\n      \"Status\": \"<string>\",\n      \"Type\": \"<string>\",\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {},\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {}\n    }\n  ]\n}"},{"id":"866ced0e-c5c9-421c-867d-75828bcab6e8","name":"The request to retrieve flows based on type could not be processed due to a malformed request syntax.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/flow/1/:account_id/:flow_type","host":["https://subdomain.kissflow.com"],"path":["flow","1",":account_id",":flow_type"],"variable":[{"key":"account_id"},{"key":"flow_type"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a9322afc-c1ba-4a0a-82a5-b02bf498063f"}],"id":"50ca2d79-50c1-426c-b9e9-40f9fdbe8e5e","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"0c6034fe-9222-4fdf-b7c3-0402575ecb0e","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"2227ab08-db79-463a-8fe4-ff457bd20eb2","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"50ca2d79-50c1-426c-b9e9-40f9fdbe8e5e","description":""},{"name":"Flow comments","item":[{"name":"Get comment responses","id":"38bd6bf1-2e38-4ce1-a027-201d5cb97e5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://subdomain.kissflow.com/comment/1/:account_id/:flow_type/:flow_id/:instance_type/:instance_id/:comment_id/reply","description":"<p>This endpoint lets you retrieve all replies to a specific comment in a post made in a channel or flow feed.</p>\n","urlObject":{"path":["comment","1",":account_id",":flow_type",":flow_id",":instance_type",":instance_id",":comment_id","reply"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"description":{"content":"<p>(Required) This is the type of <a>glossary:Flow</a>, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"flow_type"},{"description":{"content":"<p>(Required) The &lt;&lt;glossary:Flow ID&gt;&gt; is a unique identifier for each flow, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"flow_id"},{"description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance Type&gt;&gt; is the type of item, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"Process","key":"instance_type"},{"description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance ID&gt;&gt; is a unique identifier for each instance, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"description":{"content":"<p>(Required) The &lt;&lt;glossary:Comment ID&gt;&gt; is a unique identifier for each comment, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"comment_id"}]}},"response":[{"id":"97bb93a8-f2f6-4991-a3b9-5de863f96c3c","name":"This request successfully retrieves all the comment responses for a particular post or flow item.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/comment/1/:account_id/:flow_type/:flow_id/:instance_type/:instance_id/:comment_id/reply","host":["https://subdomain.kissflow.com"],"path":["comment","1",":account_id",":flow_type",":flow_id",":instance_type",":instance_id",":comment_id","reply"],"variable":[{"key":"account_id"},{"key":"flow_type"},{"key":"flow_id"},{"key":"instance_type"},{"key":"instance_id"},{"key":"comment_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"response\": [\n    {\n      \"Content\": {},\n      \"EntityType\": \"<string>\",\n      \"Reactions\": [\n        {\n          \"reaction_type\": \"<string>\"\n        },\n        {\n          \"reaction_type\": \"<string>\"\n        }\n      ],\n      \"TotalReplies\": \"<integer>\",\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {\n        \"Type\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Type\": \"<string>\"\n      }\n    },\n    {\n      \"Content\": {},\n      \"EntityType\": \"<string>\",\n      \"Reactions\": [\n        {\n          \"reaction_type\": \"<string>\"\n        },\n        {\n          \"reaction_type\": \"<string>\"\n        }\n      ],\n      \"TotalReplies\": \"<integer>\",\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {\n        \"Type\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Type\": \"<string>\"\n      }\n    }\n  ]\n}"},{"id":"363ccb10-2fa8-4b9f-be1b-c7c79c922ef2","name":"The request to retrieve comment responses of a specific flow item or post could not be processed as you don't have permission to perform this action.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"url":{"raw":"https://subdomain.kissflow.com/comment/1/:account_id/:flow_type/:flow_id/:instance_type/:instance_id/:comment_id/reply","host":["https://subdomain.kissflow.com"],"path":["comment","1",":account_id",":flow_type",":flow_id",":instance_type",":instance_id",":comment_id","reply"],"variable":[{"key":"account_id"},{"key":"flow_type"},{"key":"flow_id"},{"key":"instance_type"},{"key":"instance_id"},{"key":"comment_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"38bd6bf1-2e38-4ce1-a027-201d5cb97e5d"},{"name":"Reply to comments","id":"3914318f-aa3a-4ed7-9c87-939f4ce89b44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"}],"body":{"mode":"raw","raw":"{\n  \"Content\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://subdomain.kissflow.com/comment/1/:account_id/:flow_type/:flow_id/:instance_type/:instance_id/:comment_id/reply","description":"<p>This endpoint lets you add a reply to a specific comment in your flow item or channel post.</p>\n","urlObject":{"path":["comment","1",":account_id",":flow_type",":flow_id",":instance_type",":instance_id",":comment_id","reply"],"host":["https://subdomain.kissflow.com"],"query":[],"variable":[{"id":"cdb09d2d-f6bd-4e76-907a-6651203ee26b","description":{"content":"<p>(Required) This is your Kissflow &lt;&lt;glossary:Account ID&gt;&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"account_id"},{"id":"968637b7-bde6-41fe-8e18-bd4594f73525","description":{"content":"<p>(Required) This is the type of &lt;<a>glossary:Flow</a>&gt;, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"flow_type"},{"id":"e5ef4bd3-3983-4d43-b280-c4641afd4069","description":{"content":"<p>(Required) The &lt;&lt;glossary:Flow ID&gt;&gt; is a unique identifyer for each flow, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"flow_id"},{"id":"c7951e32-3748-41c8-91d3-8d76352f1b32","description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance Type&gt;&gt; is the type of item, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"Process","key":"instance_type"},{"id":"1151ce25-7b31-4051-987e-42076cd0bf32","description":{"content":"<p>(Required) The &lt;&lt;glossary:Instance ID&gt;&gt; is a unique identifyer for each instance, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"instance_id"},{"id":"6c0a7309-fc22-428d-bc7e-56efb27c107d","description":{"content":"<p>(Required) The &lt;&lt;glossary:Comment ID&gt;&gt; is a unique identifyer for each comment, and is a mandatory parameter.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"comment_id"}]}},"response":[{"id":"abf12d64-b20c-4bb3-ba1b-57647254a495","name":"This request successfully creates a new comment reply for a particular flow item or channel post.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Content\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/comment/1/:account_id/:flow_type/:flow_id/:instance_type/:instance_id/:comment_id/reply","host":["https://subdomain.kissflow.com"],"path":["comment","1",":account_id",":flow_type",":flow_id",":instance_type",":instance_id",":comment_id","reply"],"variable":[{"key":"account_id"},{"key":"flow_type"},{"key":"flow_id"},{"key":"instance_type"},{"key":"instance_id"},{"key":"comment_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"Comments\": [\n    {\n      \"Content\": {},\n      \"EntityType\": \"<string>\",\n      \"Reactions\": [\n        {\n          \"reaction_type\": \"<string>\"\n        },\n        {\n          \"reaction_type\": \"<string>\"\n        }\n      ],\n      \"TotalReplies\": \"<integer>\",\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {\n        \"Type\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Type\": \"<string>\"\n      }\n    },\n    {\n      \"Content\": {},\n      \"EntityType\": \"<string>\",\n      \"Reactions\": [\n        {\n          \"reaction_type\": \"<string>\"\n        },\n        {\n          \"reaction_type\": \"<string>\"\n        }\n      ],\n      \"TotalReplies\": \"<integer>\",\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {\n        \"Type\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Type\": \"<string>\"\n      }\n    }\n  ],\n  \"EntityType\": \"<string>\",\n  \"Reactions\": [\n    {\n      \"reaction_type\": \"<string>\"\n    },\n    {\n      \"reaction_type\": \"<string>\"\n    }\n  ],\n  \"Replies\": [\n    {\n      \"CommentId\": \"<string>\",\n      \"Content\": {},\n      \"Reactions\": [\n        {\n          \"reaction_type\": \"<string>\"\n        },\n        {\n          \"reaction_type\": \"<string>\"\n        }\n      ],\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {\n        \"Type\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Type\": \"<string>\"\n      }\n    },\n    {\n      \"CommentId\": \"<string>\",\n      \"Content\": {},\n      \"Reactions\": [\n        {\n          \"reaction_type\": \"<string>\"\n        },\n        {\n          \"reaction_type\": \"<string>\"\n        }\n      ],\n      \"_created_at\": \"<dateTime>\",\n      \"_created_by\": {\n        \"Type\": \"<string>\"\n      },\n      \"_modified_at\": \"<dateTime>\",\n      \"_modified_by\": {\n        \"Type\": \"<string>\"\n      }\n    }\n  ],\n  \"_created_at\": \"<dateTime>\",\n  \"_created_by\": {\n    \"Type\": \"<string>\"\n  },\n  \"_modified_at\": \"<dateTime>\",\n  \"_modified_by\": {\n    \"Type\": \"<string>\"\n  }\n}"},{"id":"df2a14a1-5cda-4f58-8368-d03ffe0ea281","name":"The request to create comment reply for a specific flow item or post could not be processed as you don't have permission to perform this action.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: apikey","key":"X-Api-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"Content\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://subdomain.kissflow.com/comment/1/:account_id/:flow_type/:flow_id/:instance_type/:instance_id/:comment_id/reply","host":["https://subdomain.kissflow.com"],"path":["comment","1",":account_id",":flow_type",":flow_id",":instance_type",":instance_id",":comment_id","reply"],"variable":[{"key":"account_id"},{"key":"flow_type"},{"key":"flow_id"},{"key":"instance_type"},{"key":"instance_id"},{"key":"comment_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"3914318f-aa3a-4ed7-9c87-939f4ce89b44"}],"id":"15db501c-676b-4e29-915d-c719a2a91d95","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"beea85d9-2161-49eb-8838-a31edea27ba8","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"896d6532-b57b-4058-b947-95f73ac22ef7","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"15db501c-676b-4e29-915d-c719a2a91d95","description":""}],"id":"4f0ae6e6-694c-49a3-88dc-249440b183be","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"67f4ddaf-2e74-4fc5-9b1e-6144d748bbb9","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"ee407e9c-860a-4a56-8886-9f7714309461","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"4f0ae6e6-694c-49a3-88dc-249440b183be","description":""}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-Api-Key"}]}},"event":[{"listen":"prerequest","script":{"id":"c766916b-9936-4de0-933d-04bbabecebd5","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"51a39d00-9f99-4615-bd2e-ac709b385a1b","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"subdomain","value":"subdomain"},{"key":"baseUrl","value":"https://subdomain.kissflow.com"},{"key":"page","value":"<string>"},{"key":"page_number","value":"1"}]}