{
  "info": {
    "_postman_id": "23a8ccde-6338-4f67-af34-4b307e2c37df",
    "name": "BuzzExpress API",
    "description": "BuzzExpress Transport Management System API\n\nBase URL: http://127.0.0.1:8000\nAll endpoints: /buzzexpress/{resource}/\n\nAuthentication: Token auth \u2014 set apiToken variable to your token.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "item": [
    {
      "name": "menumanager",
      "item": [
        {
          "name": "adminmenugroup",
          "item": [
            {
              "name": "adminmenugroup list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminmenugroup/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminmenugroup",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "OPS",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "adminmenugroup create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"OPS\",\n  \"name\": \"Operations\",\n  \"description\": \"Operations group\",\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminmenugroup/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminmenugroup",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "adminmenugroup retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenugroup/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenugroup",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenugroup record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenugroup update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"OPS\",\n  \"name\": \"Operations\",\n  \"description\": \"Operations group\",\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenugroup/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenugroup",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenugroup record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenugroup partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"OPS\",\n  \"name\": \"Operations\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenugroup/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenugroup",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenugroup record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenugroup delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenugroup/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenugroup",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenugroup record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "adminmenusubgroup",
          "item": [
            {
              "name": "adminmenusubgroup list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroup/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminmenusubgroup",
                    ""
                  ],
                  "query": [
                    {
                      "key": "menugpcode",
                      "value": "OPS",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "adminmenusubgroup create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"menugpcode\": \"OPS\",\n  \"code\": \"FLEET\",\n  \"name\": \"Fleet Management\",\n  \"namespace\": \"fleet\",\n  \"icons\": \"fa fa-bus\",\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroup/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminmenusubgroup",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "adminmenusubgroup retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroup/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubgroup",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubgroup record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenusubgroup update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"menugpcode\": \"OPS\",\n  \"code\": \"FLEET\",\n  \"name\": \"Fleet Management\",\n  \"namespace\": \"fleet\",\n  \"icons\": \"fa fa-bus\",\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroup/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubgroup",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubgroup record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenusubgroup partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"menugpcode\": \"OPS\",\n  \"code\": \"FLEET\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroup/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubgroup",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubgroup record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenusubgroup delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroup/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubgroup",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubgroup record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "adminmenusubgroupdetail",
          "item": [
            {
              "name": "adminmenusubgroupdetail list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroupdetail/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminmenusubgroupdetail",
                    ""
                  ],
                  "query": [
                    {
                      "key": "menucatcode",
                      "value": "FLEET",
                      "disabled": true
                    },
                    {
                      "key": "menugpcode",
                      "value": "OPS",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "sidebar",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "adminmenusubgroupdetail create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"menugpcode\": \"OPS\",\n  \"menucatcode\": \"FLEET\",\n  \"code\": \"FLEET001\",\n  \"icons\": \"fa fa-car\",\n  \"name\": \"Manage Buses\",\n  \"namespace\": \"manage_buses\",\n  \"status\": \"1\",\n  \"notification\": \"0\",\n  \"sidebar\": \"1\",\n  \"dashboard\": \"1\",\n  \"windview\": \"0\",\n  \"admin_accessright\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroupdetail/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminmenusubgroupdetail",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "adminmenusubgroupdetail retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroupdetail/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubgroupdetail",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubgroupdetail record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenusubgroupdetail update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"menugpcode\": \"OPS\",\n  \"menucatcode\": \"FLEET\",\n  \"code\": \"FLEET001\",\n  \"icons\": \"fa fa-car\",\n  \"name\": \"Manage Buses\",\n  \"namespace\": \"manage_buses\",\n  \"status\": \"1\",\n  \"notification\": \"0\",\n  \"sidebar\": \"1\",\n  \"dashboard\": \"1\",\n  \"windview\": \"0\",\n  \"admin_accessright\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroupdetail/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubgroupdetail",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubgroupdetail record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenusubgroupdetail partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"menugpcode\": \"OPS\",\n  \"menucatcode\": \"FLEET\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroupdetail/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubgroupdetail",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubgroupdetail record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenusubgroupdetail delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubgroupdetail/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubgroupdetail",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubgroupdetail record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "adminmenusubusers",
          "item": [
            {
              "name": "adminmenusubusers list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminmenusubusers/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminmenusubusers",
                    ""
                  ],
                  "query": [
                    {
                      "key": "usruserid",
                      "value": "ADM001",
                      "disabled": true
                    },
                    {
                      "key": "menudetcode",
                      "value": "FLEET001",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "adminmenusubusers create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"usruserid\": \"ADM001\",\n  \"menudetcode\": \"FLEET001\",\n  \"status\": \"1\",\n  \"addedby\": \"ADM001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminmenusubusers/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminmenusubusers",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "adminmenusubusers retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubusers/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubusers",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubusers record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenusubusers update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"usruserid\": \"ADM001\",\n  \"menudetcode\": \"FLEET001\",\n  \"status\": \"1\",\n  \"addedby\": \"ADM001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubusers/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubusers",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubusers record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenusubusers partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"usruserid\": \"ADM001\",\n  \"menudetcode\": \"FLEET001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubusers/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubusers",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubusers record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminmenusubusers delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminmenusubusers/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminmenusubusers",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminmenusubusers record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "adminmenumanager",
      "item": [
        {
          "name": "adminusers",
          "item": [
            {
              "name": "adminusers list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminusers/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminusers",
                    ""
                  ],
                  "query": [
                    {
                      "key": "username",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "email",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "level",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "adminusers create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"ADM001\",\n  \"surname\": \"Doe\",\n  \"othernames\": \"John\",\n  \"password\": \"hashed_password\",\n  \"username\": \"johndoe\",\n  \"emergencyphone\": \"0200000000\",\n  \"phoneno\": \"0241234567\",\n  \"level\": 1,\n  \"email\": \"john@buzzexpress.com\",\n  \"status\": \"1\",\n  \"actorid\": \"ADM001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminusers/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminusers",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "adminusers retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminusers/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminusers",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminusers record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminusers update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"ADM001\",\n  \"surname\": \"Doe\",\n  \"othernames\": \"John\",\n  \"password\": \"hashed_password\",\n  \"username\": \"johndoe\",\n  \"emergencyphone\": \"0200000000\",\n  \"phoneno\": \"0241234567\",\n  \"level\": 1,\n  \"email\": \"john@buzzexpress.com\",\n  \"status\": \"1\",\n  \"actorid\": \"ADM001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminusers/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminusers",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminusers record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminusers partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"ADM001\",\n  \"surname\": \"Doe\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminusers/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminusers",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminusers record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminusers delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminusers/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminusers",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminusers record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "adminuserpermission",
          "item": [
            {
              "name": "adminuserpermission list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminuserpermission/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminuserpermission",
                    ""
                  ],
                  "query": [
                    {
                      "key": "usruserid",
                      "value": "ADM001",
                      "disabled": true
                    },
                    {
                      "key": "menudetcode",
                      "value": "FLEET001",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "adminuserpermission create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"usruserid\": \"ADM001\",\n  \"menudetcode\": \"FLEET001\",\n  \"status\": \"1\",\n  \"addedby\": \"ADM001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminuserpermission/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminuserpermission",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "adminuserpermission retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminuserpermission/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminuserpermission",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminuserpermission record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminuserpermission update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"usruserid\": \"ADM001\",\n  \"menudetcode\": \"FLEET001\",\n  \"status\": \"1\",\n  \"addedby\": \"ADM001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminuserpermission/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminuserpermission",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminuserpermission record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminuserpermission partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"usruserid\": \"ADM001\",\n  \"menudetcode\": \"FLEET001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminuserpermission/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminuserpermission",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminuserpermission record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminuserpermission delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminuserpermission/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminuserpermission",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminuserpermission record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "admineventlog",
          "item": [
            {
              "name": "admineventlog list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/admineventlog/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "admineventlog",
                    ""
                  ],
                  "query": [
                    {
                      "key": "evtcode",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "memid",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "name",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "admineventlog create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"evtcode\": \"EVT001\",\n  \"memid\": \"ADM001\",\n  \"name\": \"Login\",\n  \"activities\": \"User logged in\",\n  \"ip\": \"127.0.0.1\",\n  \"session_id\": \"abc123\",\n  \"browser\": \"Chrome\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/admineventlog/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "admineventlog",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "admineventlog retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/admineventlog/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "admineventlog",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the admineventlog record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "admineventlog update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"evtcode\": \"EVT001\",\n  \"memid\": \"ADM001\",\n  \"name\": \"Login\",\n  \"activities\": \"User logged in\",\n  \"ip\": \"127.0.0.1\",\n  \"session_id\": \"abc123\",\n  \"browser\": \"Chrome\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/admineventlog/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "admineventlog",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the admineventlog record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "admineventlog partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"evtcode\": \"EVT001\",\n  \"memid\": \"ADM001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/admineventlog/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "admineventlog",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the admineventlog record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "admineventlog delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/admineventlog/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "admineventlog",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the admineventlog record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "admineventtype",
          "item": [
            {
              "name": "admineventtype list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/admineventtype/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "admineventtype",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "name",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "admineventtype create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"EVT001\",\n  \"name\": \"Login Event\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/admineventtype/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "admineventtype",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "admineventtype retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/admineventtype/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "admineventtype",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the admineventtype record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "admineventtype update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"EVT001\",\n  \"name\": \"Login Event\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/admineventtype/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "admineventtype",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the admineventtype record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "admineventtype partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"EVT001\",\n  \"name\": \"Login Event\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/admineventtype/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "admineventtype",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the admineventtype record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "admineventtype delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/admineventtype/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "admineventtype",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the admineventtype record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "adminpositions",
          "item": [
            {
              "name": "adminpositions list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminpositions/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminpositions",
                    ""
                  ],
                  "query": [
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "adminpositions create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"name\": \"Operations Manager\",\n  \"description\": \"Manages daily operations\",\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/adminpositions/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "adminpositions",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "adminpositions retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminpositions/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminpositions",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminpositions record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminpositions update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"name\": \"Operations Manager\",\n  \"description\": \"Manages daily operations\",\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminpositions/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminpositions",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminpositions record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminpositions partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"status\": \"0\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminpositions/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminpositions",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminpositions record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "adminpositions delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/adminpositions/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "adminpositions",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the adminpositions record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "profiles",
      "item": [
        {
          "name": "passengerprofile",
          "item": [
            {
              "name": "passengerprofile list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/passengerprofile/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "passengerprofile",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "otp_verified",
                      "value": "0",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "passengerprofile create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"PASS001\",\n  \"fullname\": \"Jane Mensah\",\n  \"phone\": \"0241234567\",\n  \"email\": \"jane@example.com\",\n  \"otp_verified\": \"0\",\n  \"wallet_code\": \"\",\n  \"referral_code\": \"\",\n  \"referred_by\": \"\",\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/passengerprofile/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "passengerprofile",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "passengerprofile retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/passengerprofile/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "passengerprofile",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the passengerprofile record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "passengerprofile update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"PASS001\",\n  \"fullname\": \"Jane Mensah\",\n  \"phone\": \"0241234567\",\n  \"email\": \"jane@example.com\",\n  \"otp_verified\": \"0\",\n  \"wallet_code\": \"\",\n  \"referral_code\": \"\",\n  \"referred_by\": \"\",\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/passengerprofile/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "passengerprofile",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the passengerprofile record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "passengerprofile partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"PASS001\",\n  \"fullname\": \"Jane Mensah\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/passengerprofile/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "passengerprofile",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the passengerprofile record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "passengerprofile delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/passengerprofile/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "passengerprofile",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the passengerprofile record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "driverprofile",
          "item": [
            {
              "name": "driverprofile list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/driverprofile/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "driverprofile",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "verified_status",
                      "value": "0",
                      "disabled": true
                    },
                    {
                      "key": "company_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "driverprofile create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"DRV001\",\n  \"fullname\": \"Kwame Asante\",\n  \"phone\": \"0551234567\",\n  \"email\": \"kwame@example.com\",\n  \"license_no\": \"GH-DL-001\",\n  \"license_expiry\": \"2027-12-31\",\n  \"company_code\": \"COMP001\",\n  \"wallet_code\": \"\",\n  \"verified_status\": \"0\",\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/driverprofile/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "driverprofile",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "driverprofile retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/driverprofile/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "driverprofile",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the driverprofile record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "driverprofile update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"DRV001\",\n  \"fullname\": \"Kwame Asante\",\n  \"phone\": \"0551234567\",\n  \"email\": \"kwame@example.com\",\n  \"license_no\": \"GH-DL-001\",\n  \"license_expiry\": \"2027-12-31\",\n  \"company_code\": \"COMP001\",\n  \"wallet_code\": \"\",\n  \"verified_status\": \"0\",\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/driverprofile/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "driverprofile",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the driverprofile record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "driverprofile partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"DRV001\",\n  \"fullname\": \"Kwame Asante\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/driverprofile/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "driverprofile",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the driverprofile record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "driverprofile delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/driverprofile/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "driverprofile",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the driverprofile record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "transportcompany",
          "item": [
            {
              "name": "transportcompany list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/transportcompany/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "transportcompany",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "verified_status",
                      "value": "0",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "transportcompany create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"COMP001\",\n  \"name\": \"Express Lines Ltd\",\n  \"contact_phone\": \"0302000000\",\n  \"contact_email\": \"info@expresslines.com\",\n  \"address\": \"Accra, Ghana\",\n  \"wallet_code\": \"\",\n  \"commission_rate\": \"10.00\",\n  \"verified_status\": \"0\",\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/transportcompany/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "transportcompany",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "transportcompany retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/transportcompany/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "transportcompany",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the transportcompany record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "transportcompany update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"COMP001\",\n  \"name\": \"Express Lines Ltd\",\n  \"contact_phone\": \"0302000000\",\n  \"contact_email\": \"info@expresslines.com\",\n  \"address\": \"Accra, Ghana\",\n  \"wallet_code\": \"\",\n  \"commission_rate\": \"10.00\",\n  \"verified_status\": \"0\",\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/transportcompany/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "transportcompany",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the transportcompany record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "transportcompany partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"COMP001\",\n  \"name\": \"Express Lines Ltd\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/transportcompany/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "transportcompany",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the transportcompany record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "transportcompany delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/transportcompany/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "transportcompany",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the transportcompany record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "fleet",
      "item": [
        {
          "name": "bus",
          "item": [
            {
              "name": "bus list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/bus/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "bus",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "verified_status",
                      "value": "0",
                      "disabled": true
                    },
                    {
                      "key": "driver_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "company_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "bus create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"BUS001\",\n  \"plate_number\": \"GR-1234-23\",\n  \"bus_type\": \"Coach\",\n  \"capacity\": 45,\n  \"driver_code\": \"DRV001\",\n  \"company_code\": \"COMP001\",\n  \"verified_status\": \"0\",\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/bus/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "bus",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "bus retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/bus/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "bus",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the bus record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "bus update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"BUS001\",\n  \"plate_number\": \"GR-1234-23\",\n  \"bus_type\": \"Coach\",\n  \"capacity\": 45,\n  \"driver_code\": \"DRV001\",\n  \"company_code\": \"COMP001\",\n  \"verified_status\": \"0\",\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/bus/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "bus",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the bus record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "bus partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"BUS001\",\n  \"plate_number\": \"GR-1234-23\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/bus/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "bus",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the bus record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "bus delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/bus/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "bus",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the bus record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "busseatlayout",
          "item": [
            {
              "name": "busseatlayout list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/busseatlayout/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "busseatlayout",
                    ""
                  ],
                  "query": [
                    {
                      "key": "bus_code",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "busseatlayout create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bus_code\": \"BUS001\",\n  \"rows\": 10,\n  \"cols\": 4,\n  \"layout_json\": {\n    \"seats\": []\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/busseatlayout/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "busseatlayout",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "busseatlayout retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/busseatlayout/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "busseatlayout",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the busseatlayout record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "busseatlayout update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"bus_code\": \"BUS001\",\n  \"rows\": 10,\n  \"cols\": 4,\n  \"layout_json\": {\n    \"seats\": []\n  }\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/busseatlayout/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "busseatlayout",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the busseatlayout record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "busseatlayout partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"bus_code\": \"BUS001\",\n  \"rows\": 10\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/busseatlayout/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "busseatlayout",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the busseatlayout record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "busseatlayout delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/busseatlayout/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "busseatlayout",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the busseatlayout record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "routes_trips",
      "item": [
        {
          "name": "route",
          "item": [
            {
              "name": "route list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/route/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "route",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "origin_city",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "destination_city",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "route create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"RTE001\",\n  \"origin_city\": \"Accra\",\n  \"destination_city\": \"Kumasi\",\n  \"distance_km\": \"248.00\",\n  \"estimated_duration_mins\": 240,\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/route/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "route",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "route retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/route/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "route",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the route record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "route update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"RTE001\",\n  \"origin_city\": \"Accra\",\n  \"destination_city\": \"Kumasi\",\n  \"distance_km\": \"248.00\",\n  \"estimated_duration_mins\": 240,\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/route/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "route",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the route record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "route partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"RTE001\",\n  \"origin_city\": \"Accra\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/route/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "route",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the route record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "route delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/route/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "route",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the route record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "trip",
          "item": [
            {
              "name": "trip list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/trip/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "trip",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "active",
                      "disabled": true
                    },
                    {
                      "key": "route_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "bus_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "driver_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "trip create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"TRP001\",\n  \"route_code\": \"RTE001\",\n  \"bus_code\": \"BUS001\",\n  \"driver_code\": \"DRV001\",\n  \"departure_datetime\": \"2026-03-10T07:00:00Z\",\n  \"arrival_datetime\": \"2026-03-10T11:00:00Z\",\n  \"price_per_seat\": \"80.00\",\n  \"available_seats\": 45,\n  \"status\": \"active\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/trip/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "trip",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "trip retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/trip/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "trip",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the trip record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "trip update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"TRP001\",\n  \"route_code\": \"RTE001\",\n  \"bus_code\": \"BUS001\",\n  \"driver_code\": \"DRV001\",\n  \"departure_datetime\": \"2026-03-10T07:00:00Z\",\n  \"arrival_datetime\": \"2026-03-10T11:00:00Z\",\n  \"price_per_seat\": \"80.00\",\n  \"available_seats\": 45,\n  \"status\": \"active\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/trip/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "trip",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the trip record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "trip partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"TRP001\",\n  \"route_code\": \"RTE001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/trip/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "trip",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the trip record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "trip delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/trip/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "trip",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the trip record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "bookings",
      "item": [
        {
          "name": "booking",
          "item": [
            {
              "name": "booking list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/booking/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "booking",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "pending",
                      "disabled": true
                    },
                    {
                      "key": "passenger_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "trip_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "booking create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"BKG001\",\n  \"booking_ref\": \"BZ-2026-001\",\n  \"passenger_code\": \"PASS001\",\n  \"trip_code\": \"TRP001\",\n  \"seats_count\": 2,\n  \"total_amount\": \"160.00\",\n  \"commission_amount\": \"16.00\",\n  \"promo_code\": \"\",\n  \"discount_amount\": \"0.00\",\n  \"status\": \"pending\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/booking/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "booking",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "booking retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/booking/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "booking",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the booking record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "booking update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"BKG001\",\n  \"booking_ref\": \"BZ-2026-001\",\n  \"passenger_code\": \"PASS001\",\n  \"trip_code\": \"TRP001\",\n  \"seats_count\": 2,\n  \"total_amount\": \"160.00\",\n  \"commission_amount\": \"16.00\",\n  \"promo_code\": \"\",\n  \"discount_amount\": \"0.00\",\n  \"status\": \"pending\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/booking/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "booking",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the booking record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "booking partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"BKG001\",\n  \"booking_ref\": \"BZ-2026-001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/booking/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "booking",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the booking record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "booking delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/booking/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "booking",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the booking record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "bookingseat",
          "item": [
            {
              "name": "bookingseat list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/bookingseat/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "bookingseat",
                    ""
                  ],
                  "query": [
                    {
                      "key": "booking_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "seat_number",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "bookingseat create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"booking_code\": \"BKG001\",\n  \"seat_number\": \"A1\",\n  \"passenger_name\": \"Jane Mensah\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/bookingseat/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "bookingseat",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "bookingseat retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/bookingseat/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "bookingseat",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the bookingseat record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "bookingseat update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"booking_code\": \"BKG001\",\n  \"seat_number\": \"A1\",\n  \"passenger_name\": \"Jane Mensah\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/bookingseat/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "bookingseat",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the bookingseat record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "bookingseat partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"booking_code\": \"BKG001\",\n  \"seat_number\": \"A1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/bookingseat/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "bookingseat",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the bookingseat record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "bookingseat delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/bookingseat/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "bookingseat",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the bookingseat record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "cancellationpolicy",
          "item": [
            {
              "name": "cancellationpolicy list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/cancellationpolicy/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "cancellationpolicy",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "search",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "cancellationpolicy create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"POL001\",\n  \"name\": \"24 Hour Policy\",\n  \"hours_before_departure\": 24,\n  \"refund_percentage\": \"75.00\",\n  \"description\": \"Cancel 24hrs before for 75% refund\",\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/cancellationpolicy/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "cancellationpolicy",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "cancellationpolicy retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/cancellationpolicy/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "cancellationpolicy",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the cancellationpolicy record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "cancellationpolicy update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"POL001\",\n  \"name\": \"24 Hour Policy\",\n  \"hours_before_departure\": 24,\n  \"refund_percentage\": \"75.00\",\n  \"description\": \"Cancel 24hrs before for 75% refund\",\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/cancellationpolicy/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "cancellationpolicy",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the cancellationpolicy record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "cancellationpolicy partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"POL001\",\n  \"name\": \"24 Hour Policy\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/cancellationpolicy/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "cancellationpolicy",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the cancellationpolicy record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "cancellationpolicy delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/cancellationpolicy/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "cancellationpolicy",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the cancellationpolicy record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "payments_wallet",
      "item": [
        {
          "name": "wallet",
          "item": [
            {
              "name": "wallet list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/wallet/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "wallet",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "owner_type",
                      "value": "passenger",
                      "disabled": true
                    },
                    {
                      "key": "owner_code",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "wallet create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"WAL001\",\n  \"owner_type\": \"passenger\",\n  \"owner_code\": \"PASS001\",\n  \"balance\": \"0.00\",\n  \"currency\": \"GHS\",\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/wallet/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "wallet",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "wallet retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/wallet/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "wallet",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the wallet record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "wallet update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"WAL001\",\n  \"owner_type\": \"passenger\",\n  \"owner_code\": \"PASS001\",\n  \"balance\": \"0.00\",\n  \"currency\": \"GHS\",\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/wallet/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "wallet",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the wallet record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "wallet partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"WAL001\",\n  \"owner_type\": \"passenger\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/wallet/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "wallet",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the wallet record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "wallet delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/wallet/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "wallet",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the wallet record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "wallettransaction",
          "item": [
            {
              "name": "wallettransaction list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/wallettransaction/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "wallettransaction",
                    ""
                  ],
                  "query": [
                    {
                      "key": "wallet_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "txn_type",
                      "value": "credit",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "wallettransaction create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"TXN001\",\n  \"wallet_code\": \"WAL001\",\n  \"txn_type\": \"credit\",\n  \"amount\": \"100.00\",\n  \"reference\": \"REF001\",\n  \"description\": \"Top up\",\n  \"balance_after\": \"100.00\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/wallettransaction/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "wallettransaction",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "wallettransaction retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/wallettransaction/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "wallettransaction",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the wallettransaction record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "wallettransaction update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"TXN001\",\n  \"wallet_code\": \"WAL001\",\n  \"txn_type\": \"credit\",\n  \"amount\": \"100.00\",\n  \"reference\": \"REF001\",\n  \"description\": \"Top up\",\n  \"balance_after\": \"100.00\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/wallettransaction/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "wallettransaction",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the wallettransaction record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "wallettransaction partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"TXN001\",\n  \"wallet_code\": \"WAL001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/wallettransaction/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "wallettransaction",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the wallettransaction record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "wallettransaction delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/wallettransaction/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "wallettransaction",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the wallettransaction record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "payment",
          "item": [
            {
              "name": "payment list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/payment/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "payment",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "pending",
                      "disabled": true
                    },
                    {
                      "key": "method",
                      "value": "mobile_money",
                      "disabled": true
                    },
                    {
                      "key": "booking_code",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "payment create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"PAY001\",\n  \"booking_code\": \"BKG001\",\n  \"method\": \"mobile_money\",\n  \"amount\": \"160.00\",\n  \"currency\": \"GHS\",\n  \"gateway_ref\": \"\",\n  \"status\": \"pending\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/payment/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "payment",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "payment retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/payment/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "payment",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the payment record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "payment update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"PAY001\",\n  \"booking_code\": \"BKG001\",\n  \"method\": \"mobile_money\",\n  \"amount\": \"160.00\",\n  \"currency\": \"GHS\",\n  \"gateway_ref\": \"\",\n  \"status\": \"pending\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/payment/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "payment",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the payment record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "payment partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"PAY001\",\n  \"booking_code\": \"BKG001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/payment/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "payment",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the payment record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "payment delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/payment/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "payment",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the payment record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "commission",
          "item": [
            {
              "name": "commission list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/commission/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "commission",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "operator_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "operator_type",
                      "value": "driver",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "commission create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"COM001\",\n  \"operator_code\": \"DRV001\",\n  \"operator_type\": \"driver\",\n  \"percentage\": \"10.00\",\n  \"effective_date\": \"2026-01-01\",\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/commission/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "commission",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "commission retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/commission/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "commission",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the commission record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "commission update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"COM001\",\n  \"operator_code\": \"DRV001\",\n  \"operator_type\": \"driver\",\n  \"percentage\": \"10.00\",\n  \"effective_date\": \"2026-01-01\",\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/commission/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "commission",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the commission record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "commission partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"COM001\",\n  \"operator_code\": \"DRV001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/commission/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "commission",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the commission record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "commission delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/commission/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "commission",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the commission record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "payoutrequest",
          "item": [
            {
              "name": "payoutrequest list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/payoutrequest/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "payoutrequest",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "pending",
                      "disabled": true
                    },
                    {
                      "key": "owner_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "owner_type",
                      "value": "driver",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "payoutrequest create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"PYT001\",\n  \"owner_code\": \"DRV001\",\n  \"owner_type\": \"driver\",\n  \"amount\": \"500.00\",\n  \"wallet_code\": \"WAL001\",\n  \"status\": \"pending\",\n  \"note\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/payoutrequest/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "payoutrequest",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "payoutrequest retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/payoutrequest/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "payoutrequest",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the payoutrequest record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "payoutrequest update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"PYT001\",\n  \"owner_code\": \"DRV001\",\n  \"owner_type\": \"driver\",\n  \"amount\": \"500.00\",\n  \"wallet_code\": \"WAL001\",\n  \"status\": \"pending\",\n  \"note\": \"\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/payoutrequest/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "payoutrequest",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the payoutrequest record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "payoutrequest partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"PYT001\",\n  \"owner_code\": \"DRV001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/payoutrequest/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "payoutrequest",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the payoutrequest record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "payoutrequest delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/payoutrequest/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "payoutrequest",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the payoutrequest record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "engagement",
      "item": [
        {
          "name": "promocode",
          "item": [
            {
              "name": "promocode list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/promocode/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "promocode",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "discount_type",
                      "value": "percent",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "promocode create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"PROMO10\",\n  \"discount_type\": \"percent\",\n  \"discount_value\": \"10.00\",\n  \"min_booking_amount\": \"50.00\",\n  \"expiry_date\": \"2026-12-31T23:59:59Z\",\n  \"usage_limit\": 100,\n  \"used_count\": 0,\n  \"status\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/promocode/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "promocode",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "promocode retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/promocode/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "promocode",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the promocode record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "promocode update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"PROMO10\",\n  \"discount_type\": \"percent\",\n  \"discount_value\": \"10.00\",\n  \"min_booking_amount\": \"50.00\",\n  \"expiry_date\": \"2026-12-31T23:59:59Z\",\n  \"usage_limit\": 100,\n  \"used_count\": 0,\n  \"status\": \"1\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/promocode/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "promocode",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the promocode record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "promocode partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"PROMO10\",\n  \"discount_type\": \"percent\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/promocode/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "promocode",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the promocode record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "promocode delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/promocode/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "promocode",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the promocode record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "promocodeusage",
          "item": [
            {
              "name": "promocodeusage list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/promocodeusage/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "promocodeusage",
                    ""
                  ],
                  "query": [
                    {
                      "key": "promo_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "passenger_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "booking_code",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "promocodeusage create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"promo_code\": \"PROMO10\",\n  \"passenger_code\": \"PASS001\",\n  \"booking_code\": \"BKG001\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/promocodeusage/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "promocodeusage",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "promocodeusage retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/promocodeusage/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "promocodeusage",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the promocodeusage record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "promocodeusage update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"promo_code\": \"PROMO10\",\n  \"passenger_code\": \"PASS001\",\n  \"booking_code\": \"BKG001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/promocodeusage/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "promocodeusage",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the promocodeusage record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "promocodeusage partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"promo_code\": \"PROMO10\",\n  \"passenger_code\": \"PASS001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/promocodeusage/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "promocodeusage",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the promocodeusage record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "promocodeusage delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/promocodeusage/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "promocodeusage",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the promocodeusage record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "referral",
          "item": [
            {
              "name": "referral list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/referral/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "referral",
                    ""
                  ],
                  "query": [
                    {
                      "key": "referrer_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "referee_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "pending",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "referral create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"referrer_code\": \"PASS001\",\n  \"referee_code\": \"PASS002\",\n  \"status\": \"pending\",\n  \"reward_amount\": \"20.00\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/referral/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "referral",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "referral retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/referral/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "referral",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the referral record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "referral update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"referrer_code\": \"PASS001\",\n  \"referee_code\": \"PASS002\",\n  \"status\": \"pending\",\n  \"reward_amount\": \"20.00\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/referral/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "referral",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the referral record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "referral partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"referrer_code\": \"PASS001\",\n  \"referee_code\": \"PASS002\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/referral/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "referral",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the referral record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "referral delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/referral/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "referral",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the referral record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "rating",
          "item": [
            {
              "name": "rating list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/rating/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "rating",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "trip_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "rater_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "rater_type",
                      "value": "passenger",
                      "disabled": true
                    },
                    {
                      "key": "ratee_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "ratee_type",
                      "value": "driver",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "rating create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"RTG001\",\n  \"trip_code\": \"TRP001\",\n  \"rater_code\": \"PASS001\",\n  \"rater_type\": \"passenger\",\n  \"ratee_code\": \"DRV001\",\n  \"ratee_type\": \"driver\",\n  \"score\": 5,\n  \"comment\": \"Excellent service\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/rating/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "rating",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "rating retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/rating/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "rating",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the rating record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "rating update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"RTG001\",\n  \"trip_code\": \"TRP001\",\n  \"rater_code\": \"PASS001\",\n  \"rater_type\": \"passenger\",\n  \"ratee_code\": \"DRV001\",\n  \"ratee_type\": \"driver\",\n  \"score\": 5,\n  \"comment\": \"Excellent service\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/rating/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "rating",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the rating record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "rating partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"RTG001\",\n  \"trip_code\": \"TRP001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/rating/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "rating",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the rating record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "rating delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/rating/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "rating",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the rating record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "realtime",
      "item": [
        {
          "name": "tripgpslog",
          "item": [
            {
              "name": "tripgpslog list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/tripgpslog/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "tripgpslog",
                    ""
                  ],
                  "query": [
                    {
                      "key": "trip_code",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "tripgpslog create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"trip_code\": \"TRP001\",\n  \"latitude\": \"5.6037000\",\n  \"longitude\": \"-0.1870000\",\n  \"speed_kmh\": \"80.00\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/tripgpslog/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "tripgpslog",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "tripgpslog retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/tripgpslog/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "tripgpslog",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the tripgpslog record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "tripgpslog update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"trip_code\": \"TRP001\",\n  \"latitude\": \"5.6037000\",\n  \"longitude\": \"-0.1870000\",\n  \"speed_kmh\": \"80.00\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/tripgpslog/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "tripgpslog",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the tripgpslog record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "tripgpslog partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"trip_code\": \"TRP001\",\n  \"latitude\": \"5.6037000\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/tripgpslog/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "tripgpslog",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the tripgpslog record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "tripgpslog delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/tripgpslog/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "tripgpslog",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the tripgpslog record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "chatmessage",
          "item": [
            {
              "name": "chatmessage list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/chatmessage/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "chatmessage",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "trip_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "booking_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "sender_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "sender_type",
                      "value": "passenger",
                      "disabled": true
                    },
                    {
                      "key": "recipient_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "is_read",
                      "value": "0",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "chatmessage create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"MSG001\",\n  \"trip_code\": \"TRP001\",\n  \"booking_code\": \"BKG001\",\n  \"sender_code\": \"PASS001\",\n  \"sender_type\": \"passenger\",\n  \"recipient_code\": \"DRV001\",\n  \"recipient_type\": \"driver\",\n  \"message\": \"Hello, when do we depart?\",\n  \"is_read\": \"0\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/chatmessage/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "chatmessage",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "chatmessage retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/chatmessage/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "chatmessage",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the chatmessage record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "chatmessage update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"MSG001\",\n  \"trip_code\": \"TRP001\",\n  \"booking_code\": \"BKG001\",\n  \"sender_code\": \"PASS001\",\n  \"sender_type\": \"passenger\",\n  \"recipient_code\": \"DRV001\",\n  \"recipient_type\": \"driver\",\n  \"message\": \"Hello, when do we depart?\",\n  \"is_read\": \"0\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/chatmessage/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "chatmessage",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the chatmessage record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "chatmessage partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"MSG001\",\n  \"trip_code\": \"TRP001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/chatmessage/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "chatmessage",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the chatmessage record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "chatmessage delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/chatmessage/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "chatmessage",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the chatmessage record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "admin_ops",
      "item": [
        {
          "name": "dispute",
          "item": [
            {
              "name": "dispute list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/dispute/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "dispute",
                    ""
                  ],
                  "query": [
                    {
                      "key": "code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "status",
                      "value": "open",
                      "disabled": true
                    },
                    {
                      "key": "booking_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "raised_by_code",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "raised_by_type",
                      "value": "passenger",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "dispute create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"DIS001\",\n  \"booking_code\": \"BKG001\",\n  \"raised_by_code\": \"PASS001\",\n  \"raised_by_type\": \"passenger\",\n  \"description\": \"Driver did not show up\",\n  \"status\": \"open\",\n  \"resolution\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/dispute/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "dispute",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "dispute retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/dispute/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "dispute",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the dispute record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "dispute update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"DIS001\",\n  \"booking_code\": \"BKG001\",\n  \"raised_by_code\": \"PASS001\",\n  \"raised_by_type\": \"passenger\",\n  \"description\": \"Driver did not show up\",\n  \"status\": \"open\",\n  \"resolution\": \"\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/dispute/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "dispute",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the dispute record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "dispute partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"DIS001\",\n  \"booking_code\": \"BKG001\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/dispute/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "dispute",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the dispute record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "dispute delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/dispute/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "dispute",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the dispute record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "otpverification",
          "item": [
            {
              "name": "otpverification list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/otpverification/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "otpverification",
                    ""
                  ],
                  "query": [
                    {
                      "key": "contact",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "contact_type",
                      "value": "phone",
                      "disabled": true
                    },
                    {
                      "key": "is_used",
                      "value": "0",
                      "disabled": true
                    },
                    {
                      "key": "purpose",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "otpverification create",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Token {{apiToken}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"code\": \"OTP001\",\n  \"contact\": \"0241234567\",\n  \"contact_type\": \"phone\",\n  \"otp_code\": \"123456\",\n  \"purpose\": \"registration\",\n  \"expires_at\": \"2026-03-10T08:00:00Z\",\n  \"is_used\": \"0\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{baseUrl}}/buzzexpress/otpverification/",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "buzzexpress",
                    "otpverification",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "{id}",
              "item": [
                {
                  "name": "otpverification retrieve",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/otpverification/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "otpverification",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the otpverification record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "otpverification update",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"OTP001\",\n  \"contact\": \"0241234567\",\n  \"contact_type\": \"phone\",\n  \"otp_code\": \"123456\",\n  \"purpose\": \"registration\",\n  \"expires_at\": \"2026-03-10T08:00:00Z\",\n  \"is_used\": \"0\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/otpverification/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "otpverification",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the otpverification record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "otpverification partial update",
                  "request": {
                    "method": "PATCH",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\n  \"code\": \"OTP001\",\n  \"contact\": \"0241234567\"\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/otpverification/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "otpverification",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the otpverification record"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "otpverification delete",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Token {{apiToken}}",
                        "type": "text"
                      },
                      {
                        "key": "Accept",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{baseUrl}}/buzzexpress/otpverification/:id/",
                      "host": [
                        "{{baseUrl}}"
                      ],
                      "path": [
                        "buzzexpress",
                        "otpverification",
                        ":id",
                        ""
                      ],
                      "variable": [
                        {
                          "key": "id",
                          "value": "1",
                          "description": "ID of the otpverification record"
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ]
    }
  ],
  "variable": [
    {
      "key": "baseUrl",
      "value": "http://127.0.0.1:8000",
      "type": "string"
    },
    {
      "key": "apiToken",
      "value": "e6b05e2d3cf2829dc13bfe0700c1dc4dc522404c",
      "type": "string"
    }
  ]
}