{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/api.powerly.app"
        }
    ],
    "info": {
        "name": "Dashboard API documentation",
        "_postman_id": "9563fabb-2dd3-42a2-990d-c00f34051fb7",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Auth",
            "description": "",
            "item": [
                {
                    "name": "Login",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v3\/auth\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v3\/auth\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\",\"password\":\"secret123\",\"device_imei\":\"123456789012345\",\"device_token\":\"abcdef1234567890\"}"
                        },
                        "description": "Login api endpoint to authorize the user by email and password.\n<aside class=\"warning\">\nIf the user has not yet confirmed their email address, you will receive an HTTP status 202 and a token to confirm the email address.\n<\/aside>",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"id\":135231,\"status\":1,\"customer_type\":\"C\",\"first_name\":\"\",\"last_name\":\"\",\"full_name\":\"\",\"contact_number\":\"966977977974\",\"email\":\"someemail@gasable.com\",\"email_verified\":1,\"balance\":\"0.00\",\"access_token\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnYXNhYmxlLnRlc3QiLCJpYXQiOjE3MTYwMjc4ODQsImV4cCI6MTc0NzU2Mzg4NCwiZGF0YSI6eyJ1c2VyX2lkIjoxMzUyMzEsInVzZXJfdHlwZSI6MX19.NlcGZdzy4kKACb1fJSSxL-VVJIwvvTbTqtz0_Rvv3_E\"},\"success\":1,\"message\":\"Done!\"}",
                            "name": ""
                        },
                        {
                            "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": "Verify email"
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"success\":0,\"message\":\"The request data did not pass validation.\",\"errors\":{\"email\":[\"These credentials do not match our records.\"]}}",
                            "name": "Invalid credentials"
                        }
                    ]
                },
                {
                    "name": "Password reset",
                    "description": "",
                    "item": [
                        {
                            "name": "Reset password",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v3\/auth\/password\/reset",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v3\/auth\/password\/reset"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"email\":\"user@example.com\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Resend verification code",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v3\/auth\/password\/reset\/resend",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v3\/auth\/password\/reset\/resend"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"verification_token\":\"123e4567-e89b-12d3-a456-426614174000\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Verify reset password",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v3\/auth\/password\/reset\/verify",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v3\/auth\/password\/reset\/verify"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"verification_token\":\"123e4567-e89b-12d3-a456-426614174000\",\"verification_code\":\"1234\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Verify email",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v3\/auth\/email\/verify",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v3\/auth\/email\/verify"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"verification_token\":\"123e4567-e89b-12d3-a456-426614174000\",\"verification_code\":\"1234\"}"
                        },
                        "description": "To verify the email, you will need the verification_token received in response to the registration request,\nand the verification_code sent to the user's email."
                    },
                    "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\/v3\/auth\/email\/resend-verification",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v3\/auth\/email\/resend-verification"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"verification_token\":\"123e4567-e89b-12d3-a456-426614174000\"}"
                        },
                        "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>"
                    },
                    "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": "Logout",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v3\/auth\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v3\/auth\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"device_imei\":\"voluptatibus\"}"
                        },
                        "description": "Use this api endpoint when you logout users to delete the access token.\nYou need to provide device_imei to dissociate the device."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 204,
                            "body": "\"\"",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Authenticated user data",
            "description": "",
            "item": [
                {
                    "name": "User data",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/user"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Balance",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/user\/balance",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/user\/balance"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Payout methods",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/user\/payout-methods",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/user\/payout-methods"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "User insights",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Permissions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/user\/permissions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/user\/permissions"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Roles",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/user\/roles",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/user\/roles"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Categories CRUD",
            "description": "",
            "item": [
                {
                    "name": "Categories list  (datatable)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/categories\/datatable",
                            "query": [
                                {
                                    "key": "search",
                                    "value": "perferendis",
                                    "description": "Optional search query to filter categories.",
                                    "disabled": false
                                },
                                {
                                    "key": "itemsPerPage",
                                    "value": "12",
                                    "description": "Number of items per page (-1 for all).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/categories\/datatable?search=perferendis&itemsPerPage=12",
                            "variable": [
                                {
                                    "id": "type",
                                    "key": "type",
                                    "value": "charging-site",
                                    "description": "type of the category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get a list of categories."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"data\": [\n              {\n                  \"id\": 58,\n                  \"type\": \"charging-site\",\n                  \"name\": \"maximes\",\n                  \"color\": \"#D2B48C\"\n              },\n              {\n                  \"id\": 57,\n                  \"type\": \"charging-site\",\n                  \"name\": \"tests\",\n                  \"color\": \"#A52A2A\"\n              },\n              ...\n          ],\n          \"meta\": {\n              \"per_page\": 15,\n              \"total\": 55\n          }\n      }\n }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Categories list",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/categories",
                            "variable": [
                                {
                                    "id": "type",
                                    "key": "type",
                                    "value": "charging-site",
                                    "description": "type of the category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get all categories."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": [\n          {\n              \"id\": 58,\n              \"type\": \"charging-site\",\n              \"name\": \"maximes\",\n              \"color\": \"#D2B48C\"\n          },\n          {\n              \"id\": 57,\n              \"type\": \"charging-site\",\n              \"name\": \"tests\",\n              \"color\": \"#A52A2A\"\n          },\n          ...\n      ]\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/categories"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"charging-site\",\"name\":\"Electronics\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"success\": 1,\n     \"msg\": \"Done!\",\n     \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n     \"results\": {\n         \"id\": 60,\n         \"type\": \"charging-site\",\n         \"name\": \"Electronics\",\n         \"color\": \"#A9A9A9\"\n     }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Validation failed.\",\n  \"errors\": {\n    \"name\": [\"The name field is required.\"],\n    \"type\": [\"The type field is required.\"]\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get details of a specific category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"success\": 1,\n     \"msg\": \"Done!\",\n     \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n     \"results\": {\n         \"id\": 60,\n         \"type\": \"charging-site\",\n         \"name\": \"Electronics\",\n         \"color\": \"#A9A9A9\"\n     }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update an existing category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Electronics\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"success\": 1,\n     \"msg\": \"Done!\",\n     \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n     \"results\": {\n         \"id\": 60,\n         \"type\": \"charging-site\",\n         \"name\": \"Electronics\",\n         \"color\": \"#A9A9A9\"\n     }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                            "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,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/categories\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/categories\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 1,\"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Login",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/auth\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/auth\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"user@example.com\",\"password\":\"secret123\"}"
                        },
                        "description": "Login api endpoint to authorize the user by email and password.\n<aside class=\"warning\">\nIf the user has not yet confirmed their email address, you will receive an HTTP status 202 and a token to confirm the email address.\n<\/aside>"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"id\":135231,\"status\":1,\"customer_type\":\"C\",\"first_name\":\"\",\"last_name\":\"\",\"full_name\":\"\",\"contact_number\":\"966977977974\",\"email\":\"someemail@gasable.com\",\"email_verified\":1,\"balance\":\"0.00\",\"access_token\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnYXNhYmxlLnRlc3QiLCJpYXQiOjE3MTYwMjc4ODQsImV4cCI6MTc0NzU2Mzg4NCwiZGF0YSI6eyJ1c2VyX2lkIjoxMzUyMzEsInVzZXJfdHlwZSI6MX19.NlcGZdzy4kKACb1fJSSxL-VVJIwvvTbTqtz0_Rvv3_E\"},\"success\":1,\"message\":\"Done!\"}",
                            "name": ""
                        },
                        {
                            "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": "Verify email"
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"success\":0,\"message\":\"The request data did not pass validation.\",\"errors\":{\"email\":[\"These credentials do not match our records.\"]}}",
                            "name": "Invalid credentials"
                        }
                    ]
                },
                {
                    "name": "Display a listing of the resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/builds\/datatable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/builds\/datatable"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/builds\/{build_id}\/pay",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/builds\/:build_id\/pay",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/builds\/:build_id\/pay",
                            "variable": [
                                {
                                    "id": "build_id",
                                    "key": "build_id",
                                    "value": "3",
                                    "description": "The ID of the build."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/builds\/{build_id}\/use-free-build",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/builds\/:build_id\/use-free-build",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/builds\/:build_id\/use-free-build",
                            "variable": [
                                {
                                    "id": "build_id",
                                    "key": "build_id",
                                    "value": "3",
                                    "description": "The ID of the build."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a build and returns the build record.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/builds\/:build_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/builds\/:build_id",
                            "variable": [
                                {
                                    "id": "build_id",
                                    "key": "build_id",
                                    "value": "3",
                                    "description": "The ID of the build."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "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": ""
                    },
                    "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": "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\/builds",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/builds"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "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": ""
                    },
                    "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": "Delete a build.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/builds\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/builds\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "3",
                                    "description": "The ID of the build."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 1, \"msg\": \"Done\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0, \"msg\": \"Access denied.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": 0, \"msg\": \"Record not found.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0, \"msg\": \"Failed!\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Admins list  (datatable)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admins\/datatable",
                            "query": [
                                {
                                    "key": "search",
                                    "value": "a",
                                    "description": "Optional search query to filter admins.",
                                    "disabled": false
                                },
                                {
                                    "key": "itemsPerPage",
                                    "value": "17",
                                    "description": "Number of items per page (-1 for all).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/admins\/datatable?search=a&itemsPerPage=17"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get a list of admins."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"data\": [\n              {\n                 id: 24\n                 email: \"johndoe@gmail.com\"\n                 name: \"john DOE\"\n                 first_name: \"john\"\n                 last_name: \"DOE\"\n                 status: 1\n              },\n              ...\n          ],\n          \"meta\": {\n              \"per_page\": 15,\n              \"total\": 55\n          }\n      }\n }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Admins list",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admins",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admins"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get all admins."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": [\n             {\n                 id: 24\n                 email: \"johndoe@gmail.com\"\n                 name: \"john DOE\"\n                 first_name: \"john\"\n                 last_name: \"DOE\"\n                 status: 1\n              },\n          ...\n      ]\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new admin.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admins",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admins"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"admin@example.com\",\"password\":\"StrongPassword123!\",\"permissions\":[1]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"success\": 1,\n     \"msg\": \"Done!\",\n     \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n     \"results\": {\n         id: 24\n         email: \"johndoe@gmail.com\"\n         name: \"john DOE\"\n         first_name: \"john\"\n         last_name: \"DOE\"\n         status: 1\n     }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Validation failed.\",\n  \"errors\": {\n    \"first_name\": [\"The name field is required.\"]\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admins\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admins\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the admin."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update an existing admin.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admins\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admins\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the admin."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"admin@example.com\",\"password\":\"StrongPassword123!\",\"permissions\":[1]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n     \"success\": 1,\n     \"msg\": \"Done!\",\n     \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n     \"results\": {\n         id: 24\n         email: \"johndoe@gmail.com\"\n         name: \"john DOE\"\n         first_name: \"john\"\n         last_name: \"DOE\"\n         status: 1\n     }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"Validation failed.\",\n  \"errors\": {\n    \"first_name\": [\"The name field is required.\"]\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a admin.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/admins\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/admins\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the admin."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 1,\"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/subscription-plans",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/subscription-plans",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/subscription-plans"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/subscription\/current",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/subscription\/current",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/subscription\/current"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/subscription\/subscribe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/subscription\/subscribe",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/subscription\/subscribe"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/subscription\/unsubscribe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/subscription\/unsubscribe",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/subscription\/unsubscribe"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/subscription\/resume",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/subscription\/resume",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/subscription\/resume"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/discourse\/connect",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/discourse\/connect",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/discourse\/connect"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sig\":\"blanditiis\",\"sso\":\"iure\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Feedbacks",
            "description": "",
            "item": [
                {
                    "name": "Get feedback",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/feedback",
                            "query": [
                                {
                                    "key": "itemsPerPage",
                                    "value": "10",
                                    "description": "Number of results per page. Use -1 to get all. Defaults to 15.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "slow+charging",
                                    "description": "Filter feedback by message content.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/feedback?itemsPerPage=10&search=slow+charging"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieves a list of feedback associated with the charge points owned by the authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"data\": [\n              {\n                  \"id\": 139,\n                  \"charge_point_order_id\": 171,\n                  \"user_id\": 1,\n                  \"order_id\": null,\n                  \"feedback_msg\": \"The charging cable felt a bit stiff and could be a little longer for easier car positioning.\",\n                  \"rating\": \"3.90\",\n                  \"insert_date\": \"2024-07-17T10:17:20.000000Z\",\n                  \"updated_at\": \"2024-07-22T07:17:30.000000Z\",\n                  \"verified\": 1,\n                  \"charge_point_order\": {\n                      \"id\": 171,\n                      \"charge_point_id\": 12,\n                      \"charge_point_connector_id\": 14,\n                      \"charging_session_time\": \"51.7700\",\n                      \"charging_session_energy\": \"1.5600\",\n                      \"unit\": \"minutes\",\n                      \"requested_quantity\": \"10\",\n                      \"feedback_exist\": 0,\n                      \"status\": 1,\n                      \"delivery_date\": null,\n                      \"user_id\": 1,\n                      \"fleet_id\": null,\n                      \"quantity\": \"51.0000\",\n                      \"price\": \"102.0000\",\n                      \"fees\": \"1.00\",\n                      \"earning\": 15.3,\n                      \"unit_price\": \"2.00\",\n                      \"created_at\": \"2025-01-08T07:33:27.000000Z\",\n                      \"updated_at\": \"2025-03-04T13:27:56.000000Z\",\n                      \"connector_number\": 1\n                  }\n              },\n              ...\n          ],\n          \"meta\": {\n              \"per_page\": 15,\n              \"total\": 141\n          }\n      }\n  }",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Export feedback to Excel",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/feedback\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/feedback\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Exports all feedback related to the authenticated user's charge points to an `.xlsx` file."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "attachment feedback.xlsx",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get a specific feedback entry",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/feedback\/:feedbackID",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/feedback\/:feedbackID",
                            "variable": [
                                {
                                    "id": "feedbackID",
                                    "key": "feedbackID",
                                    "value": "139",
                                    "description": "The ID of the feedback to retrieve."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a single feedback entry by ID."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"id\": 139,\n      \"charge_point_order_id\": 171,\n      \"user_id\": 1,\n      \"order_id\": null,\n      \"feedback_msg\": \"The charging cable felt a bit stiff and could be a little longer for easier car positioning.\",\n      \"rating\": \"3.90\",\n      \"insert_date\": \"2024-07-17T10:17:20.000000Z\",\n      \"updated_at\": \"2024-07-22T07:17:30.000000Z\",\n      \"verified\": 1,\n      \"charge_point_order\": {\n          \"id\": 171,\n          \"charge_point_id\": 12,\n          \"charge_point_connector_id\": 14,\n          \"charging_session_time\": \"51.7700\",\n          \"charging_session_energy\": \"1.5600\",\n          \"unit\": \"minutes\",\n          \"requested_quantity\": \"10\",\n          \"feedback_exist\": 0,\n          \"status\": 1,\n          \"delivery_date\": null,\n          \"user_id\": 1,\n          \"fleet_id\": null,\n          \"quantity\": \"51.0000\",\n          \"price\": \"102.0000\",\n          \"fees\": \"1.00\",\n          \"earning\": 15.3,\n          \"unit_price\": \"2.00\",\n          \"created_at\": \"2025-01-08T07:33:27.000000Z\",\n          \"updated_at\": \"2025-03-04T13:27:56.000000Z\",\n          \"connector_number\": 1\n      }\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"error\": \"Order not found\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Location",
            "description": "",
            "item": [
                {
                    "name": "Get countries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v3\/countries",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v3\/countries"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"Jordan\",\"iso\":\"JO\",\"time_zone\":\"Asia\\\/Amman\",\"latitude\":\"31.95\",\"longitude\":\"35.93333\",\"phone_code\":\"962\",\"contact_number\":\"96265860087\",\"email\":\"info@gasable.com\",\"currency\":\"JD\",\"currency_iso\":\"JOD\"},{\"id\":2,\"name\":\"Ukraine\",\"iso\":\"UA\",\"time_zone\":\"Asia\\\/Amman\",\"latitude\":\"53.7098\",\"longitude\":\"27.9534\",\"phone_code\":\"380\",\"contact_number\":\"3802912345678\",\"email\":\"\",\"currency\":\"UAH\",\"currency_iso\":null},{\"id\":4,\"name\":\"Saudi Arabia\",\"iso\":\"SA\",\"time_zone\":\"Asia\\\/Riyadh\",\"latitude\":\"24.63333\",\"longitude\":\"46.71666\",\"phone_code\":\"966\",\"contact_number\":\"9660005469\",\"email\":\"info@123gasable.net\",\"currency\":\"SR\",\"currency_iso\":\"SAR\"}],\"success\":1,\"message\":\"Done!\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get country",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v3\/countries\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v3\/countries\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "4",
                                    "description": "Country ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns country details by ID."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"id\":4,\"name\":\"Saudi Arabia\",\"iso\":\"SA\",\"time_zone\":\"Asia\/Riyadh\",\"latitude\":\"24.63333\",\"longitude\":\"46.71666\",\"phone_code\":\"966\",\"contact_number\":\"9660005469\",\"email\":\"info@123gasable.net\",\"currency\":\"SR\",\"currency_iso\":\"SAR\",\"flag_url\":\"https:\/\/v4.test\/flags\/SA.png\"},\"success\":1,\"message\":\"Done!\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Orders",
            "description": "",
            "item": [
                {
                    "name": "Get charge point orders",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/orders",
                            "query": [
                                {
                                    "key": "itemsPerPage",
                                    "value": "10",
                                    "description": "Number of results per page. Use -1 to get all. Defaults to 15.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "EV12345",
                                    "description": "Optional search term to filter by charge point identifier.",
                                    "disabled": false
                                },
                                {
                                    "key": "sortBy[]",
                                    "value": "",
                                    "description": "Optional array of sorting instructions. Each object should include \"key\" and \"order\" (asc or desc). Keys: insert_date, duration, energy, price, totalEarning.",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/orders?itemsPerPage=10&search=EV12345&sortBy[]="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a paginated list of orders related to charge points owned by the authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"data\": [\n              {\n                  \"id\": 426,\n                  \"charge_point_id\": 16,\n                  \"charge_point_connector_id\": 16,\n                  \"charging_session_time\": \"27.0000\",\n                  \"charging_session_energy\": \"1661.0000\",\n                  \"unit\": \"minutes\",\n                  \"requested_quantity\": \"8\",\n                  \"feedback_exist\": 0,\n                  \"status\": 1,\n                  \"delivery_date\": \"2024-09-16 07:33:27\",\n                  \"user_id\": 11,\n                  \"fleet_id\": 64,\n                  \"quantity\": \"6.0000\",\n                  \"price\": \"0.00\",\n                  \"fees\": \"8.00\",\n                  \"earning\": \"953.47\",\n                  \"unit_price\": \"2587.98\",\n                  \"created_at\": \"2024-09-16T07:33:27.000000Z\",\n                  \"updated_at\": \"2025-03-04T13:27:57.000000Z\",\n                  \"connector_number\": 1,\n                  \"charge_point\": {\n                      \"id\": 16,\n                      \"identifier\": \"CP:DDEE36\",\n                      \"category\": \"EV_CHARGER\",\n                      \"title\": \"ocpp_yesy\",\n                      \"description\": \"ocpp_yesy\",\n                      \"latitude\": \"24.593799037018584\",\n                      \"longitude\": \"46.62275091622337\",\n                      \"listed\": false,\n                      ...\n                  },\n                  \"insert_date\": \"2024-09-16 07:33\",\n                  \"prices\": [],\n                  \"app_fees\": \"-953.47\",\n                  \"elapsed_time\": \"27.0000\"\n              },\n             ...\n          ],\n          \"meta\": {\n              \"per_page\": 10,\n              \"total\": 404\n          }\n      }\n  }",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Export orders to Excel",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/orders\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/orders\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Exports all orders for the authenticated user's charge points to an `.xlsx` file."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "attachment Orders.xlsx",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get a specific order",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/orders\/:orderID",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/orders\/:orderID",
                            "variable": [
                                {
                                    "id": "orderID",
                                    "key": "orderID",
                                    "value": "12",
                                    "description": "The ID of the order to retrieve."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieves a single order by its ID, ensuring it belongs to the authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"id\": 426,\n      \"charge_point_id\": 16,\n      \"charge_point_connector_id\": 16,\n      \"charging_session_time\": \"27.0000\",\n      \"charging_session_energy\": \"1661.0000\",\n      \"unit\": \"minutes\",\n      \"requested_quantity\": \"8\",\n      \"feedback_exist\": 0,\n      \"status\": 1,\n      \"delivery_date\": \"2024-09-16 07:33:27\",\n      \"user_id\": 11,\n      \"fleet_id\": 64,\n      \"quantity\": \"6.0000\",\n      \"price\": \"0.00\",\n      \"fees\": \"8.00\",\n      \"earning\": \"953.47\",\n      \"unit_price\": \"2587.98\",\n      \"created_at\": \"2024-09-16T07:33:27.000000Z\",\n      \"updated_at\": \"2025-03-04T13:27:57.000000Z\",\n      \"connector_number\": 1,\n      \"charge_point\": {\n          \"id\": 16,\n          \"identifier\": \"CP:DDEE36\",\n          \"category\": \"EV_CHARGER\",\n          \"title\": \"ocpp_yesy\",\n          \"description\": \"ocpp_yesy\",\n          \"latitude\": \"24.593799037018584\",\n          \"longitude\": \"46.62275091622337\",\n          \"listed\": false,\n          \"distance\": null,\n          \"type\": null,\n          \"status\": \"unavailable\",\n          \"image\": \"http:\/\/localhost:8080\/images\/charge-point-1.jpeg\",\n          \"session_limit_type\": null,\n          \"session_limit_value\": 0,\n          \"online_status\": 0,\n          \"configured\": 0,\n          \"rating\": \"3.17\",\n          \"owner_id\": 1,\n          \"address\": {\n              \"address_line_1\": \"x\",\n              \"address_line_2\": \"y\",\n              \"address_line_3\": \"z\",\n              \"zipcode\": \"1234\",\n              \"city\": \"xxx\",\n              \"state\": \"yyy\"\n          },\n          \"token\": \"EV_CHARGER_64AFFC8DDEEC1\",\n          \"contact_number\": \"9666564654664\",\n          \"open_time\": \"00:00:00\",\n          \"close_time\": \"23:59:00\",\n          \"total_earnings\": \"17026.18\",\n          \"total_energy\": 53469,\n          \"total_sessions_time\": 739,\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\": \"unavailable\",\n                  \"number\": 1\n              }\n          ],\n          \"amenities\": [],\n          \"price_unit\": \"energy\",\n          \"orders_count\": 50,\n          \"price\": \"1362.09\",\n          \"price_usd\": 10,\n          \"is_external\": false,\n          \"is_in_use\": false,\n          \"is_reserved\": false,\n          \"available\": false,\n          \"next_reservation_near_now\": null,\n          \"external_details\": null,\n          \"reservation_fee\": \"68.10\",\n          \"booked_by_current_user\": false,\n          \"used_by_current_user\": false,\n          \"earning\": \"0.00\"\n      },\n      \"insert_date\": \"2024-09-16 07:33\",\n      \"prices\": [],\n      \"app_fees\": \"-953.47\",\n      \"elapsed_time\": \"27.0000\"\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"error\": \"Order not found\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST start charging and create a new order.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/orders\/start",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/orders\/start"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "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\/orders\/stop",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/orders\/stop"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"power_source_id\":\"molestiae\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Payout methods",
            "description": "\nEndpoints for managing payout methods for the authenticated user.",
            "item": [
                {
                    "name": "Get available payout methods",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payout-methods\/available",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/payout-methods\/available"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Lists the payout methods available for the user's country that have not yet been added.\nThe user must have a country associated with their profile."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": [\n          {\n              \"id\": 1,\n              \"logo\": \"http:\/\/localhost:8080\/images\/payout-methods\/stripe.png\",\n              \"name\": \"stripe\",\n              \"description\": \"Instant withdrawals with Stripe, ensuring secure and seamless transactions.\",\n              \"details\": {\n                  \"account_id\": \"acct_1PnynuR7qdScojsdf56\",\n                  \"account_status\": \"Pending\"\n              },\n              \"link\":\"https:\/\/connect.stripe.com\/setup\/s\/acct_1PjiyP08tgBteJD6\/IAbfEzjDXCzjsds\"\n          },\n          ...\n      ]\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update an existing payout method",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payout-methods\/:payoutMethod_name",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/payout-methods\/:payoutMethod_name",
                            "variable": [
                                {
                                    "id": "payoutMethod_name",
                                    "key": "payoutMethod_name",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"payoutMethod\":\"stc-pay\",\"fullname\":\"John Doe\",\"userType\":\"individual\",\"address\":\"123 Main Street, City, Country\",\"TIN\":\"123-45-6789\",\"id\":\"0501234567\",\"email\":\"paypal@example.com\"}"
                        },
                        "description": "Updates the details of a payout method associated with the authenticated user.\nSupports file uploads for specific method types (e.g., ID for bank transfer)."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 1,\"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get user's payout methods",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payout-methods",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/payout-methods"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieves the list of payout methods that the authenticated user has already added."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": [\n          {\n              \"id\": 1,\n              \"logo\": \"http:\/\/localhost:8080\/images\/payout-methods\/stripe.png\",\n              \"name\": \"stripe\",\n              \"description\": \"Instant withdrawals with Stripe, ensuring secure and seamless transactions.\",\n              \"details\": {\n                  \"account_id\": \"acct_1PnynuR7qdScojsdf56\",\n                  \"account_status\": \"Pending\"\n              },\n              \"link\":\"https:\/\/connect.stripe.com\/setup\/s\/acct_1PjiyP08tgBteJD6\/IAbfEzjDXCzjsds\"\n          },\n          ...\n      ]\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a payout method",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payout-methods",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/payout-methods"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"payoutMethod\":\"cliq\",\"fullname\":\"John Doe\",\"userType\":\"individual\",\"address\":\"123 Main Street, City, Country\",\"TIN\":\"123-45-6789\",\"id\":\"0501234567\",\"email\":\"paypal@example.com\"}"
                        },
                        "description": "Associates a new payout method with the authenticated user using the provided data.\nOptionally handles file uploads (e.g., ID for bank transfer)."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 1,\"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Remove a payout method",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payout-methods\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/payout-methods\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the payout method."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Detaches a payout method from the authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 1,\"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Payouts",
            "description": "",
            "item": [
                {
                    "name": "Get the list of the payouts.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payouts",
                            "query": [
                                {
                                    "key": "itemsPerPage",
                                    "value": "15",
                                    "description": "the number of items per page",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/payouts?itemsPerPage=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"data\": [\n              {\n                  \"id\": 15,\n                  \"payout_id\": \"1\",\n                  \"payout_method_id\": 1,\n                  \"user_id\": 1,\n                  \"account_id\": \"voluptas\",\n                  \"amount\": \"341.67\",\n                  \"status\": \"paid\",\n                  \"response\": \"Et consectetur illum.\",\n                  \"created_at\": \"2024-08-14T17:16:25.000000Z\",\n                  \"updated_at\": \"2024-08-14T17:16:25.000000Z\"\n              },\n\n             ...\n          ],\n          \"meta\": {\n              \"per_page\": 2,\n              \"total\": 15\n          }\n      }\n  }",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Request a payout.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/payouts\/request-payout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/payouts\/request-payout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"payoutMethod\":7}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 1,\"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 0,\"msg\": \"Internal system error.\",\"msg_arabic\": \"\u062e\u0637\u0623 \u0641\u064a \u0627\u0644\u0646\u0638\u0627\u0645\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Power centers management",
            "description": "",
            "item": [
                {
                    "name": "List power centers (datatable)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/datatable",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/datatable"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "All power centers owned by the current user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n          \"success\": 1,\n          \"msg\": \"Done!\",\n          \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n          \"results\": {\n              \"data\": [\n                  {\n                      \"id\": 24,\n                      \"title\": \"test open source API\",\n                      \"identifier\": \"PS_67DF25E57A981\",\n                      \"listed\": false,\n                      \"status\": \"unavailable\",\n                      \"earning\": \"0.00\",\n                      \"rating\": \"0.00\"\n                  },\n              ...\n              ],\n              \"meta\": {\n                  \"per_page\": 15,\n                  \"total\": 11\n              }\n          }\n      }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Power center green trace",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/sustainability",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/sustainability"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Calculates the CO2 savings based on energy consumed by power centers."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n          \"success\": 1,\n          \"msg\": \"Done!\",\n          \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n          \"results\": 34.612\n      }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get all power centers as GeoJSON",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/geojson",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/geojson"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a GeoJSON representation of all owned power centers."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"type\": \"FeatureCollection\",\n      \"features\": [\n          {\n              \"type\": \"Feature\",\n              \"properties\": {\n                  \"id\": 24,\n                  \"identifier\": \"PS_67DF25E57A981\",\n                  \"category\": \"EV_CHARGER\",\n                  \"price_unit\": \"minutes\",\n                  \"title\": \"test open source API\",\n                  \"description\": null,\n                  \"latitude\": \"36.64575836483359\",\n                  \"longitude\": \"2.9176092880736184\",\n                  \"address_line_1\": \"Tassala\",\n                  \"address_line_2\": null,\n                  \"address_line_3\": null,\n                  \"zipcode\": null,\n                  \"city\": null,\n                  \"state\": null,\n                  \"status\": \"unavailable\",\n                  \"image\": \"http:\/\/localhost:8080\/images\/charge-point-1.jpeg\",\n                  \"contact_number\": null,\n                  \"open_time\": null,\n                  \"close_time\": null,\n                  \"user_id\": 1,\n                  \"price\": null,\n                  \"deleted_at\": null,\n                  \"listed\": 0,\n                  \"token\": \"EV_CHARGER_67DF25E57A988\",\n                  \"session_limit_type\": null,\n                  \"session_limit_value\": 0,\n                  \"created_at\": \"2025-03-22T21:04:37.000000Z\",\n                  \"updated_at\": \"2025-03-27T10:13:18.000000Z\",\n                  \"external_details_id\": null,\n                  \"identifier_update\": 0,\n                  \"configured\": 0,\n                  \"connected\": 0,\n                  \"busy\": 0,\n                  \"reserved\": 0,\n                  \"charge_point_type_id\": null,\n                  \"charging_site_id\": null,\n                  \"media\": [],\n                  \"icon-image\": \"pin-cp-out-of-service\",\n                  \"marker_title\": \"PS_67DF25E57A981\\n$0.00\",\n                  \"earning\": \"0.00\"\n              },\n              \"geometry\": {\n                  \"type\": \"Point\",\n                  \"coordinates\": [\n                      \"2.9176092880736184\",\n                      \"36.64575836483359\"\n                  ]\n              }\n          },\n          ....\n      ]\n  }",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Export power centers as Excel",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/export",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/export"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Downloads all power centers owned by the current user in .xlsx format."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "file.xlsx",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get power center statistics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/:charge_point_id\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/:charge_point_id\/stats",
                            "variable": [
                                {
                                    "id": "charge_point_id",
                                    "key": "charge_point_id",
                                    "value": "non",
                                    "description": "The ID of the charge point."
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "14",
                                    "description": "The ID of the powercenter."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns detailed analytics about the selected power center."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"today\": {\n          \"earnings\": \"0.00\",\n          \"chargingTime\": \"0.00\",\n          \"energyConsumed\": \"0.00\",\n          \"ordersNb\": 0\n      },\n      \"thisWeek\": {\n          \"earnings\": \"0.00\",\n          \"chargingTime\": \"0.00\",\n          \"energyConsumed\": \"0.00\",\n          \"ordersNb\": 0,\n          \"date\": \"05-05-2025\"\n      },\n      \"thisMonth\": {\n          \"earnings\": \"0.00\",\n          \"chargingTime\": \"0.00\",\n          \"energyConsumed\": \"0.00\",\n          \"ordersNb\": 0,\n          \"date\": \"12-04-2025\"\n      }\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get single power center as GeoJSON",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/:charge_point_id\/geojson",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/:charge_point_id\/geojson",
                            "variable": [
                                {
                                    "id": "charge_point_id",
                                    "key": "charge_point_id",
                                    "value": "facere",
                                    "description": "The ID of the charge point."
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "14",
                                    "description": "The ID of the powercenter."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a GeoJSON representation of a specific power center."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n          \"type\": \"FeatureCollection\",\n          \"features\": [\n              {\n                  \"type\": \"Feature\",\n                  \"properties\": {\n                      \"id\": 24,\n                      \"identifier\": \"PS_67DF25E57A981\",\n                      \"category\": \"EV_CHARGER\",\n                      \"price_unit\": \"minutes\",\n                      \"title\": \"test open source API\",\n                      \"description\": null,\n                      \"latitude\": \"36.64575836483359\",\n                      \"longitude\": \"2.9176092880736184\",\n                      \"address_line_1\": \"Tassala\",\n                      \"address_line_2\": null,\n                      \"address_line_3\": null,\n                      \"zipcode\": null,\n                      \"city\": null,\n                      \"state\": null,\n                      \"status\": \"unavailable\",\n                      \"image\": \"http:\/\/localhost:8080\/images\/charge-point-1.jpeg\",\n                      \"contact_number\": null,\n                      \"open_time\": null,\n                      \"close_time\": null,\n                      \"user_id\": 1,\n                      \"price\": null,\n                      \"deleted_at\": null,\n                      \"listed\": 0,\n                      \"token\": \"EV_CHARGER_67DF25E57A988\",\n                      \"session_limit_type\": null,\n                      \"session_limit_value\": 0,\n                      \"created_at\": \"2025-03-22T21:04:37.000000Z\",\n                      \"updated_at\": \"2025-03-27T10:13:18.000000Z\",\n                      \"external_details_id\": null,\n                      \"identifier_update\": 0,\n                      \"configured\": 0,\n                      \"connected\": 0,\n                      \"busy\": 0,\n                      \"reserved\": 0,\n                      \"charge_point_type_id\": null,\n                      \"charging_site_id\": null,\n                      \"media\": [],\n                      \"icon-image\": \"pin-cp-out-of-service\",\n                      \"marker_title\": \"PS_67DF25E57A981\\n$0.00\",\n                      \"earning\": \"0.00\"\n                  },\n                  \"geometry\": {\n                      \"type\": \"Point\",\n                      \"coordinates\": [\n                          \"2.9176092880736184\",\n                          \"36.64575836483359\"\n                      ]\n                  }\n              }\n          ]\n      }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List power centers types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/types",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/types"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "All power centers types."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": [\n          {\n             \"id\": 5,\n              \"name\": \"Rapid\",\n              \"description\": \"50 kW - Rapid DC charging.\",\n              \"img\": \"https:\/\/storage.powerly.app\/types\/rapid.png\",\n              \"current_type\": \"DC\",\n              \"max_power\": \"50.00\"\n          },\n          ...\n      ]\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List power centers connectors",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/connectors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/connectors"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "All power centers connectors."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": [\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          },\n          ...\n      ]\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List power centers amenities",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/amenities",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/amenities"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "All power centers amenities."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": [\n          {\n              \"id\": 1,\n              \"name\": \"Lodging\",\n              \"icon\": \"https:\/\/storage.powerly.app\/amenities\/Lodging.png\",\n              \"description\": null\n          },\n          ...\n      ]\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/charge-points\/check-subscription-limitation",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/check-subscription-limitation",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/check-subscription-limitation"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "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": "vary",
                                    "value": "Origin"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":0,\"msg\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Allowed users CRUD",
                    "description": "",
                    "item": [
                        {
                            "name": "Allowed users list",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-points\/:charge_point_id\/allowed-users",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-points\/:charge_point_id\/allowed-users",
                                    "variable": [
                                        {
                                            "id": "charge_point_id",
                                            "key": "charge_point_id",
                                            "value": "alias",
                                            "description": "The ID of the charge point."
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n  \"success\": 1,\n  \"msg\": \"Done!\",\n  \"results\": [\n    {\n      \"id\": 24,\n      \"email\": \"johndoe@gmail.com\",\n      \"name\": \"john DOE\",\n      \"first_name\": \"john\",\n      \"last_name\": \"DOE\"\n    },\n    ...\n  ]\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Allowed users list (datatable)",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-points\/:charge_point_id\/allowed-users\/datatable",
                                    "query": [
                                        {
                                            "key": "search",
                                            "value": "hic",
                                            "description": "Optional search query to filter users.",
                                            "disabled": false
                                        },
                                        {
                                            "key": "itemsPerPage",
                                            "value": "13",
                                            "description": "Number of items per page (-1 for all).",
                                            "disabled": false
                                        }
                                    ],
                                    "raw": "{{baseUrl}}\/api\/charge-points\/:charge_point_id\/allowed-users\/datatable?search=hic&itemsPerPage=13",
                                    "variable": [
                                        {
                                            "id": "charge_point_id",
                                            "key": "charge_point_id",
                                            "value": "repellat",
                                            "description": "The ID of the charge point."
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n  \"success\": 1,\n  \"msg\": \"Done!\",\n  \"results\": {\n    \"data\": [\n      {\n        \"id\": 24,\n        \"email\": \"johndoe@gmail.com\",\n        \"name\": \"john DOE\",\n        \"first_name\": \"john\",\n        \"last_name\": \"DOE\"\n      },\n      ...\n    ],\n    \"meta\": {\n      \"per_page\": 15,\n      \"total\": 55\n    }\n  }\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Add a user to allowed users.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-points\/:charge_point_id\/allowed-users",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-points\/:charge_point_id\/allowed-users",
                                    "variable": [
                                        {
                                            "id": "charge_point_id",
                                            "key": "charge_point_id",
                                            "value": "et",
                                            "description": "The ID of the charge point."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"emails\":\"perspiciatis\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Remove a user from allowed users.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-points\/:charge_point_id\/allowed-users\/:user_id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-points\/:charge_point_id\/allowed-users\/:user_id",
                                    "variable": [
                                        {
                                            "id": "charge_point_id",
                                            "key": "charge_point_id",
                                            "value": "officiis",
                                            "description": "The ID of the charge point."
                                        },
                                        {
                                            "id": "user_id",
                                            "key": "user_id",
                                            "value": "ipsa",
                                            "description": "The ID of the user."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Allowed users list",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-groups\/:charge_point_group_id\/allowed-users",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-point-groups\/:charge_point_group_id\/allowed-users",
                                    "variable": [
                                        {
                                            "id": "charge_point_group_id",
                                            "key": "charge_point_group_id",
                                            "value": "1",
                                            "description": "The ID of the charge point group."
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n  \"success\": 1,\n  \"msg\": \"Done!\",\n  \"results\": [\n    {\n      \"id\": 24,\n      \"email\": \"johndoe@gmail.com\",\n      \"name\": \"john DOE\",\n      \"first_name\": \"john\",\n      \"last_name\": \"DOE\"\n    },\n    ...\n  ]\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Allowed users list (datatable)",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-groups\/:charge_point_group_id\/allowed-users\/datatable",
                                    "query": [
                                        {
                                            "key": "search",
                                            "value": "perferendis",
                                            "description": "Optional search query to filter users.",
                                            "disabled": false
                                        },
                                        {
                                            "key": "itemsPerPage",
                                            "value": "18",
                                            "description": "Number of items per page (-1 for all).",
                                            "disabled": false
                                        }
                                    ],
                                    "raw": "{{baseUrl}}\/api\/charge-point-groups\/:charge_point_group_id\/allowed-users\/datatable?search=perferendis&itemsPerPage=18",
                                    "variable": [
                                        {
                                            "id": "charge_point_group_id",
                                            "key": "charge_point_group_id",
                                            "value": "1",
                                            "description": "The ID of the charge point group."
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n  \"success\": 1,\n  \"msg\": \"Done!\",\n  \"results\": {\n    \"data\": [\n      {\n        \"id\": 24,\n        \"email\": \"johndoe@gmail.com\",\n        \"name\": \"john DOE\",\n        \"first_name\": \"john\",\n        \"last_name\": \"DOE\"\n      },\n      ...\n    ],\n    \"meta\": {\n      \"per_page\": 15,\n      \"total\": 55\n    }\n  }\n}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Add a user to allowed users.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-groups\/:charge_point_group_id\/allowed-users",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-point-groups\/:charge_point_group_id\/allowed-users",
                                    "variable": [
                                        {
                                            "id": "charge_point_group_id",
                                            "key": "charge_point_group_id",
                                            "value": "1",
                                            "description": "The ID of the charge point group."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"emails\":\"et\"}"
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Remove a user from allowed users.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-groups\/:charge_point_group_id\/allowed-users\/:user_id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-point-groups\/:charge_point_group_id\/allowed-users\/:user_id",
                                    "variable": [
                                        {
                                            "id": "charge_point_group_id",
                                            "key": "charge_point_group_id",
                                            "value": "1",
                                            "description": "The ID of the charge point group."
                                        },
                                        {
                                            "id": "user_id",
                                            "key": "user_id",
                                            "value": "velit",
                                            "description": "The ID of the user."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "List power centers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "All power centers owned by the current user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "[\n          {\n              \"id\": 24,\n              \"title\": \"test open source API\",\n              \"identifier\": \"PS_67DF25E57A981\",\n              \"listed\": 0,\n              \"status\": \"unavailable\",\n              \"earning\": \"0.00\",\n              \"rating\": \"0.00\"\n          },\n          ...\n      ]",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a power center",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"consequuntur\",\"identifier\":\"eum\",\"category\":\"excepturi\",\"address_line_1\":\"dolorem\",\"address_line_2\":\"iure\",\"address_line_3\":\"explicabo\",\"zipcode\":\"omnis\",\"city\":\"assumenda\",\"state\":\"iste\",\"latitude\":1026098.801307911,\"longitude\":2}"
                        },
                        "description": "Creates a new power center with the provided attributes."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"price_unit\": \"minutes\",\n      \"user_id\": 1,\n      \"title\": \"veniam\",\n      \"identifier\": \"facilis\",\n      \"token\": \"EV_CHARGER_68220FE7D87CD\",\n      \"category\": \"EV_CHARGER\",\n      \"address_line_1\": \"ut\",\n      \"address_line_2\": \"est\",\n      \"address_line_3\": \"amet\",\n      \"zipcode\": \"rerum\",\n      \"city\": \"facere\",\n      \"state\": \"id\",\n      \"latitude\": 49.28628,\n      \"longitude\": 144776,\n      \"updated_at\": \"2025-05-12T15:12:39.000000Z\",\n      \"created_at\": \"2025-05-12T15:12:39.000000Z\",\n      \"id\": 25\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n      \"identifier\": [\n          \"The identifier has already been taken.\"\n      ],\n      \"category\": [\n          \"The selected category is invalid.\"\n      ]\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get a power center by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "20",
                                    "description": "The ID of the powercenter."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"id\": 24,\n      \"identifier\": \"PS_67DF25E57A981\",\n      \"category\": \"EV_CHARGER\",\n      \"title\": \"test open source API\",\n      \"description\": null,\n      \"latitude\": \"36.64575836483359\",\n      \"longitude\": \"2.9176092880736184\",\n      \"listed\": false,\n      \"distance\": null,\n      \"type\": null,\n      \"status\": \"unavailable\",\n      \"image\": \"http:\/\/localhost:8080\/images\/charge-point-1.jpeg\",\n      \"session_limit_type\": null,\n      \"session_limit_value\": 0,\n      \"online_status\": 0,\n      \"configured\": 0,\n      \"rating\": \"0.00\",\n      \"owner_id\": 1,\n      \"address\": {\n          \"address_line_1\": \"Tassala\",\n          \"address_line_2\": null,\n          \"address_line_3\": null,\n          \"zipcode\": null,\n          \"city\": null,\n          \"state\": null\n      },\n      \"token\": \"EV_CHARGER_67DF25E57A988\",\n      \"contact_number\": null,\n      \"open_time\": null,\n      \"close_time\": null,\n      \"total_earnings\": \"0.00\",\n      \"total_energy\": 0,\n      \"total_sessions_time\": 0,\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\": \"unavailable\",\n              \"number\": 1\n          }\n      ],\n      \"amenities\": [],\n      \"price_unit\": \"minutes\",\n      \"orders_count\": 0,\n      \"price\": \"0.00\",\n      \"price_usd\": 0,\n      \"is_external\": false,\n      \"is_in_use\": false,\n      \"is_reserved\": false,\n      \"available\": false,\n      \"next_reservation_near_now\": null,\n      \"external_details\": null,\n      \"reservation_fee\": \"68.10\",\n      \"booked_by_current_user\": false,\n      \"used_by_current_user\": false,\n      \"earning\": \"0.00\"\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a power center",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the powercenter."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"FastCharge Station 101\",\"description\":\"Available 24\\\/7 near the main square.\",\"latitude\":25.276987,\"longitude\":55.296249,\"address_line_1\":\"123 Main Street\",\"address_line_2\":\"Suite 4B\",\"address_line_3\":\"Business Complex\",\"zipcode\":\"12345\",\"city\":\"Dubai\",\"state\":\"Dubai\",\"contact_number\":\"+971500000000\",\"open_time\":\"08:00:00\",\"close_time\":\"22:00:00\",\"price\":15.5,\"price_currency\":\"AED\",\"category\":\"EV_CHARGER\",\"amenities\":[1],\"connectors\":[{\"id\":1,\"number\":2},{\"id\":3,\"number\":1}],\"price_unit\":\"minutes\",\"session_limit_value\":60,\"session_limit_type\":\"minutes\",\"listed\":false,\"type\":2,\"secure\":false}"
                        },
                        "description": "Updates an existing power center."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"id\": 25\n      \"price_unit\": \"minutes\",\n      \"user_id\": 1,\n      \"title\": \"veniam\",\n      \"identifier\": \"facilis\",\n      \"token\": \"EV_CHARGER_68220FE7D87CD\",\n      \"category\": \"EV_CHARGER\",\n      \"address_line_1\": \"ut\",\n      \"address_line_2\": \"est\",\n      \"address_line_3\": \"amet\",\n      \"zipcode\": \"rerum\",\n      \"city\": \"facere\",\n      \"state\": \"id\",\n      \"latitude\": 49.28628,\n      \"longitude\": 144776,\n      \"updated_at\": \"2025-05-12T15:12:39.000000Z\",\n      \"created_at\": \"2025-05-12T15:12:39.000000Z\",\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n      \"success\": 0,\n      \"message\": \"The price field must have 2 decimal places.\",\n      \"errors\": {\n          \"price\": [\n              \"The price field must have 2 decimal places.\"\n          ],\n          \"type\": [\n              \"The selected type is invalid.\"\n          ],\n          \"amenities.0\": [\n              \"The selected amenities.0 is invalid.\"\n          ],\n          \"connectors.0.id\": [\n              \"The selected connectors.0.id is invalid.\"\n          ]\n      }\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a power center",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/charge-points\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/charge-points\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "13",
                                    "description": "The ID of the powercenter."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Deletes the specified power center."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 1,\"msg\": \"done\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\"error\": \"Failed to delete Chargepoint\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"error\": \"Invalid Resource Requested\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Media CRUD",
                    "description": "",
                    "item": [
                        {
                            "name": "Get a list of media for a given power center.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-points\/:charge_point_id\/media",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-points\/:charge_point_id\/media",
                                    "variable": [
                                        {
                                            "id": "charge_point_id",
                                            "key": "charge_point_id",
                                            "value": "soluta",
                                            "description": "The ID of the charge point."
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": [\n          {\n              \"id\": 2,\n              \"title\": \"test\",\n              \"url\": \"http:\/\/localhost:8080\/storage\/media\/PdOY4INfZK4x2XYDQe5Hz5cA5jDJ1rzVVzL0fvuI.jpg\",\n              \"type\": \"photo\"\n          },\n         ...\n      ]\n  }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Store a new media for a power center.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-points\/:charge_point_id\/media",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-points\/:charge_point_id\/media",
                                    "variable": [
                                        {
                                            "id": "charge_point_id",
                                            "key": "charge_point_id",
                                            "value": "recusandae",
                                            "description": "The ID of the charge point."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "multipart\/form-data"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "title[0]",
                                            "value": "ytyyuvuyzcbtw",
                                            "type": "text",
                                            "description": ""
                                        },
                                        {
                                            "key": "media[]",
                                            "src": [],
                                            "type": "file"
                                        }
                                    ]
                                },
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": [\n          {\n              \"id\": 2,\n              \"title\": \"test\",\n              \"url\": \"http:\/\/localhost:8080\/storage\/media\/PdOY4INfZK4x2XYDQe5Hz5cA5jDJ1rzVVzL0fvuI.jpg\",\n              \"type\": \"photo\"\n          },\n         ...\n      ]\n  }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\n  \"success\": 0,\n  \"message\": \"You have reached the maximum number (8) of media uploads in this Device.\",\n  \"errors\": {\n    \"media\": [\n      \"You have reached the maximum number (8) of media uploads in this Device.\"\n    ]\n    \"media.0\": [\n      \"The media must be an image.\"\n    ]\n  }\n}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Delete a media.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/media\/:media_id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/media\/:media_id",
                                    "variable": [
                                        {
                                            "id": "media_id",
                                            "key": "media_id",
                                            "value": "1",
                                            "description": "The ID of the media."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\"success\": 1, \"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 403,
                                    "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "Range prices CRUD",
                    "description": "",
                    "item": [
                        {
                            "name": "Get a list of range prices for a given power center.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-points\/:charge_point_id\/charge-point-prices",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-points\/:charge_point_id\/charge-point-prices",
                                    "variable": [
                                        {
                                            "id": "charge_point_id",
                                            "key": "charge_point_id",
                                            "value": "fugit",
                                            "description": "The ID of the charge point."
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": [\n          {\n              \"id\": 1,\n              \"price\": \"649310.24\",\n              \"startingTime\": \"10:00\",\n              \"endingTime\": \"13:00\"\n          },\n         ...\n      ]\n  }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Store a new range price for a power center.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-points\/:charge_point_id\/charge-point-prices",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-points\/:charge_point_id\/charge-point-prices",
                                    "variable": [
                                        {
                                            "id": "charge_point_id",
                                            "key": "charge_point_id",
                                            "value": "tempora",
                                            "description": "The ID of the charge point."
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"price\":20255922.041833933,\"startingTime\":\"13:36\",\"endingTime\":\"13:36\"}"
                                },
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 5,\n          \"price\": \"32.15\",\n          \"startingTime\": \"07:57\",\n          \"endingTime\": \"08:57\"\n      }\n  }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\n  \"success\": 0,\n  \"message\": \"The price must be a number.\",\n  \"errors\": {\n    \"price\": [\n      \"The price must be a number.\"\n    ],\n    \"ending_time\": [\n      \"The ending time does not match the format H:i.\",\n      \"The ending time must be a date after starting time.\"\n    ]\n  }\n}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Retrieve a specific range price.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-prices\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-point-prices\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "1",
                                            "description": "The ID of the charge point price."
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n     \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 1,\n          \"price\": \"649310.24\",\n          \"startingTime\": \"10:00\",\n          \"endingTime\": \"13:00\"\n      }\n}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 403,
                                    "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Update an existing range price.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-prices\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-point-prices\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "1",
                                            "description": "The ID of the charge point price."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"price\":229.969223197,\"startingTime\":\"13:36\",\"endingTime\":\"13:36\"}"
                                },
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 1,\n          \"price\": \"694.67\",\n          \"startingTime\": \"08:19\",\n          \"endingTime\": \"09:19\"\n      }\n  }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 403,
                                    "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\n  \"success\": 0,\n  \"message\": \"The price must be a number.\",\n  \"errors\": {\n    \"price\": [\n      \"The price must be a number.\"\n    ],\n    \"ending_time\": [\n      \"The ending time does not match the format H:i.\",\n      \"The ending time must be a date after starting time.\"\n    ]\n  }\n}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Delete a range price.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-prices\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-point-prices\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "1",
                                            "description": "The ID of the charge point price."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\"success\": 1, \"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 403,
                                    "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "Groups CRUD",
                    "description": "",
                    "item": [
                        {
                            "name": "Groups list. (datatable)",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-groups\/datatable",
                                    "query": [
                                        {
                                            "key": "search",
                                            "value": "labore",
                                            "description": "Optional search query to filter groups.",
                                            "disabled": false
                                        },
                                        {
                                            "key": "itemsPerPage",
                                            "value": "9",
                                            "description": "Number of groups per page.",
                                            "disabled": false
                                        },
                                        {
                                            "key": "power-centers",
                                            "value": "",
                                            "description": "If set to true, includes associated power centers in the response.",
                                            "disabled": true
                                        }
                                    ],
                                    "raw": "{{baseUrl}}\/api\/charge-point-groups\/datatable?search=labore&itemsPerPage=9&power-centers="
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"data\": [\n              {\n                  \"id\": 935,\n                  \"name\": \"Voluptatem qui cum.\",\n                  \"companyName\": null,\n                  \"licenseCode\": null,\n                  \"chargePointsNumber\": 0,\n                  \"chargePointsIds\": [],\n                  \"power_centers\": []\n              },\n              ...\n          ],\n          \"meta\": {\n              \"per_page\": 15,\n              \"total\": 1083\n          }\n      }\n  }\n @response 500 {\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Groups list.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-groups",
                                    "query": [
                                        {
                                            "key": "power-centers",
                                            "value": "1",
                                            "description": "If set to true, includes associated power centers in the response.",
                                            "disabled": false
                                        }
                                    ],
                                    "raw": "{{baseUrl}}\/api\/charge-point-groups?power-centers=1"
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"data\": [\n              {\n                  \"id\": 935,\n                  \"name\": \"Voluptatem qui cum.\",\n                  \"companyName\": null,\n                  \"licenseCode\": null,\n                  \"chargePointsNumber\": 0,\n                  \"chargePointsIds\": [],\n                  \"power_centers\": []\n              },\n              ...\n          ],\n          \"meta\": {\n              \"per_page\": 15,\n              \"total\": 1083\n          }\n      }\n  }\n @response 500 {\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Create a new group.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-groups",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-point-groups"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"xxqnomdamowkavqxdzmhnewirkijzdkxggaoroqkzvmix\",\"companyName\":\"wolglccgfhjxfyupzijftxcthqcscw\",\"licenseCode\":\"yeablvslbcoklsrfbhyo\",\"chargePoints\":[\"atque\"]}"
                                },
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 1,\n          \"name\": \"Iusto sint enim doloremque.\",\n          \"companyName\": null,\n          \"licenseCode\": null,\n          \"chargePointsNumber\": 0,\n          \"chargePointsIds\": []\n      }\n  }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\n  \"success\": 0,\n  \"message\": \"Validation error\",\n  \"errors\": {\n    \"name\": [\"The name field is required.\"]\n  }\n}\n @response 500 {\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Get details of a specific group.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-groups\/:id",
                                    "query": [
                                        {
                                            "key": "power-centers",
                                            "value": "1",
                                            "description": "If set to true, includes associated power centers in the response.",
                                            "disabled": false
                                        }
                                    ],
                                    "raw": "{{baseUrl}}\/api\/charge-point-groups\/:id?power-centers=1",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "1",
                                            "description": "The ID of the charge point group."
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 1,\n          \"name\": \"Iusto sint enim doloremque.\",\n          \"companyName\": null,\n          \"licenseCode\": null,\n          \"chargePointsNumber\": 0,\n          \"chargePointsIds\": []\n      }\n  }\n @response 500 {\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Update an existing group.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-groups\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-point-groups\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "1",
                                            "description": "The ID of the charge point group."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"xtiekcqcsvwlgascrhrporxwvgcdaozamxuujzdfbqnrfdijdvyptmfvydjnnmduyuthsnfqvvsloccbwv\",\"companyName\":\"zpenhjollcqokyczcyxaufczpidixqkjbemvlkztjbowfyxumbrarkejcetnxhyaaugnblu\",\"licenseCode\":\"xqnohhtshelqwbigisolrpelcfudjkga\",\"chargePoints\":[\"dolore\"]}"
                                },
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 1,\n          \"name\": \"Iusto sint enim doloremque.\",\n          \"companyName\": null,\n          \"licenseCode\": null,\n          \"chargePointsNumber\": 0,\n          \"chargePointsIds\": []\n      }\n  }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 401,
                                    "body": "{\"success\": 0,\"message\": \"The API key is invalid or missing.\"}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 403,
                                    "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                                    "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,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Delete a group.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charge-point-groups\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charge-point-groups\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "1",
                                            "description": "The ID of the charge point group."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\"success\": 1,\"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 403,
                                    "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "Sites CRUD",
                    "description": "",
                    "item": [
                        {
                            "name": "Sites list (datatable).",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charging-sites\/datatable",
                                    "query": [
                                        {
                                            "key": "search",
                                            "value": "saepe",
                                            "description": "Optional search query to filter sites.",
                                            "disabled": false
                                        },
                                        {
                                            "key": "itemsPerPage",
                                            "value": "16",
                                            "description": "Number of sites per page. Defaults to 15.",
                                            "disabled": false
                                        },
                                        {
                                            "key": "power-centers",
                                            "value": "1",
                                            "description": "If set to true, includes associated power centers in the response.",
                                            "disabled": false
                                        }
                                    ],
                                    "raw": "{{baseUrl}}\/api\/charging-sites\/datatable?search=saepe&itemsPerPage=16&power-centers=1"
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"data\": [\n              {\n                  \"id\": 164,\n                  \"categoryId\": null,\n                  \"name\": \"Site 11\",\n                  \"status\": true,\n                  \"active\": true,\n                  \"startDate\": null,\n                  \"endDate\": null,\n                  \"integrationCode\": null,\n                  \"chargePointIds\": [\n                      20,\n                      21\n                  ],\n                  \"address\": {\n                      \"id\": 161,\n                      \"latitude\": \"28.608637026617\",\n                      \"longitude\": \"14.589843749997\",\n                      \"country\": {\n                          \"id\": 195,\n                          \"name\": \"Algeria\"\n                      },\n                      \"state\": \"test\",\n                      \"city\": \"Douera\",\n                      \"zipcode\": \"16049\",\n                      \"address_line_1\": \"CITY 100 LOGS DEKAKNA DOUERA\",\n                      \"address_line_2\": null,\n                      \"address_line_3\": null\n                  },\n                  \"power_centers\": []\n              },\n              ...\n          ],\n          \"meta\": {\n              \"per_page\": 15,\n              \"total\": 108\n          }\n      }\n  }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Sites list.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charging-sites",
                                    "query": [
                                        {
                                            "key": "power-centers",
                                            "value": "1",
                                            "description": "If set to true, includes associated power centers in the response.",
                                            "disabled": false
                                        }
                                    ],
                                    "raw": "{{baseUrl}}\/api\/charging-sites?power-centers=1"
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": [\n          {\n              \"id\": 164,\n              \"categoryId\": null,\n              \"name\": \"Site 11\",\n              \"status\": true,\n              \"active\": true,\n              \"startDate\": null,\n              \"endDate\": null,\n              \"integrationCode\": null,\n              \"chargePointIds\": [\n                  20,\n                  21\n              ],\n              \"address\": {\n                 \"id\": 161,\n                 \"latitude\": \"28.608637026617\",\n                 \"longitude\": \"14.589843749997\",\n                 \"country\": {\n                     \"id\": 195,\n                     \"name\": \"Algeria\"\n                 },\n                 \"state\": \"test\",\n                 \"city\": \"Douera\",\n                 \"zipcode\": \"16049\",\n                 \"address_line_1\": \"CITY 100 LOGS DEKAKNA DOUERA\",\n                 \"address_line_2\": null,\n                 \"address_line_3\": null\n             },\n             \"power_centers\": []\n          },\n          ...\n      ]\n  }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Create a new site.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charging-sites",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charging-sites"
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"nmoimflpfuwkhjbvigalthbcxgcgwjaaxxgiirmofaqpkrpbluxtwxvfbnv\",\"category\":6,\"status\":true,\"startDate\":\"1997-09-19\",\"endDate\":\"2077-02-06\",\"integrationCode\":\"sint\",\"chargePoints\":[12],\"address\":{\"country_id\":7,\"state\":\"et\",\"city\":\"aut\",\"zipcode\":\"nrxmh\",\"address_line_1\":\"iste\",\"address_line_2\":\"ut\",\"latitude\":294670.66,\"longitude\":436239.42}}"
                                },
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 159,\n          \"categoryId\": 51,\n          \"name\": \"test\",\n          \"status\": true,\n          \"active\": true,\n          \"startDate\": \"2024-10-10\",\n          \"endDate\": \"2024-10-11\",\n          \"integrationCode\": null,\n          \"chargePointIds\": [],\n          \"address\": {\n              \"id\": 161,\n              \"latitude\": \"28.608637026617\",\n              \"longitude\": \"14.589843749997\",\n              \"country\": {\n                  \"id\": 195,\n                  \"name\": \"Algeria\"\n              },\n              \"state\": \"test\",\n              \"city\": \"Douera\",\n              \"zipcode\": \"16049\",\n              \"address_line_1\": \"CITY 100 LOGS DEKAKNA DOUERA\",\n              \"address_line_2\": null,\n              \"address_line_3\": null\n          },\n          \"power_centers\": []\n      }\n  }",
                                    "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,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Get details of a specific site.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charging-sites\/:id",
                                    "query": [
                                        {
                                            "key": "power-centers",
                                            "value": "1",
                                            "description": "If set to true, includes associated power centers in the response.",
                                            "disabled": false
                                        }
                                    ],
                                    "raw": "{{baseUrl}}\/api\/charging-sites\/:id?power-centers=1",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "1",
                                            "description": "The ID of the charging site."
                                        }
                                    ]
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 159,\n          \"categoryId\": 51,\n          \"name\": \"test\",\n          \"status\": true,\n          \"active\": true,\n          \"startDate\": \"2024-10-10\",\n          \"endDate\": \"2024-10-11\",\n          \"integrationCode\": null,\n          \"chargePointIds\": [],\n          \"address\": {\n              \"id\": 161,\n              \"latitude\": \"28.608637026617\",\n              \"longitude\": \"14.589843749997\",\n              \"country\": {\n                  \"id\": 195,\n                  \"name\": \"Algeria\"\n              },\n              \"state\": \"test\",\n              \"city\": \"Douera\",\n              \"zipcode\": \"16049\",\n              \"address_line_1\": \"CITY 100 LOGS DEKAKNA DOUERA\",\n              \"address_line_2\": null,\n              \"address_line_3\": null\n          },\n          \"power_centers\": []\n      }\n  }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Update an existing site.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charging-sites\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charging-sites\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "1",
                                            "description": "The ID of the charging site."
                                        }
                                    ]
                                },
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"name\":\"jwdpntbkze\",\"category\":11,\"status\":false,\"startDate\":\"1999-10-26\",\"endDate\":\"2099-04-07\",\"integrationCode\":\"laborum\",\"chargePoints\":[17],\"address\":{\"country_id\":15,\"state\":\"tempora\",\"city\":\"sequi\",\"zipcode\":\"vesco\",\"address_line_1\":\"sint\",\"address_line_2\":\"aut\",\"latitude\":343460795.25672966,\"longitude\":159420666}}"
                                },
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 159,\n          \"category\": 51,\n          \"name\": \"test\",\n          \"status\": true,\n          \"active\": true,\n          \"startDate\": \"2024-10-10\",\n          \"endDate\": \"2024-10-11\",\n          \"integrationCode\": null,\n          \"chargePointIds\": [],\n          \"address\": {\n              \"id\": 161,\n              \"latitude\": \"28.608637026617\",\n              \"longitude\": \"14.589843749997\",\n              \"country\": {\n                  \"id\": 195,\n                  \"name\": \"Algeria\"\n              },\n              \"state\": \"test\",\n              \"city\": \"Douera\",\n              \"zipcode\": \"16049\",\n              \"address_line_1\": \"CITY 100 LOGS DEKAKNA DOUERA\",\n              \"address_line_2\": null,\n              \"address_line_3\": null\n          },\n          \"power_centers\": []\n      }\n  }",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 403,
                                    "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                                    "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,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        },
                        {
                            "name": "Delete a site.",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/charging-sites\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/charging-sites\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "1",
                                            "description": "The ID of the charging site."
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\"success\": 1,\"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 403,
                                    "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 500,
                                    "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                }
            ]
        },
        {
            "name": "Workers CRUD",
            "description": "",
            "item": [
                {
                    "name": "Workers list. (datatable)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/workers\/datatable",
                            "query": [
                                {
                                    "key": "search",
                                    "value": "necessitatibus",
                                    "description": "Optional search query to filter categories.",
                                    "disabled": false
                                },
                                {
                                    "key": "itemsPerPage",
                                    "value": "12",
                                    "description": "Number of items per page (-1 for all).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/workers\/datatable?search=necessitatibus&itemsPerPage=12"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"data\": [\n              {\n                   \"id\":34,\n                   \"first_name\":\"service\",\n                   \"last_name\":\"test 2\",\n                   \"name\":\"service test 2\",\n                   \"email\":\"servicetest2@gmail.com\",\n                   \"rfid\":\"123131321123\",\n                   \"expire_at\":\"2025-03-31\",\n                   \"cash_on_hands\":\"0\"\n                },\n              ...\n          ],\n          \"meta\": {\n              \"per_page\": 15,\n              \"total\": 55\n          }\n      }\n }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Reset a worker's balance.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/workers\/:worker_id\/reset-balance",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/workers\/:worker_id\/reset-balance",
                            "variable": [
                                {
                                    "id": "worker_id",
                                    "key": "worker_id",
                                    "value": "4",
                                    "description": "The ID of the worker."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 1,\"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get worker statistics.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/workers\/:worker_id\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/workers\/:worker_id\/stats",
                            "variable": [
                                {
                                    "id": "worker_id",
                                    "key": "worker_id",
                                    "value": "1",
                                    "description": "The ID of the worker."
                                },
                                {
                                    "id": "worker",
                                    "key": "worker",
                                    "value": "1",
                                    "description": "Worker required The ID of the worker to retrieve statistics for."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieves various statistics (e.g., total transactions, earnings, etc.) for a specific worker owned by the authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": 1,\n \"msg\": \"Done!\",\n \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n \"results\": {\n     \"thisMonthStats\": 120,\n     \"thisYearStats\": 5432,\n     \"todaysStats\": 10,\n }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": 0,\"msg\": \"Worker not found.\",\"msg_arabic\": \"\u0627\u0644\u0639\u0627\u0645\u0644 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get worker transactions.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/workers\/:worker_id\/transactions",
                            "query": [
                                {
                                    "key": "search",
                                    "value": "qui",
                                    "description": "Optional search query to filter transactions (e.g., by type, amount).",
                                    "disabled": false
                                },
                                {
                                    "key": "itemsPerPage",
                                    "value": "15",
                                    "description": "Number of items per page (-1 for all).",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number to retrieve.",
                                    "disabled": false
                                },
                                {
                                    "key": "type",
                                    "value": "deposit",
                                    "description": "Optional filter by transaction type (e.g., 'withdraw', 'debit', 'deposit').",
                                    "disabled": false
                                },
                                {
                                    "key": "confirmed",
                                    "value": "1",
                                    "description": "Optional filter by transaction status (e.g., 1, 0).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/workers\/:worker_id\/transactions?search=qui&itemsPerPage=15&page=1&type=deposit&confirmed=1",
                            "variable": [
                                {
                                    "id": "worker_id",
                                    "key": "worker_id",
                                    "value": "10",
                                    "description": "The ID of the worker."
                                },
                                {
                                    "id": "worker",
                                    "key": "worker",
                                    "value": "1",
                                    "description": "Worker required The ID of the worker to retrieve transactions for."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieves a paginated list of transactions associated with a specific worker owned by the authenticated user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"success\": 1,\n \"msg\": \"Done!\",\n \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n \"results\": {\n \"data\": [\n     {\n         \"id\": 30,\n         \"amount\": \"100\",\n         \"confirmed\": true,\n         \"date\": \"2025-06-23 10:59:54\",\n         \"type\": \"deposit\"\n     },...\n ],\n \"meta\": {\n     \"per_page\": 15,\n     \"total\": 50\n   }\n }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": 0,\"msg\": \"Worker not found.\",\"msg_arabic\": \"\u0627\u0644\u0639\u0627\u0645\u0644 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Export worker transactions to Excel.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/workers\/:worker_id\/transactions\/export",
                            "query": [
                                {
                                    "key": "type",
                                    "value": "deposit",
                                    "description": "Optional filter by transaction type (e.g., 'withdraw', 'debit', 'deposit').",
                                    "disabled": false
                                },
                                {
                                    "key": "confirmed",
                                    "value": "1",
                                    "description": "Optional filter by transaction status (e.g., 1, 0).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/workers\/:worker_id\/transactions\/export?type=deposit&confirmed=1",
                            "variable": [
                                {
                                    "id": "worker_id",
                                    "key": "worker_id",
                                    "value": "14",
                                    "description": "The ID of the worker."
                                },
                                {
                                    "id": "worker",
                                    "key": "worker",
                                    "value": "1",
                                    "description": "Worker required The ID of the worker whose transactions to export."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Exports transactions for a specific worker owned by the authenticated user into an XLSX file.\nThe export can be filtered by various parameters."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "Binary file (application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet)",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\": 0,\"msg\": \"Worker not found.\",\"msg_arabic\": \"\u0627\u0644\u0639\u0627\u0645\u0644 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Workers list.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/workers",
                            "query": [
                                {
                                    "key": "search",
                                    "value": "explicabo",
                                    "description": "Optional search query to filter workers.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/workers?search=explicabo"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "All workers owned by the current user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"data\": [\n              {\n                  \"id\": 33,\n                  \"first_name\": \"service\",\n                  \"last_name\": \"test 1\",\n                  \"name\": \"service test 1\",\n                  \"email\": \"servicetest1@gmail.com\",\n                  \"rfid\": \"123131321122\",\n                  \"expire_at\": \"2025-03-31\",\n                  \"cash_on_hands\": \"0\"\n              },\n              ...\n          ],\n          \"meta\": {\n              \"per_page\": -1,\n              \"total\": 3\n          }\n      }\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new worker.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/workers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/workers"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"johndoe@example.com\",\"rfid\":\"123456789012\",\"expire_at\":\"2025-12-31\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 1,\n          \"first_name\": \"yasser\",\n          \"last_name\": \"belhimer\",\n          \"name\": \"yasser belhimer\",\n          \"email\": \"y.belhimer@gasable.com\",\n          \"rfid\": null,\n          \"expire_at\": \"1970-01-01\",\n          \"cash_on_hands\": null\n      }\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"The firstname field is required.\",\n  \"errors\": {\n    \"first_name\": [\"The firstname field is required.\"],\n    \"last_name\": [\"The lastname field is required.\"],\n    \"email\": [\"The e-mail address field is required.\"],\n    \"rfid\": [\"The rfid field is required.\"],\n    \"expire_at\": [\"The expiration date field is required.\"]\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get details of a specific worker.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/workers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/workers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "4",
                                    "description": "The ID of the worker."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 1,\n          \"first_name\": \"yasser\",\n          \"last_name\": \"belhimer\",\n          \"name\": \"yasser belhimer\",\n          \"email\": \"y.belhimer@gasable.com\",\n          \"rfid\": null,\n          \"expire_at\": \"1970-01-01\",\n          \"cash_on_hands\": null\n      }\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update an existing worker.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/workers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/workers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "15",
                                    "description": "The ID of the worker."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"johndoe@example.com\",\"rfid\":\"123456789012\",\"expire_at\":\"2025-12-31\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n      \"success\": 1,\n      \"msg\": \"Done!\",\n      \"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\",\n      \"results\": {\n          \"id\": 1,\n          \"first_name\": \"yasser\",\n          \"last_name\": \"belhimer\",\n          \"name\": \"yasser belhimer\",\n          \"email\": \"y.belhimer@gasable.com\",\n          \"rfid\": null,\n          \"expire_at\": \"1970-01-01\",\n          \"cash_on_hands\": null\n      }\n  }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": 0,\n  \"message\": \"The firstname field is required.\",\n  \"errors\": {\n    \"first_name\": [\"The firstname field is required.\"],\n    \"last_name\": [\"The lastname field is required.\"],\n    \"email\": [\"The e-mail address field is required.\"],\n    \"rfid\": [\"The rfid field is required.\"],\n    \"expire_at\": [\"The expiration date field is required.\"]\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a worker.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/workers\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/workers\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "12",
                                    "description": "The ID of the worker."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": 1,\"msg\": \"Done!\",\"msg_arabic\": \"\u062a\u0645\u062a \u0627\u0644\u0639\u0645\u0644\u064a\u0647 \u0628\u0646\u062c\u0627\u062d\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\"success\": 0,\"error\": \"You don't have permissions to access localhost on this server.}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\"success\": 0,\"msg\": \"Unauthenticated.\",\"msg_arabic\": \"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}