{
  "info": {
    "name": "PractiTest API \u2013 Full (All fields + proper steps placement)",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_postman_id": "618cfdd3-2e26-409f-b835-e6566d028f77"
  },
  "variable": [
    {
      "key": "base_url",
      "value": "https://api.practitest.com/api/v2",
      "type": "string"
    },
    {
      "key": "project_id",
      "value": "",
      "type": "string"
    },
    {
      "key": "email",
      "value": "",
      "type": "string"
    },
    {
      "key": "token",
      "value": "",
      "type": "string"
    }
  ],
  "auth": {
    "type": "basic",
    "basic": [
      {
        "key": "username",
        "value": "{{email}}",
        "type": "string"
      },
      {
        "key": "password",
        "value": "{{token}}",
        "type": "string"
      }
    ]
  },
  "item": [
    {
      "name": "Projects",
      "item": [
        {
          "name": "List Project",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects.json"
          }
        },
        {
          "name": "Get Project (by :id)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/:id.json"
          }
        },
        {
          "name": "Create Project",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"projects\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"tags\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // }\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Update Project (by :id)",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/:id.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"projects\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"tags\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // }\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Requirements",
      "item": [
        {
          "name": "List Requirement",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/requirements.json"
          }
        },
        {
          "name": "Get Requirement (by :id)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/requirements/:id.json"
          }
        },
        {
          "name": "Create Requirement",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/requirements.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"requirements\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"author-id\": \"\",\n      // \"status\": \"\",\n      // \"priority\": \"\",\n      // \"version\": \"\",\n      // \"parent-id\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // },\n      // \"tags\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Update Requirement (by :id)",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/requirements/:id.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"requirements\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"author-id\": \"\",\n      // \"status\": \"\",\n      // \"priority\": \"\",\n      // \"version\": \"\",\n      // \"parent-id\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // },\n      // \"tags\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Requirement (by :id)",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/requirements/:id.json"
          }
        }
      ]
    },
    {
      "name": "Tests",
      "item": [
        {
          "name": "List Test",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/tests.json"
          }
        },
        {
          "name": "Get Test (by :id)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/tests/:id.json"
          }
        },
        {
          "name": "Create Test",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/tests.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"tests\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"author-id\": \"\",\n      // \"priority\": \"\",\n      // \"type\": \"\",\n      // \"version\": \"\",\n      // \"status\": \"\",\n      // \"automation-status\": \"\",\n      // \"linked-requirements\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // },\n      // \"tags\": \"\"\n    },\n    // \"steps\": {\n    //   \"data\": [\n    //     { \"name\": \"step one\", \"description\": \"Step 1 description\", \"expected-results\": \"result\", \"status\": \"No Run\" },\n    //     { \"name\": \"step two\", \"expected-results\": \"result2\", \"status\": \"No Run\" }\n    //   ]\n    // }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Update Test (by :id)",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/tests/:id.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"tests\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"author-id\": \"\",\n      // \"priority\": \"\",\n      // \"type\": \"\",\n      // \"version\": \"\",\n      // \"status\": \"\",\n      // \"automation-status\": \"\",\n      // \"linked-requirements\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // },\n      // \"tags\": \"\"\n    },\n    // \"steps\": {\n    //   \"data\": [\n    //     { \"name\": \"step one\", \"description\": \"Step 1 description\", \"expected-results\": \"result\", \"status\": \"No Run\" },\n    //     { \"name\": \"step two\", \"expected-results\": \"result2\", \"status\": \"No Run\" }\n    //   ]\n    // }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Test (by :id)",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/tests/:id.json"
          }
        }
      ]
    },
    {
      "name": "Test Sets",
      "item": [
        {
          "name": "List Test Set",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/sets.json"
          }
        },
        {
          "name": "Get Test Set (by :id)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/sets/:id.json"
          }
        },
        {
          "name": "Create Test Set",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/sets.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"sets\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"assigned-to\": \"\",\n      // \"due-date\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // },\n      // \"tags\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Update Test Set (by :id)",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/sets/:id.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"sets\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"assigned-to\": \"\",\n      // \"due-date\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // },\n      // \"tags\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Test Set (by :id)",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/sets/:id.json"
          }
        }
      ]
    },
    {
      "name": "Instances",
      "item": [
        {
          "name": "List Instance",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/instances.json"
          }
        },
        {
          "name": "Get Instance (by :id)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/instances/:id.json"
          }
        },
        {
          "name": "Create Instance",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/instances.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"instances\",\n    \"attributes\": {\n      \"set-id\": \"\",\n      \"test-id\": \"\",\n      // \"name\": \"\",\n      // \"version\": \"\",\n      // \"status\": \"\",\n      // \"assigned-to\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // },\n      // \"tags\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Update Instance (by :id)",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/instances/:id.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"instances\",\n    \"attributes\": {\n      \"set-id\": \"\",\n      \"test-id\": \"\",\n      // \"name\": \"\",\n      // \"version\": \"\",\n      // \"status\": \"\",\n      // \"assigned-to\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // },\n      // \"tags\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Instance (by :id)",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/instances/:id.json"
          }
        }
      ]
    },
    {
      "name": "Runs",
      "item": [
        {
          "name": "List Run",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/runs.json"
          }
        },
        {
          "name": "Get Run (by :id)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/runs/:id.json"
          }
        },
        {
          "name": "Create Run",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/runs.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"runs\",\n    \"attributes\": {\n      \"instance-id\": \"\",\n      // \"status\": \"\",\n      // \"duration\": \"\",\n      // \"started-at\": \"\",\n      // \"ended-at\": \"\",\n      // \"description\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // },\n      // \"tags\": \"\"\n    },\n    // \"steps\": {\n    //   \"data\": [\n    //     { \"name\": \"step one\", \"actual-results\": \"observed 1\", \"status\": \"PASSED\", \"duration\": 1.23 },\n    //     { \"name\": \"step two\", \"actual-results\": \"observed 2\", \"status\": \"FAILED\", \"duration\": 0.77 }\n    //   ]\n    // }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Issues",
      "item": [
        {
          "name": "List Issue",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/issues.json"
          }
        },
        {
          "name": "Get Issue (by :id)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/issues/:id.json"
          }
        },
        {
          "name": "Create Issue",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/issues.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"issues\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"status\": \"\",\n      // \"priority\": \"\",\n      // \"severity\": \"\",\n      // \"assigned-to\": \"\",\n      // \"detected-by\": \"\",\n      // \"resolution\": \"\",\n      // \"reproducible\": \"\",\n      // \"environment\": \"\",\n      // \"component\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // },\n      // \"tags\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Update Issue (by :id)",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/issues/:id.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"issues\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"status\": \"\",\n      // \"priority\": \"\",\n      // \"severity\": \"\",\n      // \"assigned-to\": \"\",\n      // \"detected-by\": \"\",\n      // \"resolution\": \"\",\n      // \"reproducible\": \"\",\n      // \"environment\": \"\",\n      // \"component\": \"\",\n      // \"custom-fields\": {,\n      //   \"---f-12345\": \"high\",,\n      //   \"---f-67890\": \"owner@example.com\",\n      // },\n      // \"tags\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Issue (by :id)",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/issues/:id.json"
          }
        }
      ]
    },
    {
      "name": "Users",
      "item": [
        {
          "name": "List User",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/users.json"
          }
        },
        {
          "name": "Get User (by :id)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/users/:id.json"
          }
        }
      ]
    },
    {
      "name": "Groups",
      "item": [
        {
          "name": "List Group",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/groups.json"
          }
        },
        {
          "name": "Get Group (by :id)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/groups/:id.json"
          }
        },
        {
          "name": "Create Group",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/groups.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"groups\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"is-active\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Update Group (by :id)",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/groups/:id.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"groups\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"description\": \"\",\n      // \"is-active\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Group (by :id)",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/groups/:id.json"
          }
        }
      ]
    },
    {
      "name": "Custom Fields",
      "item": [
        {
          "name": "List Custom Field",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/custom_fields.json"
          }
        },
        {
          "name": "Get Custom Field (by :id)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/custom_fields/:id.json"
          }
        },
        {
          "name": "Create Custom Field",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/custom_fields.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"custom_fields\",\n    \"attributes\": {\n      \"label\": \"\",\n      \"entity-type\": \"\",\n      \"field-type\": \"\",\n      // \"description\": \"\",\n      // \"options\": \"\",\n      // \"default-value\": \"\",\n      // \"is-required\": \"\",\n      // \"is-unique\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Update Custom Field (by :id)",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/custom_fields/:id.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"custom_fields\",\n    \"attributes\": {\n      \"label\": \"\",\n      \"entity-type\": \"\",\n      \"field-type\": \"\",\n      // \"description\": \"\",\n      // \"options\": \"\",\n      // \"default-value\": \"\",\n      // \"is-required\": \"\",\n      // \"is-unique\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Custom Field (by :id)",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/custom_fields/:id.json"
          }
        }
      ]
    },
    {
      "name": "Attachments",
      "item": [
        {
          "name": "List Attachment",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/attachments.json"
          }
        },
        {
          "name": "Get Attachment (by :id)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/attachments/:id.json"
          }
        },
        {
          "name": "Upload Attachment",
          "request": {
            "method": "POST",
            "header": [],
            "url": "{{base_url}}/projects/{{project_id}}/attachments.json",
            "body": {
              "mode": "formdata",
              "formdata": [
                {
                  "key": "file",
                  "type": "file",
                  "src": "",
                  "disabled": false
                },
                {
                  "key": "entity-type",
                  "type": "text",
                  "value": "tests",
                  "disabled": false
                },
                {
                  "key": "entity-id",
                  "type": "text",
                  "value": ":id",
                  "disabled": false
                },
                {
                  "key": "description",
                  "type": "text",
                  "value": "",
                  "disabled": true
                }
              ]
            }
          }
        },
        {
          "name": "Delete Attachment (by :id)",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/attachments/:id.json"
          }
        }
      ]
    },
    {
      "name": "Comments",
      "item": [
        {
          "name": "List Comment",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/comments.json"
          }
        },
        {
          "name": "Create Comment",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/comments.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"comments\",\n    \"attributes\": {\n      \"entity-type\": \"\",\n      \"entity-id\": \"\",\n      \"message\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Tags",
      "item": [
        {
          "name": "List Tag",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/tags.json"
          }
        },
        {
          "name": "Create Tag",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/tags.json",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"data\": {\n    \"type\": \"tags\",\n    \"attributes\": {\n      \"name\": \"{{name}}\",\n      // \"color\": \"\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Tag (by :id)",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": "{{base_url}}/projects/{{project_id}}/tags/:id.json"
          }
        }
      ]
    }
  ]
}