{
  "info": {
    "name": "ROMS Backend API",
    "description": "Complete API collection for ROMS Backend",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{auth_token}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "base_url",
      "value": "http://localhost/api",
      "type": "string"
    },
    {
      "key": "auth_token",
      "value": "",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "01. Authentication",
      "item": [
        {
          "name": "Login",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/login",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "login"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"user@example.com\",\n  \"password\": \"password123\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Check Social Login",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/check-social-login",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "check-social-login"
              ]
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Register Customers",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/register-customers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "register-customers"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Customer\",\n  \"email\": \"customer@example.com\",\n  \"password\": \"password123\",\n  \"phone\": \"1234567890\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Forget Password",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/users/forget-password",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "users",
                "forget-password"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"user@example.com\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "auth": {
              "type": "noauth"
            }
          }
        }
      ]
    },
    {
      "name": "02. Public Routes",
      "item": [
        {
          "name": "Get User",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/user",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "user"
              ]
            }
          }
        },
        {
          "name": "List Files",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/files",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "files"
              ]
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Upload File",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/files",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "files"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"file\": \"base64_encoded_file\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Show File",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/files/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "files",
                ":id"
              ]
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Delete File",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/files/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "files",
                ":id"
              ]
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "List Countries",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/countries",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "countries"
              ]
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Create Country",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/countries",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "countries"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Country\",\n  \"code\": \"CN\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Show Country",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/countries/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "countries",
                ":id"
              ]
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Update Country",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/countries/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "countries",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Country\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Delete Country",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/countries/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "countries",
                ":id"
              ]
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Web Open Positions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/web-open-positions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "web-open-positions"
              ]
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Web Open Position Show",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/web-open-positions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "web-open-positions",
                ":id"
              ]
            },
            "auth": {
              "type": "noauth"
            }
          }
        },
        {
          "name": "Guest Applicant Open Position",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/guest-applicant-open-positions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "guest-applicant-open-positions"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"open_position_id\": 1,\n  \"applicant_data\": {\n    \"name\": \"Applicant\",\n    \"email\": \"applicant@example.com\",\n    \"phone\": \"1234567890\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "auth": {
              "type": "noauth"
            }
          }
        }
      ]
    },
    {
      "name": "03. Basics",
      "item": [
        {
          "name": "Logout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/logout",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "logout"
              ]
            }
          }
        },
        {
          "name": "Get Filters",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/filters/:model",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "filters",
                ":model"
              ]
            }
          }
        },
        {
          "name": "List Notes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notes"
              ]
            }
          }
        },
        {
          "name": "Create Note",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notes"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Note Title\",\n  \"content\": \"Content\",\n  \"user_id\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Note",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notes/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notes",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Note",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notes/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notes",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Updated Title\",\n  \"content\": \"Updated\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Note",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notes/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notes",
                ":id"
              ]
            }
          }
        },
        {
          "name": "List Roles",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/roles",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "roles"
              ]
            }
          }
        },
        {
          "name": "Create Role",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/roles",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "roles"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Role\",\n  \"permissions\": [\n    1,\n    2,\n    3\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Role",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/roles/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "roles",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Role",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/roles/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "roles",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Role\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Role",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/roles/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "roles",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Get Permissions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/permissions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "permissions"
              ]
            }
          }
        },
        {
          "name": "Update User Token",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/users/:user/token",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "users",
                ":user",
                "token"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"fcm_token\": \"token_here\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "04. Notifications",
      "item": [
        {
          "name": "List Notifications",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notifications",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notifications"
              ]
            }
          }
        },
        {
          "name": "Delete Notification",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notifications/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notifications",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Mark as Read",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notifications/:notification/toggle-read",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notifications",
                ":notification",
                "toggle-read"
              ]
            }
          }
        },
        {
          "name": "Take Action",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notifications/:notification/take-action",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notifications",
                ":notification",
                "take-action"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"action\": \"approve\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Mark All as Read",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notifications/mark-all-as-read",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notifications",
                "mark-all-as-read"
              ]
            }
          }
        },
        {
          "name": "Mark All as Unread",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notifications/mark-all-as-unread",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notifications",
                "mark-all-as-unread"
              ]
            }
          }
        },
        {
          "name": "Delete All",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/notifications/delete-all",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "notifications",
                "delete-all"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "05. HR Management",
      "item": [
        {
          "name": "Update Employee Profile",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/employees/update-profile",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "employees",
                "update-profile"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Name\",\n  \"email\": \"updated@example.com\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Employees",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/employees",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "employees"
              ]
            }
          }
        },
        {
          "name": "Create Employee",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/employees",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "employees"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Employee\",\n  \"email\": \"employee@example.com\",\n  \"phone\": \"1234567890\",\n  \"department_id\": 1,\n  \"position_id\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Employee",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/employees/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "employees",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Employee",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/employees/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "employees",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Employee\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Employee",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/employees/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "employees",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Change Activation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/employees/:employee/change-activation",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "employees",
                ":employee",
                "change-activation"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"is_active\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Restore Employee",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/employees/:employee/restore",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "employees",
                ":employee",
                "restore"
              ]
            }
          }
        },
        {
          "name": "Toggle Key",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/employees/:employee/toggle-key",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "employees",
                ":employee",
                "toggle-key"
              ]
            }
          }
        },
        {
          "name": "Get Monthly Attendance",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/employees/:employee/get-monthly-attendance",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "employees",
                ":employee",
                "get-monthly-attendance"
              ]
            }
          }
        },
        {
          "name": "List Attendances",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/attendances",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "attendances"
              ]
            }
          }
        },
        {
          "name": "Create Attendance",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/attendances",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "attendances"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"employee_id\": 1,\n  \"date\": \"2024-01-01\",\n  \"check_in\": \"09:00:00\",\n  \"check_out\": \"17:00:00\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Attendance",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/attendances/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "attendances",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Attendance",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/attendances/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "attendances",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"check_in\": \"09:30:00\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Attendance",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/attendances/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "attendances",
                ":id"
              ]
            }
          }
        },
        {
          "name": "List User Relatives",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/user-relatives",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "user-relatives"
              ]
            }
          }
        },
        {
          "name": "Create User Relative",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/user-relatives",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "user-relatives"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"user_id\": 1,\n  \"name\": \"Relative\",\n  \"relation\": \"father\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show User Relative",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/user-relatives/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "user-relatives",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update User Relative",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/user-relatives/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "user-relatives",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Relative\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete User Relative",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/user-relatives/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "user-relatives",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "06. Companies & Customers",
      "item": [
        {
          "name": "List Companies",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/companies",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "companies"
              ]
            }
          }
        },
        {
          "name": "Create Company",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/companies",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "companies"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Company\",\n  \"email\": \"company@example.com\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Company",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/companies/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "companies",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Company",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/companies/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "companies",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Company\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Company",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/companies/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "companies",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Customer Profile",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/customers/update-profile",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "customers",
                "update-profile"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Name\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Customers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/customers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "customers"
              ]
            }
          }
        },
        {
          "name": "Create Customer",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/customers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "customers"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Customer\",\n  \"email\": \"customer@example.com\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Customer",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/customers/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "customers",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Customer",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/customers/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "customers",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Customer\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Customer",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/customers/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "customers",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Change Customer Activation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/customers/:customer/change-activation",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "customers",
                ":customer",
                "change-activation"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"is_active\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "07. Projects & Tasks",
      "item": [
        {
          "name": "List Projects",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects"
              ]
            }
          }
        },
        {
          "name": "Create Project",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Project\",\n  \"customer_id\": 1,\n  \"start_date\": \"2024-01-01\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Project",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Project",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Project\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Project",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Change Project Activation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/:project/change-activation",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                ":project",
                "change-activation"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"is_active\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Project Scopes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/scopes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                "scopes"
              ]
            }
          }
        },
        {
          "name": "Create Project Scope",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/scopes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                "scopes"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"project_id\": 1,\n  \"name\": \"Scope\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Project Scope",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/scopes/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                "scopes",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Project Scope",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/scopes/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                "scopes",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Scope\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Project Scope",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/scopes/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                "scopes",
                ":id"
              ]
            }
          }
        },
        {
          "name": "List Project Links",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/project-links",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                "project-links"
              ]
            }
          }
        },
        {
          "name": "Create Project Link",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/project-links",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                "project-links"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"project_id\": 1,\n  \"title\": \"Link\",\n  \"url\": \"https://example.com\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Project Link",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/project-links/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                "project-links",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Project Link",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/project-links/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                "project-links",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Updated Link\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Project Link",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/projects/project-links/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "projects",
                "project-links",
                ":id"
              ]
            }
          }
        },
        {
          "name": "List Milestones",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/milestones",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "milestones"
              ]
            }
          }
        },
        {
          "name": "Create Milestone",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/milestones",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "milestones"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"project_id\": 1,\n  \"name\": \"Milestone\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Milestone",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/milestones/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "milestones",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Milestone",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/milestones/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "milestones",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Milestone\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Milestone",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/milestones/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "milestones",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Change Milestone Activation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/milestones/:milestone/change-activation",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "milestones",
                ":milestone",
                "change-activation"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"is_active\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Tasks",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tasks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tasks"
              ]
            }
          }
        },
        {
          "name": "Create Task",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tasks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tasks"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"project_id\": 1,\n  \"title\": \"Task\",\n  \"assigned_to\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Task",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tasks/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tasks",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Task",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tasks/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tasks",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Updated Task\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Task",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tasks/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tasks",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Change Task Activation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tasks/:task/change-activation",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tasks",
                ":task",
                "change-activation"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"is_active\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get Task Type Icon",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/task-type-icon",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "task-type-icon"
              ]
            }
          }
        },
        {
          "name": "Assign Existing Task",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/assign-existing-task",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "assign-existing-task"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"task_id\": 1,\n  \"user_id\": 2\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Assign New Task",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/assign-new-task",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "assign-new-task"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"project_id\": 1,\n  \"title\": \"New Task\",\n  \"user_id\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Change Parent ID",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/change-parent-id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "change-parent-id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"task_id\": 1,\n  \"parent_id\": 2\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Remove Related Task",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/remove-related-task",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "remove-related-task"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"task_id\": 1,\n  \"related_task_id\": 2\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Access Infos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/access-managers/access-infos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "access-managers",
                "access-infos"
              ]
            }
          }
        },
        {
          "name": "Create Access Info",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/access-managers/access-infos",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "access-managers",
                "access-infos"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"user_id\": 1,\n  \"resource_type\": \"project\",\n  \"resource_id\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Access Info",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/access-managers/access-infos/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "access-managers",
                "access-infos",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Access Info",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/access-managers/access-infos/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "access-managers",
                "access-infos",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"permissions\": [\n    \"read\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Access Info",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/access-managers/access-infos/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "access-managers",
                "access-infos",
                ":id"
              ]
            }
          }
        },
        {
          "name": "List Tags",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tags",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tags"
              ]
            }
          }
        },
        {
          "name": "Create Tag",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tags",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tags"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Tag\",\n  \"color\": \"#FF5733\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Tag",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tags/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tags",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Tag",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tags/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tags",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Tag\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Tag",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tags/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tags",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "08. Setups",
      "item": [
        {
          "name": "List Departments",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/departments",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "departments"
              ]
            }
          }
        },
        {
          "name": "Create Department",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/departments",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "departments"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Department\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Department",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/departments/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "departments",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Department",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/departments/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "departments",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Department\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Department",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/departments/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "departments",
                ":id"
              ]
            }
          }
        },
        {
          "name": "List Holidays",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/holidays",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "holidays"
              ]
            }
          }
        },
        {
          "name": "Create Holiday",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/holidays",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "holidays"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Holiday\",\n  \"date\": \"2024-01-01\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Holiday",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/holidays/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "holidays",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Holiday",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/holidays/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "holidays",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Holiday\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Holiday",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/holidays/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "holidays",
                ":id"
              ]
            }
          }
        },
        {
          "name": "List Work Regulations",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/work-regulations",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "work-regulations"
              ]
            }
          }
        },
        {
          "name": "Create Work Regulation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/work-regulations",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "work-regulations"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Regulation\",\n  \"content\": \"Content\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Work Regulation",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/work-regulations/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "work-regulations",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Work Regulation",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/work-regulations/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "work-regulations",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Updated Regulation\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Work Regulation",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/work-regulations/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "work-regulations",
                ":id"
              ]
            }
          }
        },
        {
          "name": "List Question Groups",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/question-groups",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "question-groups"
              ]
            }
          }
        },
        {
          "name": "Create Question Group",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/question-groups",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "question-groups"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Group\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Question Group",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/question-groups/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "question-groups",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Question Group",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/question-groups/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "question-groups",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Group\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Question Group",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/question-groups/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "question-groups",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "09. Tickets",
      "item": [
        {
          "name": "Get Statistics",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tickets/statistics",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tickets",
                "statistics"
              ]
            }
          }
        },
        {
          "name": "List Tickets",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tickets",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tickets"
              ]
            }
          }
        },
        {
          "name": "Create Ticket",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tickets",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tickets"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Ticket\",\n  \"description\": \"Description\",\n  \"priority\": \"high\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Ticket",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tickets/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tickets",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Ticket",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tickets/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tickets",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Updated Ticket\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Ticket",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tickets/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tickets",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Export Tickets Excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/tickets/export-excel",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "tickets",
                "export-excel"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"filters\": {},\n  \"columns\": [\n    \"id\",\n    \"title\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "10. SLAs",
      "item": [
        {
          "name": "List SLAs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/slas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "slas"
              ]
            }
          }
        },
        {
          "name": "Create SLA",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/slas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "slas"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"SLA\",\n  \"response_time\": 24\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show SLA",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/slas/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "slas",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update SLA",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/slas/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "slas",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated SLA\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete SLA",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/slas/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "slas",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Export SLAs Excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/slas/export-excel",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "slas",
                "export-excel"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"filters\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List SLA Records",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/slas/:sla_id/records",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "slas",
                ":sla_id",
                "records"
              ]
            }
          }
        },
        {
          "name": "Create SLA Record",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/slas/:sla_id/records",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "slas",
                ":sla_id",
                "records"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"ticket_id\": 1,\n  \"start_time\": \"2024-01-01 09:00:00\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show SLA Record",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/slas/:sla_id/records/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "slas",
                ":sla_id",
                "records",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update SLA Record",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/slas/:sla_id/records/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "slas",
                ":sla_id",
                "records",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"end_time\": \"2024-01-01 17:00:00\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete SLA Record",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/slas/:sla_id/records/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "slas",
                ":sla_id",
                "records",
                ":id"
              ]
            }
          }
        },
        {
          "name": "List SLA Log Hours",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/sla-log-hours",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "sla-log-hours"
              ]
            }
          }
        },
        {
          "name": "Create SLA Log Hour",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/sla-log-hours",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "sla-log-hours"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"sla_id\": 1,\n  \"date\": \"2024-01-01\",\n  \"hours\": 8\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show SLA Log Hour",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/sla-log-hours/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "sla-log-hours",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update SLA Log Hour",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/sla-log-hours/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "sla-log-hours",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"hours\": 9\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete SLA Log Hour",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/sla-log-hours/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "sla-log-hours",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Export SLA Log Hours Excel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/sla-log-hours/export-excel",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "sla-log-hours",
                "export-excel"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"filters\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "11. Project Requests",
      "item": [
        {
          "name": "List New Project Requests",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/new-project-requests",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "new-project-requests"
              ]
            }
          }
        },
        {
          "name": "Create New Project Request",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/new-project-requests",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "new-project-requests"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Request\",\n  \"customer_id\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show New Project Request",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/new-project-requests/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "new-project-requests",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update New Project Request",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/new-project-requests/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "new-project-requests",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Updated Request\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete New Project Request",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/new-project-requests/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "new-project-requests",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "12. Overtimes",
      "item": [
        {
          "name": "List Overtimes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/overtimes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "overtimes"
              ]
            }
          }
        },
        {
          "name": "Create Overtime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/overtimes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "overtimes"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"employee_id\": 1,\n  \"date\": \"2024-01-01\",\n  \"hours\": 2\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Overtime",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/overtimes/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "overtimes",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Overtime",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/overtimes/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "overtimes",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"hours\": 3\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Overtime",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/overtimes/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "overtimes",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "13. Positions",
      "item": [
        {
          "name": "List Positions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/positions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "positions"
              ]
            }
          }
        },
        {
          "name": "Create Position",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/positions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "positions"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Position\",\n  \"department_id\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Position",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/positions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "positions",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Position",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/positions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "positions",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Position\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Position",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/positions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "positions",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "14. Applicants",
      "item": [
        {
          "name": "List Applicants",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicants",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicants"
              ]
            }
          }
        },
        {
          "name": "Create Applicant",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicants",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicants"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Applicant\",\n  \"email\": \"applicant@example.com\",\n  \"position_id\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Applicant",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicants/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicants",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Applicant",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicants/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicants",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Applicant\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Applicant",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicants/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicants",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "15. Leaves",
      "item": [
        {
          "name": "List Leaves",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leaves",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leaves"
              ]
            }
          }
        },
        {
          "name": "Create Leave",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leaves",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leaves"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"employee_id\": 1,\n  \"leave_type\": \"annual\",\n  \"start_date\": \"2024-01-01\",\n  \"end_date\": \"2024-01-05\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Leave",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leaves/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leaves",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Leave",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leaves/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leaves",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"reason\": \"Updated reason\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Leave",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leaves/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leaves",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Take Leave Action",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leaves/:leaf/take-action",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leaves",
                ":leaf",
                "take-action"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"action\": \"approve\",\n  \"notes\": \"Approved\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Withdraw Leave Action",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leaves/:leaf/withdraw-action",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leaves",
                ":leaf",
                "withdraw-action"
              ]
            }
          }
        },
        {
          "name": "Rollback Leave Action",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leaves/:leaf/rollback-action",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leaves",
                ":leaf",
                "rollback-action"
              ]
            }
          }
        },
        {
          "name": "Multi Take Leave Action",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leaves/multi-take-action",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leaves",
                "multi-take-action"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"leave_ids\": [\n    1,\n    2,\n    3\n  ],\n  \"action\": \"approve\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "16. Leave Credits",
      "item": [
        {
          "name": "List Leave Credits",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leave-credits",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leave-credits"
              ]
            }
          }
        },
        {
          "name": "Create Leave Credit",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leave-credits",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leave-credits"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"employee_id\": 1,\n  \"leave_type\": \"annual\",\n  \"days\": 21,\n  \"year\": 2024\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Leave Credit",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leave-credits/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leave-credits",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Leave Credit",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leave-credits/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leave-credits",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"days\": 25\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Leave Credit",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/leave-credits/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "leave-credits",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "17. Applicant Emails",
      "item": [
        {
          "name": "List Applicant Emails",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicant-emails",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicant-emails"
              ]
            }
          }
        },
        {
          "name": "Create Applicant Email",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicant-emails",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicant-emails"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"applicant_id\": 1,\n  \"subject\": \"Subject\",\n  \"body\": \"Body\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Applicant Email",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicant-emails/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicant-emails",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Applicant Email",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicant-emails/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicant-emails",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"subject\": \"Updated Subject\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Applicant Email",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicant-emails/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicant-emails",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "18. Awards",
      "item": [
        {
          "name": "List Awards",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/awards",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "awards"
              ]
            }
          }
        },
        {
          "name": "Create Award",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/awards",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "awards"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"employee_id\": 1,\n  \"award_type_id\": 1,\n  \"date\": \"2024-01-01\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Award",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/awards/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "awards",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Award",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/awards/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "awards",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"description\": \"Updated\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Award",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/awards/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "awards",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "19. Archive Documents",
      "item": [
        {
          "name": "List Archive Documents",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/archive-documents",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "archive-documents"
              ]
            }
          }
        },
        {
          "name": "Create Archive Document",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/archive-documents",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "archive-documents"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Document\",\n  \"description\": \"Description\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Archive Document",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/archive-documents/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "archive-documents",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Archive Document",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/archive-documents/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "archive-documents",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Updated Document\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Archive Document",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/archive-documents/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "archive-documents",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "20. Interview Questions",
      "item": [
        {
          "name": "List Interview Questions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/interview-questions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "interview-questions"
              ]
            }
          }
        },
        {
          "name": "Create Interview Question",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/interview-questions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "interview-questions"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"question_group_id\": 1,\n  \"question\": \"Question?\",\n  \"type\": \"text\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Interview Question",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/interview-questions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "interview-questions",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Interview Question",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/interview-questions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "interview-questions",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"question\": \"Updated Question?\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Interview Question",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/interview-questions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "interview-questions",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "21. Deduction",
      "item": [
        {
          "name": "List Deductions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/deduction",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "deduction"
              ]
            }
          }
        },
        {
          "name": "Create Deduction",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/deduction",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "deduction"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"employee_id\": 1,\n  \"amount\": 100,\n  \"reason\": \"Late\",\n  \"date\": \"2024-01-01\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Deduction",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/deduction/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "deduction",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Deduction",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/deduction/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "deduction",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"amount\": 150\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Deduction",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/deduction/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "deduction",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "22. Assets",
      "item": [
        {
          "name": "List Asset Models",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/asset-model",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "asset-model"
              ]
            }
          }
        },
        {
          "name": "Create Asset Model",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/asset-model",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "asset-model"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Model\",\n  \"manufacturer\": \"Brand\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Asset Model",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/asset-model/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "asset-model",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Asset Model",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/asset-model/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "asset-model",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Model\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Asset Model",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/asset-model/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "asset-model",
                ":id"
              ]
            }
          }
        },
        {
          "name": "List Asset Items",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/asset-item",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "asset-item"
              ]
            }
          }
        },
        {
          "name": "Create Asset Item",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/asset-item",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "asset-item"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"asset_model_id\": 1,\n  \"serial_number\": \"SN123\",\n  \"assigned_to\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Asset Item",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/asset-item/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "asset-item",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Asset Item",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/asset-item/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "asset-item",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"assigned_to\": 2\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Asset Item",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/asset-item/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "asset-item",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "23. Memos",
      "item": [
        {
          "name": "List Memos",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/memo",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "memo"
              ]
            }
          }
        },
        {
          "name": "Create Memo",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/memo",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "memo"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Memo\",\n  \"content\": \"Content\",\n  \"to\": [\n    1,\n    2\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Memo",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/memo/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "memo",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Memo",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/memo/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "memo",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Updated Memo\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Memo",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/memo/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "memo",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "24. Opportunities",
      "item": [
        {
          "name": "List Opportunities",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/opportunities",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "opportunities"
              ]
            }
          }
        },
        {
          "name": "Create Opportunity",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/opportunities",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "opportunities"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Opportunity\",\n  \"customer_id\": 1,\n  \"value\": 50000\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Opportunity",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/opportunities/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "opportunities",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Opportunity",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/opportunities/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "opportunities",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Updated Opportunity\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Opportunity",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/opportunities/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "opportunities",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Add Opportunity Comment",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/opportunities-comment",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "opportunities-comment"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"opportunity_id\": 1,\n  \"comment\": \"Comment\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Opportunity Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/opportunity-status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "opportunity-status"
              ]
            }
          }
        },
        {
          "name": "Create Opportunity Status",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/opportunity-status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "opportunity-status"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Status\",\n  \"color\": \"#FF5733\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Opportunity Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/opportunity-status/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "opportunity-status",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Opportunity Status",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/opportunity-status/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "opportunity-status",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Status\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Opportunity Status",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/opportunity-status/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "opportunity-status",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "25. Award Types",
      "item": [
        {
          "name": "List Award Types",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/award-types",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "award-types"
              ]
            }
          }
        },
        {
          "name": "Create Award Type",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/award-types",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "award-types"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Award Type\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Award Type",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/award-types/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "award-types",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Award Type",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/award-types/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "award-types",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Award Type\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Award Type",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/award-types/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "award-types",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "26. Kitchen Items",
      "item": [
        {
          "name": "List Kitchen Items",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/kitchen-items",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "kitchen-items"
              ]
            }
          }
        },
        {
          "name": "Create Kitchen Item",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/kitchen-items",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "kitchen-items"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Item\",\n  \"price\": 10.5,\n  \"quantity\": 100\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Kitchen Item",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/kitchen-items/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "kitchen-items",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Kitchen Item",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/kitchen-items/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "kitchen-items",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Updated Item\",\n  \"price\": 12.0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Kitchen Item",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/kitchen-items/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "kitchen-items",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "27. Orders",
      "item": [
        {
          "name": "List Orders",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/orders",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "orders"
              ]
            }
          }
        },
        {
          "name": "Create Order",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/orders",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "orders"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"employee_id\": 1,\n  \"items\": [\n    {\n      \"kitchen_item_id\": 1,\n      \"quantity\": 2\n    }\n  ],\n  \"total\": 21.0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Order",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/orders/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "orders",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Order",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/orders/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "orders",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"total\": 25.0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Order",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/orders/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "orders",
                ":id"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "28. General Settings",
      "item": [
        {
          "name": "Get General Settings",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/general-settings",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "general-settings"
              ]
            }
          }
        },
        {
          "name": "Update General Settings",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/general-settings",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "general-settings"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"company_name\": \"Company\",\n  \"company_email\": \"company@example.com\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "29. Audits",
      "item": [
        {
          "name": "List Audits",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/audits",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "audits"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "30. Open Positions",
      "item": [
        {
          "name": "List Open Positions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/open-positions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "open-positions"
              ]
            }
          }
        },
        {
          "name": "Create Open Position",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/open-positions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "open-positions"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Position\",\n  \"department_id\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Open Position",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/open-positions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "open-positions",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Open Position",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/open-positions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "open-positions",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Updated Position\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Open Position",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/open-positions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "open-positions",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Get Statistics",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/open-positions-statistics",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "open-positions-statistics"
              ]
            }
          }
        },
        {
          "name": "Change Activation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/open-positions/:open_position/change-activation",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "open-positions",
                ":open_position",
                "change-activation"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"is_active\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Applicant Open Positions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicant-open-positions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicant-open-positions"
              ]
            }
          }
        },
        {
          "name": "Create Applicant Open Position",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicant-open-positions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicant-open-positions"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"applicant_id\": 1,\n  \"open_position_id\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Show Applicant Open Position",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicant-open-positions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicant-open-positions",
                ":id"
              ]
            }
          }
        },
        {
          "name": "Update Applicant Open Position",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicant-open-positions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicant-open-positions",
                ":id"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"approved\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete Applicant Open Position",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/applicant-open-positions/:id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "applicant-open-positions",
                ":id"
              ]
            }
          }
        }
      ]
    }
  ]
}