"dolor"
A list of custom hostname details
"recusandae"
"illo"
Domain deleted.
"Domain deleted successfully"
Domain retrieved.
Domain created.
const response = await fetch('https://api.sellauth.com/v1/shops/{shopId}/domains', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "id": 0, "hostname": "text", "cloudflare_id": "text", "dns_records": [ { "name": "text", "type": "text", "value": "text" } ], "shop_id": 0, "status": "text", "created_at": "2024-12-23T19:26:34.802Z", "updated_at": "2024-12-23T19:26:34.802Z", "deleted_at": "2024-12-23T19:26:34.802Z" } ]
const response = await fetch('https://api.sellauth.com/v1/shops/{shopId}/domains/{domainId}', { method: 'DELETE', headers: {}, }); const data = await response.json();
{ "message": "Domain deleted successfully" }
const response = await fetch('https://api.sellauth.com/v1/shops/{shopId}/domains/{domainId}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "id": 0, "hostname": "text", "cloudflare_id": "text", "dns_records": [ { "name": "text", "type": "text", "value": "text" } ], "shop_id": 0, "status": "text", "created_at": "2024-12-23T19:26:34.802Z", "updated_at": "2024-12-23T19:26:34.802Z", "deleted_at": "2024-12-23T19:26:34.802Z" }
const response = await fetch('https://api.sellauth.com/v1/shops/{shopId}/domains', { method: 'POST', headers: {}, }); const data = await response.json();