# HTTP Storage ## Fetch ### Request Endpoint: `GET /` ### Response Response status code 200. Response body (account): ```json { "fulldomain": "foo.example.com", "subdomain": "foo", "username": "user", "password": "secret", "server_url": "https://example.com" } ``` ## Fetch All ### Request Endpoint: `GET ` ### Response Response status code 200. Response body (domain/account mapping): ```json { "foo.example.com": { "fulldomain": "foo.example.com", "subdomain": "foo", "username": "user", "password": "secret", "server_url": "https://example.com" }, "bar.example.com": { "fulldomain": "bar.example.com", "subdomain": "bar", "username": "user", "password": "secret", "server_url": "https://example.com" } } ``` ## Put ### Request Endpoint: `POST /` ### Response Response status code: - 200: the process will be stopped to allow the user to create the CNAME. - 201: the process will continue without error (the CNAME should be created by the server) No expected body. ## Save No dedicated endpoint.