{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/api.powerly.app"
        }
    ],
    "info": {
        "name": "Powerly API documentation",
        "_postman_id": "bfbde1bf-deab-4898-b981-3f7bded22f49",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "App builder",
            "description": "",
            "item": [
                {
                    "name": "Update an existing build.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/builds\/:build_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/builds\/:build_id",
                            "variable": [
                                {
                                    "id": "build_id",
                                    "key": "build_id",
                                    "value": "3",
                                    "description": "The ID of the build."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"package_name\":\"com.mycompany.myapp\",\"app_name\":\"Charge Finder\",\"app_slogan\":\"Find your next charge fast!\",\"places_api_key\":\"AIzaSyD-EXAMPLEKEY123456\",\"app_locale\":[\"en:English\"],\"color_primary\":\"#0A84FF\",\"color_secondary\":\"#FF9500\",\"support_number\":\"+1234567890\",\"privacy_policy_url\":\"https:\\\/\\\/example.com\\\/privacy\",\"terms_and_conditions_url\":\"https:\\\/\\\/example.com\\\/terms\",\"key_alias\":\"my-key-alias\",\"store_password\":\"storepassword123\",\"key_password\":\"keypassword123\",\"minimized\":1,\"bundle\":0,\"ios\":0}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"data\": {\n          \"id\": 6,\n          \"app_config\": {\n              \"icon\": [],\n              \"logo\": [],\n              \"bundle\": \"true\",\n              \"api_url\": \"http:\/\/localhost:8080\/api\/v1\/\",\n              \"app_name\": \"My Awesome App\",\n              \"api_token\": \"192|LS5V9ZxnNCoB8hqgnmmvyr8VaDagXy63ZDRENvNRdd053acb\",\n              \"key_alias\": \"key_alias\",\n              \"minimized\": \"true\",\n              \"app_locale\": [\n                  \"en:English\",\n                  \"ar:Arabic (\u0627\u0644\u0639\u0631\u0628\u064a\u0629)\",\n                  \"es:Spanish (Espa\u00f1ol)\",\n                  \"fr:French (Fran\u00e7ais)\"\n              ],\n              \"app_slogan\": \"The best app ever\",\n              \"key_password\": \"key_password\",\n              \"package_name\": \"com.powerly.yasser\",\n              \"color_primary\": \"#00BFFF\",\n              \"places_api_key\": \"your_google_maps_api_key\",\n              \"store_password\": \"store_password\",\n              \"support_number\": \"+1234567890\",\n              \"color_secondary\": \"#FF8C00\",\n              \"privacy_policy_url\": \"https:\/\/example.com\/privacy\",\n              \"terms_and_conditions_url\": \"https:\/\/example.com\/terms\"\n          },\n          \"status\": \"Waiting for Payment\",\n          \"created_at\": \"2025-05-07T11:38:48.000000Z\"\n      },\n      \"success\": 1,\n      \"message\": \"Updated successfully!\"\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"success\": 0,\"message\": \"The API key is invalid or missing.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0, \"message\": \"Access denied.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": 0, \"message\": \"Record not found.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Validation failed.\",\n  \"errors\": {\n    \"name\": [\"The name field is required.\"]\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0, \"message\": \"Failed!\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the list of builds.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/builds",
                            "query": [
                                {
                                    "key": "itemsPerPage",
                                    "value": "19",
                                    "description": "Number of builds per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/builds?itemsPerPage=19"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n\t\"id\": 5,\n\t\"app_config\": {\n\t\t\"icon\": [],\n\t\t\"logo\": [],\n\t\t\"bundle\": \"true\",\n\t\t\"api_url\": \"https:\/\/test-api.powerly.app\/api\/v1\/\",\n\t\t\"app_name\": \"My Awesome App\",\n\t\t\"api_token\": \"1932|evcaW9R8SanGNcM7PVm6aFcAycRSYwtoyS9GymAd00750342\",\n\t\t\"key_alias\": \"key_alias\",\n\t\t\"minimized\": \"true\",\n\t\t\"app_locale\": [\n\t\t\t\"en:English\",\n\t\t\t\"ar:Arabic (\u0627\u0644\u0639\u0631\u0628\u064a\u0629)\",\n\t\t\t\"es:Spanish (Espa\u00f1ol)\",\n\t\t\t\"fr:French (Fran\u00e7ais)\"\n\t\t],\n\t\t\"app_slogan\": \"The best app ever\",\n\t\t\"key_password\": \"key_password\",\n\t\t\"package_name\": \"com.powerly.yasser\",\n\t\t\"color_primary\": \"#00BFFF\",\n\t\t\"places_api_key\": \"your_google_maps_api_key\",\n\t\t\"store_password\": \"store_password\",\n\t\t\"support_number\": \"+1234567890\",\n\t\t\"color_secondary\": \"#FF8C00\",\n\t\t\"privacy_policy_url\": \"https:\/\/example.com\/privacy\",\n\t\t\"terms_and_conditions_url\": \"https:\/\/example.com\/terms\"\n\t},\n\t\"status\": \"Building App\",\n\t\"created_at\": \"2025-05-07T08:33:04.000000Z\"\n},\n{\n\t\"id\": 3,\n\t\"app_config\": {\n\t\t\"bundle\": false,\n\t\t\"api_url\": \"https:\/\/test-api.powerly.app\/api\/v1\/\",\n\t\t\"app_name\": \"My Awesome App\",\n\t\t\"api_token\": \"1932|evcaW9R8SanGNcM7PVm6aFcAycRSYwtoyS9GymAd00750342\",\n\t\t\"key_alias\": \"fsdfsdfsd\",\n\t\t\"minimized\": true,\n\t\t\"app_locale\": [\n\t\t\t\"en:English\",\n\t\t\t\"ar:Arabic (\u0627\u0644\u0639\u0631\u0628\u064a\u0629)\",\n\t\t\t\"fr:French (Fran\u00e7ais)\"\n\t\t],\n\t\t\"app_slogan\": \"The best app ever\",\n\t\t\"key_password\": \"key_password\",\n\t\t\"package_name\": \"com.example.myapp\",\n\t\t\"color_primary\": \"#00BFFF\",\n\t\t\"places_api_key\": \"your_google_maps_api_key\",\n\t\t\"store_password\": \"store_password\",\n\t\t\"support_number\": \"+1234567890\",\n\t\t\"color_secondary\": \"#FF8C00\",\n\t\t\"privacy_policy_url\": \"https:\/\/example.com\/privacy\",\n\t\t\"terms_and_conditions_url\": \"https:\/\/example.com\/terms\"\n\t},\n\t\"status\": \"Build Successful\",\n\t\"created_at\": \"2025-04-24T11:42:27.000000Z\",\n\t\"apk_download_url\": \"https:\/\/storage.googleapis.com\/powerly-app-builder-assets\/builds\/android\/com.example.myapp\/EETEf9e9b1j7vzCzcja4QQThPa8ulrga1OUrKkaF\/release.apk?GoogleAccessId=powerly-bucket-access%40clever-circlet-181510.iam.gserviceaccount.com&Expires=1746698034&Signature=ah4hAmBY52ODsqgBtEUj4J5c5kLWyFRDtFlbCVQIbaYoA3aRYoLiq1leuV%2BGcVCrblEbY3BFOq66dvtCedZlXbZChj8W%2FHDAcH49B3yxwv8Vl%2FFi6iUQ68eT77tcqaWFpWNRDbtDfGtMqvTgBeFsscE2hf0zJQts8E%2F42Z5Vz7m4Vnn%2FcARLZ4p1AqzPNXcywhl%2FUNjGYZx1rwRIQpPDBjIn53zLoE%2B3B84JaLE0SoCem5eLxzXfiZwsrJpyCBU0mwqHAmm3rma5zNfigMjfQqO66pPfVjvzJbtauIZeIhZpqrxYa4o9bSwI5SvzyrsqapHFuUi%2BCiEBzpLkHoukzw%3D%3D\",\n\t\"aab_download_url\": \"https:\/\/storage.googleapis.com\/powerly-app-builder-assets\/builds\/android\/com.example.myapp\/EETEf9e9b1j7vzCzcja4QQThPa8ulrga1OUrKkaF\/release.aab?GoogleAccessId=powerly-bucket-access%40clever-circlet-181510.iam.gserviceaccount.com&Expires=1746698034&Signature=ORF6YFsROzP08WyKxqBkECPeRq7f5UGTLw5n%2BKuntw2YqDqwKHztbQZz4Td2feU%2BRHjlKCVC10p%2BThigjhMoLXbpXocNCEVfy%2BhSgd0w0CyH5A%2BrwtlG32RiVSIIdgvazP3hpWon3fNMp%2F%2FZIgslG2xaqrEgi3%2F0y%2FWYoFnKdyzT66PfVj1PfFsJ4ft8ANuoUww3Tsp7Bfnm7q0G5hrCH2zZG5kG5UBftTLXpSekeGceUaAIgvb1Lu20J%2FKY9Wj9N9ILyq6G%2BY4N3H5KMCBNfvrxMoZwNtHmFpbNQBLZDAIeYW8%2BsHIU3pg5RBV1FK8BsTDwB0HG8qbLS%2BdlgoMKKg%3D%3D\"\n\t\"ios_download_url\": \"https:\/\/storage.googleapis.com\/powerly-app-builder-assets\/builds\/ios\/com.example.myapp\/EETEf9e9b1j7vzCzcja4QQThPa8ulrga1OUrKkaF\/release.ipa?GoogleAccessId=powerly-bucket-access%40clever-circlet-181510.iam.gserviceaccount.com&Expires=1746698034&Signature=ORF6YFsROzP08WyKxqBkECPeRq7f5UGTLw5n%2BKuntw2YqDqwKHztbQZz4Td2feU%2BRHjlKCVC10p%2BThigjhMoLXbpXocNCEVfy%2BhSgd0w0CyH5A%2BrwtlG32RiVSIIdgvazP3hpWon3fNMp%2F%2FZIgslG2xaqrEgi3%2F0y%2FWYoFnKdyzT66PfVj1PfFsJ4ft8ANuoUww3Tsp7Bfnm7q0G5hrCH2zZG5kG5UBftTLXpSekeGceUaAIgvb1Lu20J%2FKY9Wj9N9ILyq6G%2BY4N3H5KMCBNfvrxMoZwNtHmFpbNQBLZDAIeYW8%2BsHIU3pg5RBV1FK8BsTDwB0HG8qbLS%2BdlgoMKKg%3D%3D\"\n},\n  ],\n  \"success\": 1,\n  \"message\": \"Done!\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"success\": 0,\"message\": \"The API key is invalid or missing.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0, \"message\": \"Failed!\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Creates a new build request and returns the build record along with a payment link. The build process will not begin until payment is completed.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/builds",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/builds"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"package_name\":\"com.mycompany.myapp\",\"app_name\":\"Charge Finder\",\"app_slogan\":\"Find your next charge fast!\",\"places_api_key\":\"AIzaSyD-EXAMPLEKEY123456\",\"app_locale\":[\"en:English\"],\"color_primary\":\"#0A84FF\",\"color_secondary\":\"#FF9500\",\"support_number\":\"+1234567890\",\"privacy_policy_url\":\"https:\\\/\\\/example.com\\\/privacy\",\"terms_and_conditions_url\":\"https:\\\/\\\/example.com\\\/terms\",\"key_alias\":\"my-key-alias\",\"store_password\":\"storepassword123\",\"key_password\":\"keypassword123\",\"minimized\":1,\"bundle\":0,\"ios\":0}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"data\": {\n          \"id\": 6,\n          \"app_config\": {\n              \"icon\": [],\n              \"logo\": [],\n              \"bundle\": \"true\",\n              \"api_url\": \"http:\/\/localhost:8080\/api\/v1\/\",\n              \"app_name\": \"My Awesome App\",\n              \"api_token\": \"192|LS5V9ZxnNCoB8hqgnmmvyr8VaDagXy63ZDRENvNRdd053acb\",\n              \"key_alias\": \"key_alias\",\n              \"minimized\": \"true\",\n              \"app_locale\": [\n                  \"en:English\",\n                  \"ar:Arabic (\u0627\u0644\u0639\u0631\u0628\u064a\u0629)\",\n                  \"es:Spanish (Espa\u00f1ol)\",\n                  \"fr:French (Fran\u00e7ais)\"\n              ],\n              \"app_slogan\": \"The best app ever\",\n              \"key_password\": \"key_password\",\n              \"package_name\": \"com.powerly.yasser\",\n              \"color_primary\": \"#00BFFF\",\n              \"places_api_key\": \"your_google_maps_api_key\",\n              \"store_password\": \"store_password\",\n              \"support_number\": \"+1234567890\",\n              \"color_secondary\": \"#FF8C00\",\n              \"privacy_policy_url\": \"https:\/\/example.com\/privacy\",\n              \"terms_and_conditions_url\": \"https:\/\/example.com\/terms\"\n          },\n          \"status\": \"Waiting for Payment\",\n          \"created_at\": \"2025-05-07T11:38:48.000000Z\"\n      },\n      \"success\": 1,\n      \"message\": \"Created successfully!\",\n      \"payment_link\": \"https:\/\/checkout.stripe.com\/c\/pay\/cs_test_a1Ot201DwXP36v3XOcKF8ot8Yl2ftWiz4cKlWjRRdzRVsFMKnPbIoYUP15#fidkdWxOYHwnPyd1blpxYHZxWjA0VUxxN0c1MnBXYFBiMjNTfTJiaUczUHRVMFFsfW5qUjFLcWhiMj0zb0pCamFGXEB1U0c1d1Z%2Fc1c0XUlTdW4wUEBAdGI9M0x%2FXz1sS25ccGl3RkFfRjBINTVTY2FxYE9XbicpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPyd2bGtiaWBabHFgaCcpJ2BrZGdpYFVpZGZgbWppYWB3dic%2FcXdwYHgl\"\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"success\": 0,\"message\": \"The API key is invalid or missing.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Validation error\",\n  \"errors\": {\n    \"name\": [\"The name field is required.\"]\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0, \"message\": \"Failed!\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get details of a specific build.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/builds\/:id",
                            "query": [
                                {
                                    "key": "power-centers",
                                    "value": "1",
                                    "description": "If set to true, includes associated power centers in the response.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/builds\/:id?power-centers=1",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "3",
                                    "description": "The ID of the build."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"data\": {\n          \"id\": 6,\n          \"app_config\": {\n              \"icon\": [],\n              \"logo\": [],\n              \"bundle\": \"true\",\n              \"api_url\": \"http:\/\/localhost:8080\/api\/v1\/\",\n              \"app_name\": \"My Awesome App\",\n              \"api_token\": \"192|LS5V9ZxnNCoB8hqgnmmvyr8VaDagXy63ZDRENvNRdd053acb\",\n              \"key_alias\": \"key_alias\",\n              \"minimized\": \"true\",\n              \"app_locale\": [\n                  \"en:English\",\n                  \"ar:Arabic (\u0627\u0644\u0639\u0631\u0628\u064a\u0629)\",\n                  \"es:Spanish (Espa\u00f1ol)\",\n                  \"fr:French (Fran\u00e7ais)\"\n              ],\n              \"app_slogan\": \"The best app ever\",\n              \"key_password\": \"key_password\",\n              \"package_name\": \"com.powerly.yasser\",\n              \"color_primary\": \"#00BFFF\",\n              \"places_api_key\": \"your_google_maps_api_key\",\n              \"store_password\": \"store_password\",\n              \"support_number\": \"+1234567890\",\n              \"color_secondary\": \"#FF8C00\",\n              \"privacy_policy_url\": \"https:\/\/example.com\/privacy\",\n              \"terms_and_conditions_url\": \"https:\/\/example.com\/terms\"\n          },\n          \"status\": \"Waiting for Payment\",\n          \"created_at\": \"2025-05-07T11:38:48.000000Z\"\n      },\n      \"success\": 1,\n      \"message\": \"Done!\",\n      \"payment_link\": \"https:\/\/checkout.stripe.com\/c\/pay\/cs_test_a1Ot201DwXP36v3XOcKF8ot8Yl2ftWiz4cKlWjRRdzRVsFMKnPbIoYUP15#fidkdWxOYHwnPyd1blpxYHZxWjA0VUxxN0c1MnBXYFBiMjNTfTJiaUczUHRVMFFsfW5qUjFLcWhiMj0zb0pCamFGXEB1U0c1d1Z%2Fc1c0XUlTdW4wUEBAdGI9M0x%2FXz1sS25ccGl3RkFfRjBINTVTY2FxYE9XbicpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPyd2bGtiaWBabHFgaCcpJ2BrZGdpYFVpZGZgbWppYWB3dic%2FcXdwYHgl\"\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"success\": 0,\"message\": \"The API key is invalid or missing.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0, \"message\": \"Access denied.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": 0, \"message\": \"Record not found.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0, \"message\": \"Failed!\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a build.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/builds\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/builds\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "3",
                                    "description": "The ID of the build."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 1, \"message\": \"Done\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"success\": 0,\"message\": \"The API key is invalid or missing.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0, \"message\": \"Access denied.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": 0, \"message\": \"Record not found.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0, \"message\": \"Failed!\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Auth",
            "description": "\n API Endpoints for Authentication\n\n ## Features:\n - **Login**: Allows users to authenticate by providing their email and password.\n - **Registration**: Registers new users and sends an email verification link.\n - **Logout**: Logs out the authenticated user by deleting their access token.\n\n ### Important Notes:\n - After successful registration, an email verification link is sent to the user.\n - The `login` method requires the user to have a verified email before they can log in.\n - Rate limiting is applied to the `login` endpoint to prevent brute force attacks. The limiter is reset after a successful login.\n - The `logout` method only works for authenticated users and deletes the current access token.\n\n ### Response Format:\n - **Success**: On successful operations, a JSON response with user data and, in the case of login, an access token is returned.\n - **Error**: If validation fails or the user cannot be authenticated, appropriate error messages are returned.",
            "item": [
                {
                    "name": "Register",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\",\"password\":\"secret\",\"first_name\":\"John\",\"last_name\":\"Doe\",\"latitude\":37.7749,\"longitude\":-122.4194,\"country_id\":1,\"vat_id\":\"123456789\",\"currency\":\"USD\"}"
                        },
                        "description": "This endpoint registers a new user with the provided data. The user will receive an email verification link.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Sync",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/sync",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/sync"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"phone\":\"+1234567890\",\"password\":\"secret\",\"first_name\":\"John\",\"last_name\":\"Doe\",\"latitude\":37.7749,\"longitude\":-122.4194,\"country_id\":1,\"vat_id\":\"123456789\",\"currency\":\"USD\"}"
                        },
                        "description": "This endpoint sync a new user with the provided data.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Login",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\",\"password\":\"secret\"}"
                        },
                        "description": "This endpoint allows a user to log in by providing their email and password.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Email check",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/email\/check",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/email\/check"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"fratke@example.com\"}"
                        },
                        "description": "Checks if a user with the specified email exists in the system.\n<aside class=\"warning\">The \"require_verification\" field indicates that email verification will be required even if the user exists and attempts to log in.<\/aside>",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":1,\"message\":\"Done!\",\"data\":{\"email_exists\":1,\"require_verification\":1}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Verify email",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/email\/verify",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/email\/verify"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"4504\",\"email\":\"joel58@example.org\"}"
                        },
                        "description": "To verify the email, you will need the email used in the registration and code received in this email,",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"id\":135231,\"customer_type\":\"C\",\"first_name\":\"\",\"last_name\":\"\",\"full_name\":\"\",\"contact_number\":\"966977977974\",\"email\":\"someemail@gasable.com\",\"balance\":\"0.00\",\"access_token\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnYXNhYmxlLnRlc3QiLCJpYXQiOjE3MTYwMjc4ODQsImV4cCI6MTc0NzU2Mzg4NCwiZGF0YSI6eyJ1c2VyX2lkIjoxMzUyMzEsInVzZXJfdHlwZSI6MX19.NlcGZdzy4kKACb1fJSSxL-VVJIwvvTbTqtz0_Rvv3_E\"},\"success\":1,\"message\":\"Done!\"}",
                            "name": "Success"
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"data\":{\"require_verification\":1,\"verification_token\":\"27ee3f39-8768-4bc3-a6ae-440d87660b02\",\"can_resend_in_seconds\":60,\"available_attempts\":2},\"success\":0,\"message\":\"Incorrect verification code.\"}",
                            "name": "Invalid data"
                        }
                    ]
                },
                {
                    "name": "Resend verification code",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/resend-verification",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/resend-verification"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"dthiel@example.org\"}"
                        },
                        "description": "You can resend the verification code to the user's email address.\n\nNote that resending the code reduces the number of allowable code attempts, thereby increasing the time until the next code can be sent.\n\n<aside class=\"warning\">This is only possible while the verification code is active and the user still has attempts.\n\nYou will receive a 429 error if the user has not waited long enough before requesting the verification code to be resent.\n<\/aside>",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 202,
                            "body": "{\"success\":1,\"message\":\"Please enter the verification code to continue.\",\"data\":{\"require_verification\":1,\"verification_token\":\"27ee3f39-8768-4bc3-a6ae-440d87660b02\",\"can_resend_in_seconds\":60,\"available_attempts\":3}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Password Reset",
                    "description": "Endpoints related to password reset functionality.",
                    "item": [
                        {
                            "name": "Request a password reset code.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/auth\/password\/forgot",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/auth\/password\/forgot"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "API-KEY",
                                        "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"email\":\"user@example.com\"}"
                                },
                                "description": "",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n \"success\": 1,\n \"message\": \"Please enter the verification code to continue.\",\n \"data\": {\n \t\"require_verification\": 1,\n \t\"verification_token\": \"aacc04ec-8f5f-4e99-a2d5-539f66426aa4\",\n \t\"can_resend_in_seconds\": 60,\n \t\"available_attempts\": 3,\n \t\"sent_to\": \"\"\n }\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Reset the user's password using the verification code.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/auth\/password\/reset",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/auth\/password\/reset"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "API-KEY",
                                        "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"code\":1234,\"email\":\"user@example.com\",\"password\":\"\\\"NewSecureP@ss1\\\"\",\"password_confirmation\":\"\\\"NewSecureP@ss1\\\"\"}"
                                },
                                "description": "",
                                "auth": {
                                    "type": "noauth"
                                }
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n  \"message\": \"Done.\"\n}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\n  \"message\": \"The verification code doesn't match.\"",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\n  \"message\": \"failed\"\n}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "Logout",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "This endpoint logs out the authenticated user by deleting their current access token."
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Balance",
            "description": "",
            "item": [
                {
                    "name": "Display a listing of the available balance offers.\n\nThis method retrieves balance offers either for the user's country\nor a specific country if `country_id` is provided.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/balance\/offers",
                            "query": [
                                {
                                    "key": "country_id",
                                    "value": "1",
                                    "description": "int|null The ID of the country to fetch offers for. If not provided, the user's country will be used.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/balance\/offers?country_id=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"country_id\":5}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"data\": [\n        {\n\t        \"id\": 1,\n\t        \"title_en\": \"Premium Package\",\n\t        \"title_ar\": \"\u0627\u0644\u0628\u0627\u0642\u0629 \u0627\u0644\u0645\u0645\u062a\u0627\u0632\u0629\",\n\t        \"title_es\": \"Paquete Premium\",\n\t        \"price\": \"13620.94\",\n\t        \"bonus\": \"0.00\",\n\t        \"vat\": \"0.00\",\n\t        \"total_price\": \"13620.94\",\n\t        \"total_balance\": \"13620.94\",\n\t        \"popular\": false,\n\t        \"active\": true\n        },\n        {\n\t        \"id\": 2,\n\t        \"title_en\": \"Basic Plan\",\n\t        \"title_ar\": \"\u0627\u0644\u062e\u0637\u0629 \u0627\u0644\u0623\u0633\u0627\u0633\u064a\u0629\",\n\t        \"title_es\": \"Plan B\u00e1sico\",\n\t        \"price\": \"2587.98\",\n\t        \"bonus\": \"0.00\",\n\t        \"vat\": \"0.00\",\n\t        \"total_price\": \"2587.98\",\n\t        \"total_balance\": \"2587.98\",\n\t        \"popular\": false,\n\t        \"active\": true\n        }\n     ],\n     \"success\": 1,\n     \"message\": \"Done!\"\n }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n     \"success\": 0,\n     \"message\": \"No available balance offers for the specified country.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Top up the user's balance with the selected balance offer.\n\nThis method processes a top-up transaction by charging the user through the\nselected payment gateway and updating their balance.\nit requires the user to use our payment gateway to complete the transaction.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/balance\/top-up",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/balance\/top-up"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"offer_id\":1,\"payment_method_id\":\"\\\"pm_1234567890\\\"\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"status\": \"success\",\n    \"message\": \"refill_balance_success\",\n    \"data\": {\n        \"new_balance\": 1500.0,\n        \"next_action\": {\n            \"type\": \"redirect\",\n            \"url\": \"https:\/\/paymentgateway.com\/redirect?session_id=xyz123\"\n        }\n    }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n    \"status\": \"error\",\n    \"message\": \"Payment processing failed. Please try again later.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get balance transaction history\n\nRetrieves a paginated list of the authenticated user's wallet transactions. Each record includes\nthe transaction id, type (deposit\/withdrawal), amount (in the user's currency, smallest currency unit), confirmation\nflag and timestamp. Results are returned as TransactionResource items with pagination meta.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/balance\/history",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/balance\/history"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": 1,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"type\": \"deposit\",\n      \"amount\": \"1000.00\",\n      \"confirmed\": true,\n      \"date\": \"2025-11-09 12:46:23\"\n    }\n  ],\n  \"meta\": { \"...pagination...\" }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Countries",
            "description": "",
            "item": [
                {
                    "name": "GET the countries list",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/countries",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/countries"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the list of currencies.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/countries\/currencies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/countries\/currencies"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "This endpoint returns a list of all unique currencies available in the system. The response includes an array of currency codes.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": 1,\n  \"message\": \"Done!\",\n  \"data\": [\n     {\n \t\t\"currency_iso\": \"AED\"\n \t},\n \t{\n \t\t\"currency_iso\": \"AFN\"\n \t},\n \t{\n \t\t\"currency_iso\": \"ALL\"\n \t},\n \t{\n \t\t\"currency_iso\": \"AMD\"\n \t},\n \t{\n \t\t\"currency_iso\": \"ANG\"\n \t},\n ...]\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"The API key is invalid or missing.\"\n}\n    *",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Device Management",
            "description": "\nAPIs for managing user devices",
            "item": [
                {
                    "name": "Display the authenticated user's device information.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\": {\"id\": 9, \"device_type\": 2, \"device_model\": \"android\", \"device_version\": null, \"device_language\": \"fr\", \"updated_at\": \"2025-02-13 21:56:03\", \"app_version\": \"2.1\"}, \"success\": 1, \"message\": \"Termin\u00e9 !\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\": \"Not Found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update or create the authenticated user's device information.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept-Language",
                                "value": "string The preferred response language. Example: \"fr\""
                            },
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"device_imei\":\"\\\"123456789012345\\\"\",\"device_token\":\"\\\"abcdef123456\\\"\",\"device_type\":1,\"device_model\":\"\\\"Samsung Galaxy S21\\\"\",\"device_version\":\"\\\"Android 12\\\"\",\"app_version\":\"\\\"1.2.3\\\"\",\"lang\":\"\\\"fr\\\"\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\": {\"id\": 9, \"device_type\": 2, \"device_model\": \"android\", \"device_version\": null, \"device_language\": \"fr\", \"updated_at\": \"2025-02-13 21:56:03\", \"app_version\": \"2.1\"}, \"success\": 1, \"message\": \"Termin\u00e9 !\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"message\": \"Validation Error\", \"errors\": {\"device_imei\": [\"The device IMEI is required.\"]}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Orders",
            "description": "",
            "item": [
                {
                    "name": "GET the list of orders.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "active",
                                    "description": "The status of the orders to filter by.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/orders?status=active"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "54"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST start charging and create a new order.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"power_source_id\":1,\"quantity\":\"10\",\"connector\":2}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST stop charging and close the order.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/stop",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/stop"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"power_source_id\":\"officiis\",\"order_id\":14}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET the specified order.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "reiciendis",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "53"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET the review of the specified order.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:orderId\/review",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:orderId\/review",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "et",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "52"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a review for the specified order.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:orderId\/review",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:orderId\/review",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "incidunt",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "rating",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Must be between 1 and 5."
                                },
                                {
                                    "key": "content",
                                    "value": "I had a great experience with the 50kW fast charger at City Mall. It charged my vehicle from 20% to 80% in about 30 minutes.",
                                    "type": "text",
                                    "description": "The review content."
                                },
                                {
                                    "key": "media[]",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Skip the review for the specified order.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/orders\/:orderId\/review\/skip",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/orders\/:orderId\/review\/skip",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "magnam",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Payment cards",
            "description": "",
            "item": [
                {
                    "name": "Retrieve the authenticated user's default payment card.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payment-cards\/default",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payment-cards\/default"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "57"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Set a specific payment card as the default for the authenticated user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payment-cards\/default\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payment-cards\/default\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "eos",
                                    "description": "The ID of the default."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get a list of the authenticated user's saved payment cards.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payment-cards",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payment-cards"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "56"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a new payment card for the authenticated user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payment-cards",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payment-cards"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"token\":\"dolorem\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Retrieve a specific payment card by its ID.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payment-cards\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payment-cards\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "illo",
                                    "description": "The ID of the payment card."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "55"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the details of a specific payment card.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payment-cards\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payment-cards\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "nemo",
                                    "description": "The ID of the payment card."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"paymentObject\":[\"et\"]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a specific payment card by its ID.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payment-cards\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payment-cards\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "itaque",
                                    "description": "The ID of the payment card."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Power sources",
            "description": "",
            "item": [
                {
                    "name": "GET the list of the power sources.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/stations",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/stations"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"search\":\"envrop\",\"latitude\":-89,\"longitude\":-179}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "51"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET a specific power source by its identifier",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/stations\/token\/:identifier",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/stations\/token\/:identifier",
                            "variable": [
                                {
                                    "id": "identifier",
                                    "key": "identifier",
                                    "value": "alias",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "50"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET a specific power source.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/stations\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/stations\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the station."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": 1,\n  \"message\": \"Done!\",\n  \"data\": {\n    \"id\": 23,\n    \"identifier\": \"tesst\",\n    \"category\": \"EV_CHARGER\",\n    \"title\": \"tesst\",\n    \"description\": null,\n    \"latitude\": \"36.630751\",\n    \"longitude\": \"2.945236\",\n    \"image\": \"http:\/\/localhost:8080\/images\/charge-point-1.jpeg\",\n    \"session_limit_type\": null,\n    \"session_limit_value\": 0,\n    \"contact_number\": null,\n    \"open_time\": null,\n    \"close_time\": null,\n    \"price\": \"0.00\",\n    \"price_unit\": \"minutes\",\n    \"listed\": false,\n    \"online_status\": 0,\n    \"rating\": \"0.00\",\n    \"is_in_use\": false,\n    \"is_reserved\": 0,\n    \"booked_by_current_user\": false,\n    \"used_by_current_user\": false,\n    \"address\": {\n      \"address_line_1\": \"Tessala El Merdja, Algiers, Algeria\",\n      \"address_line_2\": null,\n      \"address_line_3\": null,\n      \"zipcode\": \"zip\",\n      \"city\": \"Algiers\",\n      \"state\": null\n    },\n    \"connectors\": [\n      {\n        \"id\": 3,\n        \"name\": \"Type 1 - J1772\",\n        \"icon\": \"https:\/\/storage.powerly.app\/connectors\/Type 1.png\",\n        \"type\": \"\",\n        \"max_power\": 0,\n        \"status\": \"available\",\n        \"number\": 1\n      },\n      ...\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Retrieve a list of media files associated with a specific power source.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/stations\/:id\/media",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/stations\/:id\/media",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "18",
                                    "description": "The station for which media files are being retrieved."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "This endpoint returns a collection of media resources linked to the given station.\nIt provides images, videos, or other media types that might be useful for users interacting with the charging station.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "49"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET the list of the power source reviews.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/stations\/:stationId\/reviews",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/stations\/:stationId\/reviews",
                            "variable": [
                                {
                                    "id": "stationId",
                                    "key": "stationId",
                                    "value": "voluptas",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "48"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Reviews",
            "description": "",
            "item": [
                {
                    "name": "GET the list of review options",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reviews\/options",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reviews\/options"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "58"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET the list of reviews",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reviews",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reviews"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "47"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET the specified review.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/reviews\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/reviews\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "ipsum",
                                    "description": "The ID of the review."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "46"
                                },
                                {
                                    "key": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"message\":\"The API key is invalid or missing.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Users",
            "description": "\nAPI Endpoints for User Management\n\nKey features include:\n- Viewing the details of the authenticated user or any other user (with proper authorization).\n- Updating profile details like name, password, location, and other personal settings.\n- Validating inputs to ensure accurate data is saved.",
            "item": [
                {
                    "name": "Get Authenticated User",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Show Current User Info\n\nRetrieve the profile details of the currently authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"id\": 1,\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"email\": \"john.doe@example.com\",\n \"latitude\": 40.7128,\n \"longitude\": -74.0060\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the authenticated user's profile information. The user can update fields such as their name, password, location, and more.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/me"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"password\":\"bHUl;7L#2%1JxL2T?,6\",\"first_name\":\"depowcirxvlbejxk\",\"last_name\":\"ctxxexwvyjxojzqdgdl\",\"latitude\":-89,\"longitude\":-179,\"vat_id\":\"qfnlxbyybg\",\"currency\":\"a\",\"country_id\":5}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete the authenticated user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/me"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Deletes the currently authenticated user's account."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 204,
                            "body": "No Content",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n      \"success\": 0,\n      \"message\": \"Failed!\"\n  }",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Vehicle management",
            "description": "",
            "item": [
                {
                    "name": "Get the list of vehicle makes.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/vehicles\/makes",
                            "query": [
                                {
                                    "key": "owner",
                                    "value": "1",
                                    "description": "optional If true, filters the makes by those added by the current user.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/vehicles\/makes?owner=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "This endpoint retrieves a list of vehicle makes available in the system. Optionally, you can filter\nthe results by the owner of the makes."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n         \"id\": 2,\n\t    \"code\": \"TSL\",\n\t    \"name\": \"Tesla\",\n\t    \"logo\": \"http:\\\/\\\/localhost:8080\\\/storage\\\/https:\\\/\\\/www.carlogos.org\\\/car-logos\\\/tesla-logo-2007-full-640.png\",\n\t    \"added_by\": null\n    },\n    ...\n  ],\n  \"success\": 1,\n  \"message\": \"Done!\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Failed!\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the list of vehicle models.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/vehicles\/models\/:make_id",
                            "query": [
                                {
                                    "key": "owner",
                                    "value": "1",
                                    "description": "optional If true, filters the models by those added by the current user.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/vehicles\/models\/:make_id?owner=1",
                            "variable": [
                                {
                                    "id": "make_id",
                                    "key": "make_id",
                                    "value": "1",
                                    "description": "optional The ID of the vehicle make to filter models."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "This endpoint retrieves a list of vehicle models associated with a particular vehicle make. Optionally, you can filter\nthe results by the owner of the models."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n \t\t\"id\": 2,\n \t\t\"code\": \"Model X\",\n \t\t\"name\": \"Model X 100D\",\n \t\t\"make\": {\n \t\t\t\"name\": \"Tesla\",\n \t\t\t\"id\": 2\n \t\t},\n \t\t\"added_by\": null\n \t},\n    ...\n  ],\n  \"success\": 1,\n  \"message\": \"Done!\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Failed!\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get the list of charging connectors.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/vehicles\/connectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/vehicles\/connectors"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "This endpoint retrieves a list of charging connectors available in the system."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n         \"id\": 3,\n         \"name\": \"Type 1 - J1772\",\n  \t\t\"icon\": \"http:\\\/\\\/gasablev4.loc\\\/connectors\\\/Type 1.png\",\n  \t\t\"type\": \"\",\n  \t\t\"max_power\": 0\n    },\n    ...\n  ],\n  \"success\": 1,\n  \"message\": \"Done!\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Failed!\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of the user's vehicles.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/vehicles",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/vehicles"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "This endpoint retrieves a list of all vehicles associated with the currently authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"id\": 61,\n      \"title\": \"Tesla Model SA\",\n      \"make\": {},\n      \"model\": {},\n      \"year\": 2022,\n      \"version\": \"V1\",\n      \"color\": \"Red\",\n      \"license_plate\": \"ABC-1234\",\n      \"fuel_type\": \"Electric\",\n      \"charging_connector\": {},\n      \"active\": 1,\n      \"owner\": {},\n      \"detail\": {}\n    }\n  ],\n  \"success\": 1,\n  \"message\": \"Done!\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Failed!\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created vehicle.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/vehicles",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/vehicles"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"Tesla Model S\",\"vehicle_model_id\":1,\"year\":2020,\"version\":\"Long Range\",\"color\":\"Red\",\"license_plate\":\"XYZ 123\",\"fuel_type\":\"Electric\",\"charging_connector_id\":1,\"active\":1,\"vehicle_details\":{\"battery_capacity\":75,\"charging_speed\":150,\"safety_rating\":5,\"mileage\":20000,\"fuel_efficiency\":120,\"extra_notes\":\"Excellent condition, single owner.\"}}"
                        },
                        "description": "This endpoint allows users to add a new vehicle to their account. The request must include\ndetails about the vehicle, such as model, year, and other optional details like color and license plate."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n      \"id\": 61,\n      \"title\": \"Tesla Model SA\",\n      \"make\": {},\n      \"model\": {},\n      \"year\": 2022,\n      \"version\": \"V1\",\n      \"color\": \"Red\",\n      \"license_plate\": \"ABC-1234\",\n      \"fuel_type\": \"Electric\",\n      \"charging_connector\": {},\n      \"active\": 1,\n      \"owner\": {},\n      \"detail\": {}\n    },\n  \"success\": 1,\n  \"message\": \"Done!\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The given data was invalid.\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Failed!\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified vehicle.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/vehicles\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/vehicles\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the vehicle."
                                },
                                {
                                    "id": "vehicle",
                                    "key": "vehicle",
                                    "value": "1",
                                    "description": "The ID of the vehicle."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "This endpoint retrieves the details of a specific vehicle owned by the currently authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\":  {\n      \"id\": 61,\n      \"title\": \"Tesla Model SA\",\n      \"make\": {},\n      \"model\": {},\n      \"year\": 2022,\n      \"version\": \"V1\",\n      \"color\": \"Red\",\n      \"license_plate\": \"ABC-1234\",\n      \"fuel_type\": \"Electric\",\n      \"charging_connector\": {},\n      \"active\": 1,\n      \"owner\": {},\n      \"detail\": {}\n    },\n  \"success\": 1,\n  \"message\": \"Done!\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Vehicle not found or not owned by the user.\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Failed!\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the specified vehicle.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/vehicles\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/vehicles\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the vehicle."
                                },
                                {
                                    "id": "vehicle",
                                    "key": "vehicle",
                                    "value": "1",
                                    "description": "The ID of the vehicle."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"Tesla Model S\",\"vehicle_model_id\":1,\"year\":2020,\"version\":\"Long Range\",\"color\":\"Red\",\"license_plate\":\"XYZ 123\",\"fuel_type\":\"Electric\",\"charging_connector_id\":1,\"active\":1,\"vehicle_details\":{\"battery_capacity\":75,\"charging_speed\":150,\"safety_rating\":5,\"mileage\":20000,\"fuel_efficiency\":120,\"extra_notes\":\"Excellent condition, single owner.\"}}"
                        },
                        "description": "This endpoint allows users to update the details of an existing vehicle."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n      \"id\": 61,\n      \"title\": \"Tesla Model SA\",\n      \"make\": {},\n      \"model\": {},\n      \"year\": 2022,\n      \"version\": \"V1\",\n      \"color\": \"Red\",\n      \"license_plate\": \"ABC-1234\",\n      \"fuel_type\": \"Electric\",\n      \"charging_connector\": {},\n      \"active\": 1,\n      \"owner\": {},\n      \"detail\": {}\n    },\n  \"success\": 1,\n  \"message\": \"Done!\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Vehicle not found or not owned by the user.\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The given data was invalid.\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Failed!\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Remove the specified vehicle.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/vehicles\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/vehicles\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the vehicle."
                                },
                                {
                                    "id": "vehicle",
                                    "key": "vehicle",
                                    "value": "1",
                                    "description": "The ID of the vehicle."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "API-KEY",
                                "value": "140|sVh0Lr2iANbwsQBXo8zT8wux0QN8LQVLDmOzvhHp1dab78b8"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "This endpoint deletes the vehicle from the system. Only the owner of the vehicle can delete it."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": 1,\n  \"message\": \"Done!\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Vehicle not found or not owned by the user.\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Failed!\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}