A Service of Softnik Technologies

Watch My Domains SED
Product Home User Guide

Installation

Configuration

Usage


Developer APIs

These API endpoints are specifically for developers who want to integrate their own apps or websites with data from Watch My Domains SED. They’re completely separate from the registrar API support built into the app.

So if you're a regular user or administrator of the software, you can safely ignore these, they’re not meant for day-to-day use or configuration.

Administrative Endpoints

Standard Endpoints

API Guide: Branding Information

Login as an administrative user before using any of these API calls.

get

?c=admin&t=branding&oper=get
{
    "status": "ok",
    "error": "",
    "validate": 0,
    "data": {
        "custom_url_home": "",
        "custom_url_guide": "",
        "custom_url_contact": "",
        "custom_url_changelog": "",
        "custom_url_buy": "",
        "main_logo_image": "",
        "big_logo_image": "",
        "background_image": "",
        "background_property": "",
        "background_size": "cover"
    },
    "bgfiles": {
        "digital.jpg": "lib\/layouts\/images\/stock\/digital.jpg",
        "kangchenjunga.jpg": "lib\/layouts\/images\/stock\/kangchenjunga.jpg",
        "network.jpg": "lib\/layouts\/images\/stock\/network.jpg"
    }
}

set

You can set one or more of the following properties.

custom_url_home, custom_url_guide, custom_url_contact, custom_url_changelog, custom_url_buy, main_logo_image, big_logo_image, background_image, background_property, background_size

?c=admin&t=branding&oper=set&custom_url_home=https://example.com
{
    "status": "ok",
    "error": "",
    "validate": 0,
    "data": {
        "custom_url_home": "https:\/\/example.com",
        "custom_url_guide": "",
        "custom_url_contact": "",
        "custom_url_changelog": "",
        "custom_url_buy": "",
        "main_logo_image": "",
        "big_logo_image": "",
        "background_image": "",
        "background_property": "",
        "background_size": ""
    }
}