{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/staging.api.xenius.io"
        }
    ],
    "info": {
        "name": "Xenius public API Documentation",
        "_postman_id": "65b5d3e2-3700-490b-8a65-eec8e49991d4",
        "description": "Xenius Api Documentation for public Use",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Authentication",
            "description": "",
            "item": [
                {
                    "name": "Verify Api-token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/verify-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/verify-token"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Carts",
            "description": "",
            "item": [
                {
                    "name": "Create a new cart for Admind (POST)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/carts\/store-admind",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/carts\/store-admind"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"domain_name\":\"xenius.be\",\"order_number\":\"OR1234\",\"contact_id\":1,\"contact\":{\"first_name\":\"Anouk\",\"last_name\":\"Leroy\",\"email\":\"gilles.degroote@example.org\",\"address\":\"Lauwerslaan 39\",\"postalcode\":\"5537\",\"town\":\"P\u00e9ruwelz\",\"country\":\"PW\",\"phone\":\"+32.123457789\",\"company\":\"Aerts EBVBA\",\"vat\":\"BE1234567\",\"lang\":\"NL\",\"gender\":\"V\"}}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "[\n    {\n        \"message\": \"Cart stored successfully\",\n        \"data\": {\n            \"order_id\": 1,\n            \"contact_id\": 1\n        }\n    }\n]\n",
                            "name": "Success"
                        },
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\": \"Unauthenticated.\"}",
                            "name": "Unauthorized"
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\": \"No :attribute found.\"}",
                            "name": "Not Found"
                        },
                        {
                            "header": [],
                            "code": 409,
                            "body": "[\n    {\n        \"message\": \"There are conflicting items.\",\n        \"errors\": {\n            \"contact_id\": [\n                \"The contact id field prohibits contact from being present.\"\n            ],\n            \"contact\": [\n                \"The contact field prohibits contact id from being present.\"\n            ]\n        }\n    }\n]\n",
                            "name": "Conflict"
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "[\n    {\n        \"message\": \"The selected :attribute is invalid\",\n        \"errors\": {\n            \":attribute\": [\n                \"The selected :attribute is invalid.\"\n            ]\n        }\n    }\n]\n",
                            "name": "Unprocessable Content"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Domain names",
            "description": "",
            "item": [
                {
                    "name": "Show all domain names of the client (GET)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/domain-names",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/domain-names"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a list of domain names of the client."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"id\":null,\"status\":\"active\",\"domain_name\":\"wuyts.be\",\"expirationdate\":\"2024-12-30\",\"days_until_expiration\":0,\"is_locked\":false,\"auto_renew\":false,\"external_id\":\"(test)9049\",\"nameservers\":{\"ns1\":{\"name\":\"ns3.hostedby.eu\",\"ipv4\":\"185.27.175.217\",\"ipv6\":\"2a00:f10:121:400:4c7:54ff:fe00:525\"},\"ns2\":{\"name\":\"ns4.hostedby.eu\",\"ipv4\":\"185.59.16.34\",\"ipv6\":null},\"ns3\":{\"name\":\"ns2.hostedby.be\",\"ipv4\":\"151.80.147.144\",\"ipv6\":null}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a domain name of the client by id (GET)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/domain-names\/id\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/domain-names\/id\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "10",
                                    "description": "id of the domain name"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a domain name of the client."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"id\":null,\"status\":\"active\",\"domain_name\":\"borremans.org\",\"expirationdate\":\"2024-12-30\",\"days_until_expiration\":0,\"is_locked\":false,\"auto_renew\":false,\"external_id\":\"(test)8634\",\"nameservers\":{\"ns1\":{\"name\":\"ns3.hostedby.eu\",\"ipv4\":\"185.27.175.217\",\"ipv6\":\"2a00:f10:121:400:4c7:54ff:fe00:525\"},\"ns2\":{\"name\":\"ns4.hostedby.eu\",\"ipv4\":\"185.59.16.34\",\"ipv6\":null},\"ns3\":{\"name\":\"ns2.hostedby.be\",\"ipv4\":\"151.80.147.144\",\"ipv6\":null}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a domain name of the client by external_id (GET)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/domain-names\/external-id\/:external_id",
                            "query": [
                                {
                                    "key": "client_id",
                                    "value": "1",
                                    "description": "Required if an admin uses this endpoint. The client ID of the domain the external_id belongs to.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/v2\/domain-names\/external-id\/:external_id?client_id=1",
                            "variable": [
                                {
                                    "id": "external_id",
                                    "key": "external_id",
                                    "value": "test_123",
                                    "description": "external_id of the domain name"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a domain name of the client."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"id\":null,\"status\":\"active\",\"domain_name\":\"borremans.org\",\"expirationdate\":\"2024-12-30\",\"days_until_expiration\":0,\"is_locked\":false,\"auto_renew\":false,\"external_id\":\"(test)4757\",\"nameservers\":{\"ns1\":{\"name\":\"ns3.hostedby.eu\",\"ipv4\":\"185.27.175.217\",\"ipv6\":\"2a00:f10:121:400:4c7:54ff:fe00:525\"},\"ns2\":{\"name\":\"ns4.hostedby.eu\",\"ipv4\":\"185.59.16.34\",\"ipv6\":null},\"ns3\":{\"name\":\"ns2.hostedby.be\",\"ipv4\":\"151.80.147.144\",\"ipv6\":null}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a domain's external id (PATCH)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/domain-names\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/domain-names\/:id"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"external_id\":\"domain_10\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"id\":null,\"status\":\"active\",\"domain_name\":\"vanacker.net\",\"expirationdate\":\"2024-12-30\",\"days_until_expiration\":0,\"is_locked\":false,\"auto_renew\":false,\"external_id\":\"(test)8293\",\"nameservers\":{\"ns1\":{\"name\":\"ns3.hostedby.eu\",\"ipv4\":\"185.27.175.217\",\"ipv6\":\"2a00:f10:121:400:4c7:54ff:fe00:525\"},\"ns2\":{\"name\":\"ns4.hostedby.eu\",\"ipv4\":\"185.59.16.34\",\"ipv6\":null},\"ns3\":{\"name\":\"ns2.hostedby.be\",\"ipv4\":\"151.80.147.144\",\"ipv6\":null}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "TLD",
                    "description": "",
                    "item": [
                        {
                            "name": "Show Tld prices by client (GET)",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "v2\/tlds",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/v2\/tlds"
                                },
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": "Returns a list of the Tld prices of the client."
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "[{\"tld\":\".com\",\"price_excl\":\"17.95\",\"price_promo\":\"12.50\"}]",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "GET up",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "up",
                            "query": [],
                            "raw": "{{baseUrl}}\/up"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                }
                            ],
                            "code": 200,
                            "body": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n    <title>Xenius API<\/title>\n\n    <!-- Fonts -->\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.bunny.net\">\n    <link href=\"https:\/\/fonts.bunny.net\/css?family=figtree:400,600&display=swap\" rel=\"stylesheet\" \/>\n\n    <!-- Styles -->\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n\n    <script>\n        tailwind.config = {\n            theme: {\n                extend: {\n                    fontFamily: {\n                        sans: ['Figtree', 'ui-sans-serif', 'system-ui', 'sans-serif', \"Apple Color Emoji\", \"Segoe UI Emoji\"],\n                    }\n                }\n            }\n        }\n    <\/script>\n<\/head>\n<body class=\"antialiased\">\n<div class=\"relative flex justify-center items-center min-h-screen bg-gray-100 selection:bg-red-500 selection:text-white\">\n    <div class=\"w-full sm:w-3\/4 xl:w-1\/2 mx-auto p-6\">\n        <div class=\"px-6 py-4 bg-white from-gray-700\/50 via-transparent rounded-lg shadow-2xl shadow-gray-500\/20 flex items-center focus:outline focus:outline-2 focus:outline-red-500\">\n            <div class=\"relative flex h-3 w-3 group \">\n                <span class=\"animate-ping absolute inline-flex h-full w-full rounded-full bg-green-400 group-[.status-down]:bg-red-600 opacity-75\"><\/span>\n                <span class=\"relative inline-flex rounded-full h-3 w-3 bg-green-400 group-[.status-down]:bg-red-600\"><\/span>\n            <\/div>\n\n            <div class=\"ml-6\">\n                <h2 class=\"text-xl font-semibold text-gray-900\">Application up<\/h2>\n\n                <p class=\"mt-2 text-gray-500 dark:text-gray-400 text-sm leading-relaxed\">\n                    HTTP request received.\n\n                                            Response rendered in 420ms.\n                                    <\/p>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n<\/body>\n<\/html>\n",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Invoices",
            "description": "",
            "item": [
                {
                    "name": "Show invoices (POST)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/invoices",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/invoices"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"invoice_number\":\"VF202200734\",\"is_paid\":false}"
                        },
                        "description": "Get All invoices with the option to filter by payment status"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"success\":true,\"data\":[{\"invoice number\":\"(test) VF202432633\",\"invoice date\":\"13-11-2025\",\"due date\":\"13-11-2025\",\"paid_at\":\"15-11-2025\",\"total\":0,\"open\":6236.11,\"is_paid\":false,\"payment link\":\"https:\\\/\\\/www.factuursturen.be\\\/pay?id=706c51c4-e830-3a0d-83d0-c9c5378d9076\"},{\"invoice number\":\"(test) VF202559891\",\"invoice date\":\"25-01-2026\",\"due date\":\"25-01-2026\",\"paid_at\":\"11-06-2025\",\"total\":0,\"open\":0,\"is_paid\":true,\"payment link\":\"https:\\\/\\\/www.factuursturen.be\\\/pay?id=128f04fe-702f-3193-93e2-f9f449c3a1f5\"}],\"meta\":{\"count\":2}},\"links\":{\"first\":\"\\\/?page=1\",\"last\":\"\\\/?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"pagination.previous\",\"active\":false},{\"url\":\"\\\/?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"pagination.next\",\"active\":false}],\"path\":\"\\\/\",\"per_page\":10,\"to\":2,\"total\":2}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Toggle auto-renewal (PATCH)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/invoices\/toggle-autorenew",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/invoices\/toggle-autorenew"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"external_ids\":[\"1\",\"2\",3,4],\"autorenew\":false}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Office 365",
            "description": "",
            "item": [
                {
                    "name": "Show tenants (GET)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/office-365\/:tenant",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/office-365\/:tenant"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Shared hosting",
            "description": "",
            "item": [
                {
                    "name": "Show prices of Shared-hostings (GET)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/hostings\/pricing",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/hostings\/pricing"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true,\"data\":[{\"name\":\"Galaxy Joomla\",\"is_promo\":false,\"price_monthly\":88.16,\"type\":\"Joomla-hosting\",\"aanrader\":true}],\"meta\":{\"count\":1}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show all shared-hostings of the client (GET)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/hostings",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/hostings"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a list of domain names of the client."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true,\"data\":[{\"client_id\":2385,\"accountname\":\"(test) El Amrani VZW\",\"domain\":\"michel.be\",\"creation_date\":\"2025-03-23 13:07:02\",\"expiration_date\":\"2025-03-22T23:00:00.000000Z\",\"product_package_id\":9,\"package_id\":262,\"server\":6,\"status\":\"ACTIVE\",\"disk_used\":276,\"owner\":\"root\",\"external_id\":\"(test)1282\"}],\"meta\":{\"count\":1}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a shared-hosting of the client by id (GET)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/hostings\/id\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/hostings\/id\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "id of the shared-hosting"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "return a list of shared-hostings of the client"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"client_id\":2815,\"accountname\":\"(test) El Amrani VZW\",\"domain\":\"michel.be\",\"creation_date\":\"2025-03-23 13:07:02\",\"expiration_date\":\"2025-03-22T23:00:00.000000Z\",\"product_package_id\":6,\"package_id\":262,\"server\":6,\"status\":\"ACTIVE\",\"disk_used\":276,\"owner\":\"root\",\"external_id\":\"(test)2019\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Show a shared-hosting of the client by external_id (GET)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/hostings\/external-id\/:external_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/hostings\/external-id\/:external_id",
                            "variable": [
                                {
                                    "id": "external_id",
                                    "key": "external_id",
                                    "value": "10",
                                    "description": "external_id of the shared-hosting"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a shared-hosting of the client."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"client_id\":816,\"accountname\":\"(test) El Amrani VZW\",\"domain\":\"michel.be\",\"creation_date\":\"2025-03-23 13:07:02\",\"expiration_date\":\"2025-03-22T23:00:00.000000Z\",\"product_package_id\":11,\"package_id\":262,\"server\":6,\"status\":\"ACTIVE\",\"disk_used\":276,\"owner\":\"root\",\"external_id\":\"(test)774\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a shared-hosting's external id (PATCH)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "v2\/hostings",
                            "query": [],
                            "raw": "{{baseUrl}}\/v2\/hostings"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"external_id\":\"domain_10\"}"
                        },
                        "description": "Returns a shared-hosting of the client."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"client_id\":3183,\"accountname\":\"(test) Van Damme\",\"domain\":\"delhaye.org\",\"creation_date\":\"2025-02-19 10:15:38\",\"expiration_date\":\"2025-02-18T23:00:00.000000Z\",\"product_package_id\":10,\"package_id\":262,\"server\":6,\"status\":\"ACTIVE\",\"disk_used\":190,\"owner\":\"root\",\"external_id\":\"(test)5902\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "key",
                "type": "string"
            }
        ]
    }
}