MENU navbar-image

Introduction

Welcome to the EasyDCIM APIv3 documentation.

This guide provides all the details you need to integrate with the EasyDCIM platform programmatically.
You’ll find descriptions of available endpoints, authentication methods, request and response examples, and usage notes.

The API is fully RESTful and returns responses in JSON format.
Use it to automate client management, device provisioning, and other system tasks efficiently.

Authenticating requests

To authenticate requests, include an Authorization header with the value "Bearer {YOUR_AUTH_KEY}".

All authenticated endpoints are marked with a requires authentication badge in the documentation below.

Impersonation: If you are an admin with the impersonate-users ability, you can impersonate another user by sending their ID or email address in the X-Impersonate-User header.

The system will automatically detect whether the provided value is a numeric ID or an email address and impersonate the corresponding user.

API Tokens: You can generate and manage your API tokens directly in the EasyDCIM control panel. For detailed instructions, please visit the API Tokens documentation.

Admin Endpoints

System

Get Client Area Configuration

Returns current Client Area connection settings.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/client-area/config" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/client-area/config'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/client-area/config';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "mode": "local",
        "is_enabled": true,
        "full_url": "https://your-easydcim.com/client",
        "company_name": "EasyDCIM",
        "branding": {
            "colors_primary": {
                "50": "#EBF5FF",
                "100": "#E1EFFE",
                "200": "#C3DDFD",
                "300": "#A4CAFE",
                "400": "#83B3F7",
                "500": "#6BA5F5",
                "600": "#5396F4",
                "700": "#3A87F2",
                "800": "#1A73EF",
                "900": "#0E60D2"
            },
            "logo_url": "logo.png",
            "favicon_url": "favicon.ico",
            "custom_css": "",
            "custom_js_header": "",
            "custom_js_footer": ""
        },
        "visibility": {
            "services_table": {
                "column_type": true,
                "column_ip": true,
                "column_status": true,
                "column_location": true,
                "column_created_at": true
            },
            "my_account": {
                "two_factor_auth": true
            },
            "navigation": {
                "iso_images": true,
                "ssh_keys": true
            }
        },
        "default_client_area_language": "en",
        "languages": {
            "en": "English",
            "de": "German",
            "es": "Spanish"
        },
        "timezones": {
            "": "Select something...",
            "0": "Africa/Abidjan",
            "1": "Africa/Accra",
            "2": "Africa/Addis_Ababa",
            "3": "Africa/Algiers",
            "4": "Africa/Asmara",
            "5": "Africa/Bamako",
            "6": "Africa/Bangui",
            "7": "Africa/Banjul",
            "8": "Africa/Bissau",
            "9": "Africa/Blantyre",
            "10": "Africa/Brazzaville",
            "11": "Africa/Bujumbura",
            "12": "Africa/Cairo",
            "13": "Africa/Casablanca",
            "14": "Africa/Ceuta",
            "15": "Africa/Conakry",
            "16": "Africa/Dakar",
            "17": "Africa/Dar_es_Salaam",
            "18": "Africa/Djibouti",
            "19": "Africa/Douala",
            "20": "Africa/El_Aaiun",
            "21": "Africa/Freetown",
            "22": "Africa/Gaborone",
            "23": "Africa/Harare",
            "24": "Africa/Johannesburg",
            "25": "Africa/Juba",
            "26": "Africa/Kampala",
            "27": "Africa/Khartoum",
            "28": "Africa/Kigali",
            "29": "Africa/Kinshasa",
            "30": "Africa/Lagos",
            "31": "Africa/Libreville",
            "32": "Africa/Lome",
            "33": "Africa/Luanda",
            "34": "Africa/Lubumbashi",
            "35": "Africa/Lusaka",
            "36": "Africa/Malabo",
            "37": "Africa/Maputo",
            "38": "Africa/Maseru",
            "39": "Africa/Mbabane",
            "40": "Africa/Mogadishu",
            "41": "Africa/Monrovia",
            "42": "Africa/Nairobi",
            "43": "Africa/Ndjamena",
            "44": "Africa/Niamey",
            "45": "Africa/Nouakchott",
            "46": "Africa/Ouagadougou",
            "47": "Africa/Porto-Novo",
            "48": "Africa/Sao_Tome",
            "49": "Africa/Tripoli",
            "50": "Africa/Tunis",
            "51": "Africa/Windhoek",
            "52": "America/Adak",
            "53": "America/Anchorage",
            "54": "America/Anguilla",
            "55": "America/Antigua",
            "56": "America/Araguaina",
            "57": "America/Argentina/Buenos_Aires",
            "58": "America/Argentina/Catamarca",
            "59": "America/Argentina/Cordoba",
            "60": "America/Argentina/Jujuy",
            "61": "America/Argentina/La_Rioja",
            "62": "America/Argentina/Mendoza",
            "63": "America/Argentina/Rio_Gallegos",
            "64": "America/Argentina/Salta",
            "65": "America/Argentina/San_Juan",
            "66": "America/Argentina/San_Luis",
            "67": "America/Argentina/Tucuman",
            "68": "America/Argentina/Ushuaia",
            "69": "America/Aruba",
            "70": "America/Asuncion",
            "71": "America/Atikokan",
            "72": "America/Bahia",
            "73": "America/Bahia_Banderas",
            "74": "America/Barbados",
            "75": "America/Belem",
            "76": "America/Belize",
            "77": "America/Blanc-Sablon",
            "78": "America/Boa_Vista",
            "79": "America/Bogota",
            "80": "America/Boise",
            "81": "America/Cambridge_Bay",
            "82": "America/Campo_Grande",
            "83": "America/Cancun",
            "84": "America/Caracas",
            "85": "America/Cayenne",
            "86": "America/Cayman",
            "87": "America/Chicago",
            "88": "America/Chihuahua",
            "89": "America/Ciudad_Juarez",
            "90": "America/Costa_Rica",
            "91": "America/Creston",
            "92": "America/Cuiaba",
            "93": "America/Curacao",
            "94": "America/Danmarkshavn",
            "95": "America/Dawson",
            "96": "America/Dawson_Creek",
            "97": "America/Denver",
            "98": "America/Detroit",
            "99": "America/Dominica",
            "100": "America/Edmonton",
            "101": "America/Eirunepe",
            "102": "America/El_Salvador",
            "103": "America/Fort_Nelson",
            "104": "America/Fortaleza",
            "105": "America/Glace_Bay",
            "106": "America/Goose_Bay",
            "107": "America/Grand_Turk",
            "108": "America/Grenada",
            "109": "America/Guadeloupe",
            "110": "America/Guatemala",
            "111": "America/Guayaquil",
            "112": "America/Guyana",
            "113": "America/Halifax",
            "114": "America/Havana",
            "115": "America/Hermosillo",
            "116": "America/Indiana/Indianapolis",
            "117": "America/Indiana/Knox",
            "118": "America/Indiana/Marengo",
            "119": "America/Indiana/Petersburg",
            "120": "America/Indiana/Tell_City",
            "121": "America/Indiana/Vevay",
            "122": "America/Indiana/Vincennes",
            "123": "America/Indiana/Winamac",
            "124": "America/Inuvik",
            "125": "America/Iqaluit",
            "126": "America/Jamaica",
            "127": "America/Juneau",
            "128": "America/Kentucky/Louisville",
            "129": "America/Kentucky/Monticello",
            "130": "America/Kralendijk",
            "131": "America/La_Paz",
            "132": "America/Lima",
            "133": "America/Los_Angeles",
            "134": "America/Lower_Princes",
            "135": "America/Maceio",
            "136": "America/Managua",
            "137": "America/Manaus",
            "138": "America/Marigot",
            "139": "America/Martinique",
            "140": "America/Matamoros",
            "141": "America/Mazatlan",
            "142": "America/Menominee",
            "143": "America/Merida",
            "144": "America/Metlakatla",
            "145": "America/Mexico_City",
            "146": "America/Miquelon",
            "147": "America/Moncton",
            "148": "America/Monterrey",
            "149": "America/Montevideo",
            "150": "America/Montserrat",
            "151": "America/Nassau",
            "152": "America/New_York",
            "153": "America/Nome",
            "154": "America/Noronha",
            "155": "America/North_Dakota/Beulah",
            "156": "America/North_Dakota/Center",
            "157": "America/North_Dakota/New_Salem",
            "158": "America/Nuuk",
            "159": "America/Ojinaga",
            "160": "America/Panama",
            "161": "America/Paramaribo",
            "162": "America/Phoenix",
            "163": "America/Port-au-Prince",
            "164": "America/Port_of_Spain",
            "165": "America/Porto_Velho",
            "166": "America/Puerto_Rico",
            "167": "America/Punta_Arenas",
            "168": "America/Rankin_Inlet",
            "169": "America/Recife",
            "170": "America/Regina",
            "171": "America/Resolute",
            "172": "America/Rio_Branco",
            "173": "America/Santarem",
            "174": "America/Santiago",
            "175": "America/Santo_Domingo",
            "176": "America/Sao_Paulo",
            "177": "America/Scoresbysund",
            "178": "America/Sitka",
            "179": "America/St_Barthelemy",
            "180": "America/St_Johns",
            "181": "America/St_Kitts",
            "182": "America/St_Lucia",
            "183": "America/St_Thomas",
            "184": "America/St_Vincent",
            "185": "America/Swift_Current",
            "186": "America/Tegucigalpa",
            "187": "America/Thule",
            "188": "America/Tijuana",
            "189": "America/Toronto",
            "190": "America/Tortola",
            "191": "America/Vancouver",
            "192": "America/Whitehorse",
            "193": "America/Winnipeg",
            "194": "America/Yakutat",
            "195": "Antarctica/Casey",
            "196": "Antarctica/Davis",
            "197": "Antarctica/DumontDUrville",
            "198": "Antarctica/Macquarie",
            "199": "Antarctica/Mawson",
            "200": "Antarctica/McMurdo",
            "201": "Antarctica/Palmer",
            "202": "Antarctica/Rothera",
            "203": "Antarctica/Syowa",
            "204": "Antarctica/Troll",
            "205": "Antarctica/Vostok",
            "206": "Arctic/Longyearbyen",
            "207": "Asia/Aden",
            "208": "Asia/Almaty",
            "209": "Asia/Amman",
            "210": "Asia/Anadyr",
            "211": "Asia/Aqtau",
            "212": "Asia/Aqtobe",
            "213": "Asia/Ashgabat",
            "214": "Asia/Atyrau",
            "215": "Asia/Baghdad",
            "216": "Asia/Bahrain",
            "217": "Asia/Baku",
            "218": "Asia/Bangkok",
            "219": "Asia/Barnaul",
            "220": "Asia/Beirut",
            "221": "Asia/Bishkek",
            "222": "Asia/Brunei",
            "223": "Asia/Chita",
            "224": "Asia/Colombo",
            "225": "Asia/Damascus",
            "226": "Asia/Dhaka",
            "227": "Asia/Dili",
            "228": "Asia/Dubai",
            "229": "Asia/Dushanbe",
            "230": "Asia/Famagusta",
            "231": "Asia/Gaza",
            "232": "Asia/Hebron",
            "233": "Asia/Ho_Chi_Minh",
            "234": "Asia/Hong_Kong",
            "235": "Asia/Hovd",
            "236": "Asia/Irkutsk",
            "237": "Asia/Jakarta",
            "238": "Asia/Jayapura",
            "239": "Asia/Jerusalem",
            "240": "Asia/Kabul",
            "241": "Asia/Kamchatka",
            "242": "Asia/Karachi",
            "243": "Asia/Kathmandu",
            "244": "Asia/Khandyga",
            "245": "Asia/Kolkata",
            "246": "Asia/Krasnoyarsk",
            "247": "Asia/Kuala_Lumpur",
            "248": "Asia/Kuching",
            "249": "Asia/Kuwait",
            "250": "Asia/Macau",
            "251": "Asia/Magadan",
            "252": "Asia/Makassar",
            "253": "Asia/Manila",
            "254": "Asia/Muscat",
            "255": "Asia/Nicosia",
            "256": "Asia/Novokuznetsk",
            "257": "Asia/Novosibirsk",
            "258": "Asia/Omsk",
            "259": "Asia/Oral",
            "260": "Asia/Phnom_Penh",
            "261": "Asia/Pontianak",
            "262": "Asia/Pyongyang",
            "263": "Asia/Qatar",
            "264": "Asia/Qostanay",
            "265": "Asia/Qyzylorda",
            "266": "Asia/Riyadh",
            "267": "Asia/Sakhalin",
            "268": "Asia/Samarkand",
            "269": "Asia/Seoul",
            "270": "Asia/Shanghai",
            "271": "Asia/Singapore",
            "272": "Asia/Srednekolymsk",
            "273": "Asia/Taipei",
            "274": "Asia/Tashkent",
            "275": "Asia/Tbilisi",
            "276": "Asia/Tehran",
            "277": "Asia/Thimphu",
            "278": "Asia/Tokyo",
            "279": "Asia/Tomsk",
            "280": "Asia/Ulaanbaatar",
            "281": "Asia/Urumqi",
            "282": "Asia/Ust-Nera",
            "283": "Asia/Vientiane",
            "284": "Asia/Vladivostok",
            "285": "Asia/Yakutsk",
            "286": "Asia/Yangon",
            "287": "Asia/Yekaterinburg",
            "288": "Asia/Yerevan",
            "289": "Atlantic/Azores",
            "290": "Atlantic/Bermuda",
            "291": "Atlantic/Canary",
            "292": "Atlantic/Cape_Verde",
            "293": "Atlantic/Faroe",
            "294": "Atlantic/Madeira",
            "295": "Atlantic/Reykjavik",
            "296": "Atlantic/South_Georgia",
            "297": "Atlantic/St_Helena",
            "298": "Atlantic/Stanley",
            "299": "Australia/Adelaide",
            "300": "Australia/Brisbane",
            "301": "Australia/Broken_Hill",
            "302": "Australia/Darwin",
            "303": "Australia/Eucla",
            "304": "Australia/Hobart",
            "305": "Australia/Lindeman",
            "306": "Australia/Lord_Howe",
            "307": "Australia/Melbourne",
            "308": "Australia/Perth",
            "309": "Australia/Sydney",
            "310": "Europe/Amsterdam",
            "311": "Europe/Andorra",
            "312": "Europe/Astrakhan",
            "313": "Europe/Athens",
            "314": "Europe/Belgrade",
            "315": "Europe/Berlin",
            "316": "Europe/Bratislava",
            "317": "Europe/Brussels",
            "318": "Europe/Bucharest",
            "319": "Europe/Budapest",
            "320": "Europe/Busingen",
            "321": "Europe/Chisinau",
            "322": "Europe/Copenhagen",
            "323": "Europe/Dublin",
            "324": "Europe/Gibraltar",
            "325": "Europe/Guernsey",
            "326": "Europe/Helsinki",
            "327": "Europe/Isle_of_Man",
            "328": "Europe/Istanbul",
            "329": "Europe/Jersey",
            "330": "Europe/Kaliningrad",
            "331": "Europe/Kirov",
            "332": "Europe/Kyiv",
            "333": "Europe/Lisbon",
            "334": "Europe/Ljubljana",
            "335": "Europe/London",
            "336": "Europe/Luxembourg",
            "337": "Europe/Madrid",
            "338": "Europe/Malta",
            "339": "Europe/Mariehamn",
            "340": "Europe/Minsk",
            "341": "Europe/Monaco",
            "342": "Europe/Moscow",
            "343": "Europe/Oslo",
            "344": "Europe/Paris",
            "345": "Europe/Podgorica",
            "346": "Europe/Prague",
            "347": "Europe/Riga",
            "348": "Europe/Rome",
            "349": "Europe/Samara",
            "350": "Europe/San_Marino",
            "351": "Europe/Sarajevo",
            "352": "Europe/Saratov",
            "353": "Europe/Simferopol",
            "354": "Europe/Skopje",
            "355": "Europe/Sofia",
            "356": "Europe/Stockholm",
            "357": "Europe/Tallinn",
            "358": "Europe/Tirane",
            "359": "Europe/Ulyanovsk",
            "360": "Europe/Vaduz",
            "361": "Europe/Vatican",
            "362": "Europe/Vienna",
            "363": "Europe/Vilnius",
            "364": "Europe/Volgograd",
            "365": "Europe/Warsaw",
            "366": "Europe/Zagreb",
            "367": "Europe/Zurich",
            "368": "Indian/Antananarivo",
            "369": "Indian/Chagos",
            "370": "Indian/Christmas",
            "371": "Indian/Cocos",
            "372": "Indian/Comoro",
            "373": "Indian/Kerguelen",
            "374": "Indian/Mahe",
            "375": "Indian/Maldives",
            "376": "Indian/Mauritius",
            "377": "Indian/Mayotte",
            "378": "Indian/Reunion",
            "379": "Pacific/Apia",
            "380": "Pacific/Auckland",
            "381": "Pacific/Bougainville",
            "382": "Pacific/Chatham",
            "383": "Pacific/Chuuk",
            "384": "Pacific/Easter",
            "385": "Pacific/Efate",
            "386": "Pacific/Fakaofo",
            "387": "Pacific/Fiji",
            "388": "Pacific/Funafuti",
            "389": "Pacific/Galapagos",
            "390": "Pacific/Gambier",
            "391": "Pacific/Guadalcanal",
            "392": "Pacific/Guam",
            "393": "Pacific/Honolulu",
            "394": "Pacific/Kanton",
            "395": "Pacific/Kiritimati",
            "396": "Pacific/Kosrae",
            "397": "Pacific/Kwajalein",
            "398": "Pacific/Majuro",
            "399": "Pacific/Marquesas",
            "400": "Pacific/Midway",
            "401": "Pacific/Nauru",
            "402": "Pacific/Niue",
            "403": "Pacific/Norfolk",
            "404": "Pacific/Noumea",
            "405": "Pacific/Pago_Pago",
            "406": "Pacific/Palau",
            "407": "Pacific/Pitcairn",
            "408": "Pacific/Pohnpei",
            "409": "Pacific/Port_Moresby",
            "410": "Pacific/Rarotonga",
            "411": "Pacific/Saipan",
            "412": "Pacific/Tahiti",
            "413": "Pacific/Tarawa",
            "414": "Pacific/Tongatapu",
            "415": "Pacific/Wake",
            "416": "Pacific/Wallis",
            "417": "UTC"
        }
    }
}
 

Request   

GET api/v3/admin/client-area/config

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Update Client Area Configuration

requires authentication

Updates the Client Area connection and branding settings.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/client-area/config" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"mode\": \"external\",
    \"full_url\": \"https:\\/\\/client.example.com\",
    \"is_enabled\": true,
    \"branding\": {
        \"colors_primary\": {
            \"500\": \"#6BA5F5\",
            \"700\": \"#3A87F2\",
            \"900\": \"#0E60D2\"
        },
        \"logo_url\": \"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0i...\",
        \"logo_dark_url\": \"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0i...\",
        \"favicon_url\": \"data:image\\/png;base64,iVBORw0K...\",
        \"custom_css\": \"body { background: #f4f4f4; }\",
        \"custom_js_header\": \"console.log(\'Header loaded\');\",
        \"custom_js_footer\": \"console.log(\'Footer loaded\');\"
    },
    \"visibility\": {
        \"services_table\": {
            \"column_type\": true,
            \"column_ip\": false,
            \"column_status\": true,
            \"column_location\": false,
            \"column_created_at\": true,
            \"column_model\": true
        },
        \"my_account\": {
            \"two_factor_auth\": true
        },
        \"navigation\": {
            \"iso_images\": true,
            \"ssh_keys\": false
        }
    }
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/client-area/config'
payload = {
    "mode": "external",
    "full_url": "https:\/\/client.example.com",
    "is_enabled": true,
    "branding": {
        "colors_primary": {
            "500": "#6BA5F5",
            "700": "#3A87F2",
            "900": "#0E60D2"
        },
        "logo_url": "data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0i...",
        "logo_dark_url": "data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0i...",
        "favicon_url": "data:image\/png;base64,iVBORw0K...",
        "custom_css": "body { background: #f4f4f4; }",
        "custom_js_header": "console.log('Header loaded');",
        "custom_js_footer": "console.log('Footer loaded');"
    },
    "visibility": {
        "services_table": {
            "column_type": true,
            "column_ip": false,
            "column_status": true,
            "column_location": false,
            "column_created_at": true,
            "column_model": true
        },
        "my_account": {
            "two_factor_auth": true
        },
        "navigation": {
            "iso_images": true,
            "ssh_keys": false
        }
    }
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/client-area/config';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'mode' => 'external',
            'full_url' => 'https://client.example.com',
            'is_enabled' => true,
            'branding' => [
                'colors_primary' => [
                    500 => '#6BA5F5',
                    700 => '#3A87F2',
                    900 => '#0E60D2',
                ],
                'logo_url' => 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0i...',
                'logo_dark_url' => 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0i...',
                'favicon_url' => 'data:image/png;base64,iVBORw0K...',
                'custom_css' => 'body { background: #f4f4f4; }',
                'custom_js_header' => 'console.log(\'Header loaded\');',
                'custom_js_footer' => 'console.log(\'Footer loaded\');',
            ],
            'visibility' => [
                'services_table' => [
                    'column_type' => true,
                    'column_ip' => false,
                    'column_status' => true,
                    'column_location' => false,
                    'column_created_at' => true,
                    'column_model' => true,
                ],
                'my_account' => [
                    'two_factor_auth' => true,
                ],
                'navigation' => [
                    'iso_images' => true,
                    'ssh_keys' => false,
                ],
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/client-area/config

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

mode   string  optional    

Client Area mode. Either "local" (embedded) or "external" (remote URL). Example: external

Must be one of:
  • local
  • external
full_url   string  optional    

The full URL of the external Client Area (used only in external mode). Must be a valid URL. Example: https://client.example.com

is_enabled   boolean  optional    

Boolean flag indicating whether the Client Area is enabled. Example: true

branding   object  optional    

Branding settings for the Client Area. Only Base64-encoded images are allowed for logos and favicon.

colors_primary   string[]  optional    

Must match the regex /^#[0-9A-Fa-f]{6}$/.

logo_url   string  optional    

Example: data:image/svg+xml;base64,PHN2ZyB3aWR0aD0i...

logo_dark_url   string  optional    

Example: data:image/svg+xml;base64,PHN2ZyB3aWR0aD0i...

favicon_url   string  optional    

Example: data:image/png;base64,iVBORw0K...

custom_css   string  optional    

Example: body { background: #f4f4f4; }

custom_js_header   string  optional    

Example: console.log('Header loaded');

custom_js_footer   string  optional    

Example: console.log('Footer loaded');

visibility   object  optional    

Visibility settings for Client Area UI elements. Each flag is a boolean (true = visible, false = hidden).

services_table   object  optional    
column_type   boolean  optional    

Example: true

column_ip   boolean  optional    

Example: false

column_status   boolean  optional    

Example: true

column_location   boolean  optional    

Example: false

column_created_at   boolean  optional    

Example: true

column_model   boolean  optional    

Example: true

my_account   object  optional    
two_factor_auth   boolean  optional    

Example: true

navigation   object  optional    
iso_images   boolean  optional    

Example: true

ssh_keys   boolean  optional    

Example: false

Get System Configuration

requires authentication

Returns current system configuration for admin area.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/system/config" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/system/config'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/system/config';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "appearance": {
            "table_view": "default",
            "graphs_driver": "Components\\Libs\\Graphs\\Drivers\\ChartJSDriver",
            "custom_backend_css": "",
            "email_footer": "",
            "email_css": ""
        },
        "company": {
            "name": "EasyDCIM",
            "email": "[email protected]"
        },
        "license": {
            "license_key": "license_key",
            "license_status": "Active",
            "devices_limit": 120,
            "valid_domain": "easydcim_hostname",
            "current_devices": 68
        },
        "localization": {
            "timezone": "365",
            "admin_language": "en",
            "default_client_language": "en",
            "available_languages": {
                "backend": {
                    "en": "English"
                },
                "client": {
                    "en": "English",
                    "de": "German",
                    "es": "Spanish"
                }
            }
        },
        "meta": {
            "app_version": "1.23",
            "php_version": "8.3.25"
        },
        "modules": {
            "os": {
                "0": "OSInstallation",
                "1": "OS Installation",
                "version": "2.1.0"
            },
            "ipmi": {
                "0": "IpmiIntegration",
                "1": "IPMI Integration",
                "version": "1.5.5"
            },
            "ip-manager": {
                "0": "IPManager",
                "1": "IP Address Management",
                "version": "1.8.5"
            },
            "advanced-monitoring": {
                "0": "AdvancedMonitoring",
                "1": "Advanced Monitoring",
                "version": "1.1.1"
            },
            "dns-manager": {
                "0": "DNSManager",
                "1": "DNS Management",
                "version": "1.4.2"
            },
            "pdu-manager": {
                "0": "PDUManager",
                "1": "PDU Management",
                "version": "1.2.7"
            },
            "password-manager": {
                "0": "PasswordManager",
                "1": "Password Management",
                "version": "1.1"
            },
            "ldap": {
                "0": "LDAPAuthentication",
                "1": "LDAP Authentication",
                "version": "1.0.0"
            },
            "two-factor-auth": {
                "0": "TwoFactorAuth",
                "1": "Two-Factor Authentication",
                "version": "1.2.0"
            },
            "usage-collector": {
                "0": "UsageCollector",
                "1": "Usage Collector",
                "version": "1.3.5"
            },
            "switches-manager": {
                "0": "SwitchesManager",
                "1": "Switch Management",
                "version": "1.4.3"
            }
        },
        "system": {
            "debug_mode": false,
            "ssh_port": 22,
            "allowed_ips": [],
            "allowed_api_ips": []
        },
        "urls": {
            "base": "https://your-easydcim.com"
        }
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/system/config

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Health Check

requires authentication

Performs a full system health check, verifying core components: Redis, database, queue, web server (Apache), and remote agents.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/system/health-check" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/system/health-check'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/system/health-check';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "database": {
            "status": "success",
            "driver": "mariadb",
            "database": "db_name",
            "version": "10.11.14-MariaDB-0+deb12u2",
            "host": "127.0.0.1",
            "port": "db_port",
            "query_time_ms": 0.85,
            "size_mb": "225.98",
            "message": "Successfully connected to database \"db_name\"."
        },
        "apache2": {
            "status": "success",
            "server_url": "https://your-easydcim.com",
            "http_code": 200
        },
        "redis": {
            "status": "success",
            "data": {
                "data": {
                    "status": "success",
                    "host": "127.0.0.1",
                    "port": "redis_port",
                    "version": "7.0.15",
                    "uptime": 1218174,
                    "memory": "789.13M"
                },
                "cache": {
                    "status": "success",
                    "host": "127.0.0.1",
                    "port": "redis_port",
                    "version": "7.0.15",
                    "uptime": 1218174,
                    "memory": "1.68M"
                }
            }
        },
        "queue": {
            "status": "success",
            "queues": [
                {
                    "Name": "name",
                    "PID": "pid",
                    "Status": "running",
                    "Workers": "worker_name",
                    "Balancing": "auto"
                }
            ]
        },
        "agents": [
            {
                "id": 1,
                "name": "Local",
                "status": "success",
                "database": {
                    "status": "success",
                    "message": "Successfully connected to the DB: agent_db_name"
                },
                "queue": {
                    "status": "success",
                    "queues": [
                        {
                            "Name": "name",
                            "PID": "pid",
                            "Status": "running",
                            "Workers": "worker_name",
                            "Balancing": "auto"
                        }
                    ]
                },
                "sshConnection": {
                    "status": "success"
                }
            }
        ]
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/system/health-check

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Locations

List Locations

requires authentication

Returns a paginated list of locations

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/locations?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/locations'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/locations';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 4793,
            "app_id": null,
            "name": "Runolfsdottir, Zemlak and Koch",
            "address": "95277 Macie Ville Apt. 376\nEast Nellaland, TX 79961-0470",
            "city": "Bufordtown",
            "state": "Alaska",
            "description": "Rem provident aspernatur et quos quam voluptatibus. Ea qui perspiciatis ipsa. Velit aperiam mollitia facere reiciendis non eveniet. Nam aperiam autem quasi libero tempora eligendi neque voluptatibus.",
            "notes": "Illum sint velit vitae laudantium. Non nihil illo nihil ea consectetur esse veniam. Quaerat iste provident nisi laboriosam totam itaque quam. Reiciendis dolor veritatis qui labore.",
            "emergency": "1",
            "phone": "1-931-344-9840",
            "flag": "Germany.png",
            "created_at": "2026-09-04 09:46:50",
            "updated_at": "2026-09-04 09:46:50"
        },
        {
            "id": 4794,
            "app_id": null,
            "name": "Boyer-Franecki",
            "address": "1258 Gutkowski Wall Apt. 927\nVeldaland, NJ 46964",
            "city": "Kreigerport",
            "state": "Wisconsin",
            "description": "Tenetur enim est ut perferendis. Nobis alias numquam dolorem possimus facere praesentium. Dolorem est voluptatum dolor earum. Repudiandae sint impedit qui placeat qui ducimus qui.",
            "notes": "Consequatur beatae blanditiis perferendis eius eum quae. Sunt minima occaecati eos ut voluptatum molestias voluptate in. Unde omnis maxime fugiat aperiam.",
            "emergency": "1",
            "phone": "+13858774710",
            "flag": "UK.png",
            "created_at": "2026-09-04 09:46:51",
            "updated_at": "2026-09-04 09:46:51"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/locations?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/locations",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/locations

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, city, state. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, city, state. Example: id

Show location

requires authentication

Display detailed information about a single location by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/locations/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/locations/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/locations/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 4795,
        "app_id": null,
        "name": "Mueller Group",
        "address": "9929 Luther Brooks Suite 344\nBlockborough, TX 26717",
        "city": "Armstrongton",
        "state": "Ohio",
        "description": "Officia voluptatem molestiae qui molestiae. Provident occaecati explicabo natus. Ea voluptas et similique. Dolores hic alias reprehenderit dolorum deserunt. Est dolor cumque sed perferendis voluptatum aliquam explicabo.",
        "notes": "Voluptate voluptatem sint distinctio blanditiis. Autem error accusamus ea porro aspernatur repudiandae. Voluptas inventore labore qui.",
        "emergency": "1",
        "phone": "+1-346-363-6326",
        "flag": "Germany.png",
        "created_at": "2026-09-04 09:46:52",
        "updated_at": "2026-09-04 09:46:52"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/locations/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the location. Example: 1

Create location

requires authentication

Store a new location in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/locations" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"New York Data Center\",
    \"address\": \"1234 Madison Ave, New York, NY\",
    \"phone\": \"+1 212-555-0199\",
    \"description\": \"Main East Coast colocation facility.\",
    \"manager_id\": 42,
    \"remote_agent\": 7
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/locations'
payload = {
    "name": "New York Data Center",
    "address": "1234 Madison Ave, New York, NY",
    "phone": "+1 212-555-0199",
    "description": "Main East Coast colocation facility.",
    "manager_id": 42,
    "remote_agent": 7
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/locations';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'New York Data Center',
            'address' => '1234 Madison Ave, New York, NY',
            'phone' => '+1 212-555-0199',
            'description' => 'Main East Coast colocation facility.',
            'manager_id' => 42,
            'remote_agent' => 7,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 4796,
        "app_id": null,
        "name": "Wisozk, Breitenberg and Kassulke",
        "address": "115 Crooks Corners Suite 710\nSouth Dellamouth, ND 18740",
        "city": "Port Daveburgh",
        "state": "Pennsylvania",
        "description": "Architecto nihil velit odio fuga laborum non et. Qui expedita laudantium ut rerum minima pariatur eum. Necessitatibus laboriosam voluptatum vel quidem qui tempore veritatis voluptatem.",
        "notes": "Iste voluptatibus ipsum dolorem sapiente explicabo. Consequuntur sed sunt quis perferendis. Necessitatibus enim dolorum eaque vel ipsa.",
        "emergency": "1",
        "phone": "478-371-5646",
        "flag": "Canada.png",
        "created_at": "2026-09-04 09:46:54",
        "updated_at": "2026-09-04 09:46:54"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/locations

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The unique name of the location. Must not be greater than 255 characters. Example: New York Data Center

address   string  optional    

The physical address of the location. Must not be greater than 500 characters. Example: 1234 Madison Ave, New York, NY

phone   string  optional    

A contact phone number for the location. Must not be greater than 50 characters. Example: +1 212-555-0199

description   string  optional    

Additional details about the location. Must not be greater than 1000 characters. Example: Main East Coast colocation facility.

manager_id   integer  optional    

The ID of the user who manages this location. Must match an existing stored value. Example: 42

remote_agent   integer  optional    

The ID of the remote agent linked with this location (optional). Example: 7

Update location

requires authentication

Updates the specified location with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/locations/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Warsaw DC-1\",
    \"address\": \"ul. Marszałkowska 10, Warsaw, PL\",
    \"phone\": \"+48 22 123 45 67\",
    \"description\": \"Primary colocation facility in Warsaw.\",
    \"manager_id\": 12,
    \"remote_agent\": 3
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/locations/5'
payload = {
    "name": "Warsaw DC-1",
    "address": "ul. Marszałkowska 10, Warsaw, PL",
    "phone": "+48 22 123 45 67",
    "description": "Primary colocation facility in Warsaw.",
    "manager_id": 12,
    "remote_agent": 3
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/locations/5';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Warsaw DC-1',
            'address' => 'ul. Marszałkowska 10, Warsaw, PL',
            'phone' => '+48 22 123 45 67',
            'description' => 'Primary colocation facility in Warsaw.',
            'manager_id' => 12,
            'remote_agent' => 3,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 4797,
        "app_id": null,
        "name": "Ratke Ltd",
        "address": "2539 Maryam Freeway Suite 778\nKesslershire, DE 61195-9070",
        "city": "Camryntown",
        "state": "Kentucky",
        "description": "In debitis ea occaecati. Et iure et sit pariatur voluptatem temporibus. Aperiam voluptatum at ut debitis ab distinctio. Itaque soluta voluptas nemo voluptatem aspernatur amet culpa mollitia.",
        "notes": "Ut eum voluptatem aperiam iusto tenetur reprehenderit autem. Nesciunt esse dignissimos et pariatur fugit. Pariatur consequatur harum autem quis. Quasi illum ut dolor nihil totam.",
        "emergency": "1",
        "phone": "317.676.6629",
        "flag": "UK.png",
        "created_at": "2026-09-04 09:46:55",
        "updated_at": "2026-09-04 09:46:55"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/locations/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the location. Example: 5

Body Parameters

name   string  optional    

The unique name of the location. Must not be greater than 255 characters. Example: Warsaw DC-1

address   string  optional    

The physical address of the location. Must not be greater than 500 characters. Example: ul. Marszałkowska 10, Warsaw, PL

phone   string  optional    

A contact phone number for the location. Must not be greater than 50 characters. Example: +48 22 123 45 67

description   string  optional    

Additional details about the location. Must not be greater than 1000 characters. Example: Primary colocation facility in Warsaw.

manager_id   integer  optional    

The ID of the user who manages this location. Must match an existing stored value. Example: 12

remote_agent   integer  optional    

The ID of the remote agent linked with this location (optional). Example: 3

Delete location

requires authentication

Removes the specified location from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/locations/7" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/locations/7'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/locations/7';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/locations/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the location. Example: 7

Racks

List Racks

requires authentication

Returns a paginated list of racks

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/racks?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/racks'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/racks';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 926,
            "name": "ducimus",
            "floor_id": 926,
            "location_id": 4798,
            "description": "Et voluptatem explicabo sit praesentium.",
            "room": "optio",
            "units_number": 67,
            "weight": 130,
            "speed": 100,
            "manager_id": 8878,
            "location": {
                "id": 4798,
                "app_id": null,
                "name": "Murazik, Funk and Walker",
                "address": "305 Caitlyn Oval Suite 051\nLake Williamfort, IA 98756-0597",
                "city": "Gottliebhaven",
                "state": "Delaware",
                "description": "Exercitationem eligendi id et corporis a dolorum. Esse inventore eaque debitis culpa. Ea ipsa in quia. Ducimus ut ut earum non.",
                "notes": "Qui eveniet eos nihil nobis. Sed molestiae non consequuntur nostrum debitis odit. Alias cum est magni. Laudantium eveniet at incidunt ut quia harum.",
                "emergency": "1",
                "phone": "(239) 276-2125",
                "flag": "UK.png",
                "created_at": "2026-09-04 09:46:56",
                "updated_at": "2026-09-04 09:46:56"
            },
            "floor": {
                "id": 926,
                "name": "et",
                "number": 30,
                "rows": 4,
                "columns": 2,
                "racks": [
                    {
                        "id": 926,
                        "name": "ducimus"
                    }
                ],
                "created_at": "2026-09-04 09:46:57",
                "updated_at": "2026-09-04 09:46:57"
            },
            "manager": {
                "id": 8878,
                "username": "spagac",
                "email": "[email protected]",
                "name": "Kiel Blick",
                "firstname": "Kiel",
                "lastname": "Blick",
                "gender": "0",
                "avatar": "//www.gravatar.com/avatar/5815661c79df97c8e98d165b4a497d0f?s=30&d=mm&r=g",
                "large_avatar": "//www.gravatar.com/avatar/5815661c79df97c8e98d165b4a497d0f?s=130&d=mm&r=g",
                "company": null,
                "active": 1,
                "status": "Active",
                "address1": null,
                "address2": null,
                "city": null,
                "state": null,
                "postcode": null,
                "country_code": null,
                "country_name": "United States",
                "locale": null,
                "timezone": 0,
                "last_login": null
            },
            "created_at": "2026-09-04 09:46:57",
            "updated_at": "2026-09-04 09:46:57"
        },
        {
            "id": 927,
            "name": "enim",
            "floor_id": 927,
            "location_id": 4800,
            "description": "Nesciunt hic laudantium magnam repellat et quia quia.",
            "room": "et",
            "units_number": 52,
            "weight": 156,
            "speed": 10,
            "manager_id": 8881,
            "location": {
                "id": 4800,
                "app_id": null,
                "name": "Ward LLC",
                "address": "71134 Mohr Squares\nPaucekport, LA 71250",
                "city": "Billshire",
                "state": "Iowa",
                "description": "Dolor corporis voluptas officia consequatur. Labore occaecati perferendis rerum officia et. Dolorum odit sit veritatis. Accusantium doloremque provident necessitatibus culpa.",
                "notes": "Culpa ullam cupiditate blanditiis consequatur et culpa quod. Vel nemo debitis aut. Minima cupiditate omnis aut. Molestiae ratione et totam natus nobis deserunt. Dolorum aut dolor esse.",
                "emergency": "1",
                "phone": "706.368.1247",
                "flag": "USA.png",
                "created_at": "2026-09-04 09:46:59",
                "updated_at": "2026-09-04 09:46:59"
            },
            "floor": {
                "id": 927,
                "name": "doloribus",
                "number": 5,
                "rows": 8,
                "columns": 9,
                "racks": [
                    {
                        "id": 927,
                        "name": "enim"
                    }
                ],
                "created_at": "2026-09-04 09:47:00",
                "updated_at": "2026-09-04 09:47:00"
            },
            "manager": {
                "id": 8881,
                "username": "dorothy65",
                "email": "[email protected]",
                "name": "Alice Grimes",
                "firstname": "Alice",
                "lastname": "Grimes",
                "gender": "0",
                "avatar": "//www.gravatar.com/avatar/0e700d48ffecdd4a9e738b26cb6af398?s=30&d=mm&r=g",
                "large_avatar": "//www.gravatar.com/avatar/0e700d48ffecdd4a9e738b26cb6af398?s=130&d=mm&r=g",
                "company": null,
                "active": 1,
                "status": "Active",
                "address1": null,
                "address2": null,
                "city": null,
                "state": null,
                "postcode": null,
                "country_code": null,
                "country_name": "United States",
                "locale": null,
                "timezone": 0,
                "last_login": null
            },
            "created_at": "2026-09-04 09:47:00",
            "updated_at": "2026-09-04 09:47:00"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/racks?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/racks",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/racks

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, location_id, floor_id, units_number, weight, manager_id. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, location_id, floor_id. Example: id

Show rack

requires authentication

Returns detailed information about a specific rack.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/racks/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/racks/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/racks/5';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 928,
        "name": "numquam",
        "floor_id": 928,
        "location_id": 4802,
        "description": "Porro libero dolores deleniti aliquam atque.",
        "room": "provident",
        "units_number": 96,
        "weight": 131,
        "speed": 10,
        "manager_id": 8884,
        "location": {
            "id": 4802,
            "app_id": null,
            "name": "Brakus-Franecki",
            "address": "8489 Nyasia Loop\nPort Lynn, AL 35532-6055",
            "city": "Considinehaven",
            "state": "Wyoming",
            "description": "Harum ratione quibusdam occaecati. Nam fugiat ut similique adipisci enim. Sint asperiores dolorem velit ad quis quas quis. Ea laudantium non hic possimus repudiandae sit.",
            "notes": "Suscipit ex laudantium numquam fugit eos. Velit sapiente a qui aut amet. Et saepe quis non eius vel. Est id quibusdam voluptatibus qui molestiae earum.",
            "emergency": "1",
            "phone": "+1-620-231-9694",
            "flag": "USA.png",
            "created_at": "2026-09-04 09:47:01",
            "updated_at": "2026-09-04 09:47:01"
        },
        "floor": {
            "id": 928,
            "name": "harum",
            "number": 96,
            "rows": 7,
            "columns": 8,
            "racks": [
                {
                    "id": 928,
                    "name": "numquam"
                }
            ],
            "created_at": "2026-09-04 09:47:02",
            "updated_at": "2026-09-04 09:47:02"
        },
        "manager": {
            "id": 8884,
            "username": "mario.powlowski",
            "email": "[email protected]",
            "name": "Murray O'Connell",
            "firstname": "Murray",
            "lastname": "O'Connell",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/66c0d4004cf63e42d12d4c86fa9c76ac?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/66c0d4004cf63e42d12d4c86fa9c76ac?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        "created_at": "2026-09-04 09:47:02",
        "updated_at": "2026-09-04 09:47:02"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/racks/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

Rack ID. Example: 5

Create rack

requires authentication

Creates a new rack within a specific location and floor.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/racks" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Rack A-101\",
    \"location_id\": 5,
    \"floor_id\": 12,
    \"description\": \"42U rack with redundant power.\",
    \"room\": \"Server Room 2B\",
    \"units_number\": 42,
    \"weight\": 350,
    \"manager_id\": 42
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/racks'
payload = {
    "name": "Rack A-101",
    "location_id": 5,
    "floor_id": 12,
    "description": "42U rack with redundant power.",
    "room": "Server Room 2B",
    "units_number": 42,
    "weight": 350,
    "manager_id": 42
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/racks';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Rack A-101',
            'location_id' => 5,
            'floor_id' => 12,
            'description' => '42U rack with redundant power.',
            'room' => 'Server Room 2B',
            'units_number' => 42,
            'weight' => 350.0,
            'manager_id' => 42,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 929,
        "name": "magnam",
        "floor_id": 929,
        "location_id": 4804,
        "description": "Amet sunt voluptatem recusandae fuga eaque velit veniam.",
        "room": "qui",
        "units_number": 28,
        "weight": 185,
        "speed": 10,
        "manager_id": 8887,
        "location": {
            "id": 4804,
            "app_id": null,
            "name": "Haag and Sons",
            "address": "9572 Abernathy Isle\nMacejkovictown, IA 70792",
            "city": "Pfannerstillstad",
            "state": "Indiana",
            "description": "Expedita qui dolorem quia natus qui modi et. Atque amet tenetur magni omnis qui. Quia atque maxime aut alias.",
            "notes": "Omnis sint aut et nisi. Magnam pariatur nulla sint voluptas omnis. Aut voluptatem totam exercitationem totam.",
            "emergency": "0",
            "phone": "725.284.1880",
            "flag": "USA.png",
            "created_at": "2026-09-04 09:47:04",
            "updated_at": "2026-09-04 09:47:04"
        },
        "floor": {
            "id": 929,
            "name": "voluptates",
            "number": 5,
            "rows": 1,
            "columns": 9,
            "racks": [
                {
                    "id": 929,
                    "name": "magnam"
                }
            ],
            "created_at": "2026-09-04 09:47:05",
            "updated_at": "2026-09-04 09:47:05"
        },
        "manager": {
            "id": 8887,
            "username": "kristina.nader",
            "email": "[email protected]",
            "name": "Jo Gutmann",
            "firstname": "Jo",
            "lastname": "Gutmann",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/474c49debf36c714d2b6de34cd90e47a?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/474c49debf36c714d2b6de34cd90e47a?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        "created_at": "2026-09-04 09:47:05",
        "updated_at": "2026-09-04 09:47:05"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/racks

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The unique name of the rack. Must not be greater than 255 characters. Example: Rack A-101

location_id   integer     

The ID of the location where this rack is placed. Must match an existing stored value. Example: 5

floor_id   integer     

The ID of the floor where this rack is located. Must match an existing stored value. Example: 12

description   string  optional    

Additional details about the rack. Must not be greater than 1000 characters. Example: 42U rack with redundant power.

room   string  optional    

Optional room identifier within the floor. Must not be greater than 255 characters. Example: Server Room 2B

units_number   integer  optional    

Total number of units (U) available in the rack. Must be at least 0. Must not be greater than 120. Example: 42

weight   number  optional    

Maximum supported weight of devices in kg. Must be at least 0. Example: 350

manager_id   integer  optional    

The ID of the user who manages this rack. Must match an existing stored value. Example: 42

Update rack

requires authentication

Updates the attributes of an existing rack.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/racks/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Rack A-101\",
    \"location_id\": 5,
    \"floor_id\": 12,
    \"description\": \"42U rack with redundant power.\",
    \"room\": \"Server Room 2B\",
    \"units_number\": 42,
    \"weight\": 350,
    \"manager_id\": 42
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/racks/5'
payload = {
    "name": "Rack A-101",
    "location_id": 5,
    "floor_id": 12,
    "description": "42U rack with redundant power.",
    "room": "Server Room 2B",
    "units_number": 42,
    "weight": 350,
    "manager_id": 42
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/racks/5';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Rack A-101',
            'location_id' => 5,
            'floor_id' => 12,
            'description' => '42U rack with redundant power.',
            'room' => 'Server Room 2B',
            'units_number' => 42,
            'weight' => 350.0,
            'manager_id' => 42,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 930,
        "name": "accusantium",
        "floor_id": 930,
        "location_id": 4806,
        "description": "Et qui quis enim iste.",
        "room": "quas",
        "units_number": 27,
        "weight": 110,
        "speed": 100,
        "manager_id": 8890,
        "location": {
            "id": 4806,
            "app_id": null,
            "name": "Maggio-Hagenes",
            "address": "899 Lesch Parkways Apt. 316\nEast Magdalenaburgh, NE 64893-9231",
            "city": "Deckowshire",
            "state": "Arkansas",
            "description": "Quisquam libero consequatur labore delectus. Harum ipsa porro porro aliquam ex voluptatem. Similique deleniti cumque repellendus non blanditiis sit quo. Qui dolorem quas voluptas dolores officia voluptas. Sed enim qui vitae sed.",
            "notes": "Quis non id vel accusamus rerum nulla. Omnis sint a est corporis. Voluptas incidunt aut sit necessitatibus. Cumque qui consequatur et incidunt et odio. Dolores ipsa qui odio et.",
            "emergency": "1",
            "phone": "334.775.3765",
            "flag": "UK.png",
            "created_at": "2026-09-04 09:47:06",
            "updated_at": "2026-09-04 09:47:06"
        },
        "floor": {
            "id": 930,
            "name": "eum",
            "number": 79,
            "rows": 5,
            "columns": 3,
            "racks": [
                {
                    "id": 930,
                    "name": "accusantium"
                }
            ],
            "created_at": "2026-09-04 09:47:07",
            "updated_at": "2026-09-04 09:47:07"
        },
        "manager": {
            "id": 8890,
            "username": "gerardo.murphy",
            "email": "[email protected]",
            "name": "Eveline Wilkinson",
            "firstname": "Eveline",
            "lastname": "Wilkinson",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/1247136b4a0ee189f569ce1f70303c1f?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/1247136b4a0ee189f569ce1f70303c1f?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        "created_at": "2026-09-04 09:47:07",
        "updated_at": "2026-09-04 09:47:07"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/racks/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

Rack ID. Example: 5

Body Parameters

name   string  optional    

The unique name of the rack. Must not be greater than 255 characters. Example: Rack A-101

location_id   integer  optional    

The ID of the location where this rack is placed. Must match an existing stored value. Example: 5

floor_id   integer  optional    

The ID of the floor where this rack is located. Must match an existing stored value. Example: 12

description   string  optional    

Additional details about the rack. Must not be greater than 1000 characters. Example: 42U rack with redundant power.

room   string  optional    

Optional room identifier within the floor. Must not be greater than 255 characters. Example: Server Room 2B

units_number   integer  optional    

Total number of units (U) available in the rack. Must be at least 0. Must not be greater than 120. Example: 42

weight   number  optional    

Maximum supported weight of devices in kg. Must be at least 0. Example: 350

manager_id   integer  optional    

The ID of the user who manages this rack. Must match an existing stored value. Example: 42

Delete rack

requires authentication

Permanently removes a rack from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/racks/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/racks/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/racks/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/racks/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

Rack ID. Example: 5

Floors

List floors

requires authentication

Returns a paginated list of floors.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/floors?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/floors'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/floors';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 931,
            "name": "non",
            "number": 38,
            "rows": 3,
            "columns": 7,
            "racks": [],
            "created_at": "2026-09-04 09:47:09",
            "updated_at": "2026-09-04 09:47:09"
        },
        {
            "id": 932,
            "name": "ut",
            "number": 8,
            "rows": 4,
            "columns": 3,
            "racks": [],
            "created_at": "2026-09-04 09:47:10",
            "updated_at": "2026-09-04 09:47:10"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/floors?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/floors",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/floors

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, number, location_id, rows, columns. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, number, location_id. Example: id

Show floor

requires authentication

Display detailed information about a single floor by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/floors/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/floors/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/floors/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 933,
        "name": "quisquam",
        "number": 68,
        "rows": 9,
        "columns": 7,
        "racks": [],
        "created_at": "2026-09-04 09:47:11",
        "updated_at": "2026-09-04 09:47:11"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/floors/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the floor. Example: 1

Create floor

requires authentication

Store a new floor in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/floors" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Floor 1\",
    \"number\": 2,
    \"rows\": 10,
    \"columns\": 8,
    \"location_id\": 1
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/floors'
payload = {
    "name": "Floor 1",
    "number": 2,
    "rows": 10,
    "columns": 8,
    "location_id": 1
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/floors';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Floor 1',
            'number' => 2,
            'rows' => 10,
            'columns' => 8,
            'location_id' => 1,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 934,
        "name": "optio",
        "number": 67,
        "rows": 3,
        "columns": 8,
        "racks": [],
        "created_at": "2026-09-04 09:47:12",
        "updated_at": "2026-09-04 09:47:12"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/floors

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The unique name of the floor. Must not be greater than 255 characters. Example: Floor 1

number   integer     

The floor number (e.g. 1 for first floor, 2 for second floor). Must be at least 1. Example: 2

rows   integer     

The number of rows in the floor grid. Must be at least 1. Example: 10

columns   integer     

The number of columns in the floor grid. Must be at least 1. Example: 8

location_id   integer     

The ID of the location this floor belongs to. Must match an existing stored value. Example: 1

Update floor

requires authentication

Updates the specified floor with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/floors/3" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Updated Floor 2\",
    \"number\": 3,
    \"rows\": 12,
    \"columns\": 15,
    \"location_id\": 2
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/floors/3'
payload = {
    "name": "Updated Floor 2",
    "number": 3,
    "rows": 12,
    "columns": 15,
    "location_id": 2
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/floors/3';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Updated Floor 2',
            'number' => 3,
            'rows' => 12,
            'columns' => 15,
            'location_id' => 2,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 935,
        "name": "harum",
        "number": 85,
        "rows": 5,
        "columns": 8,
        "racks": [],
        "created_at": "2026-09-04 09:47:14",
        "updated_at": "2026-09-04 09:47:14"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/floors/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the floor. Example: 3

Body Parameters

name   string  optional    

The unique name of the floor. Must not be greater than 255 characters. Example: Updated Floor 2

number   integer  optional    

The floor number (e.g. 1 for first floor, 2 for second floor). Must be at least 1. Example: 3

rows   integer  optional    

The number of rows in the floor grid. Must be at least 1. Example: 12

columns   integer  optional    

The number of columns in the floor grid. Must be at least 1. Example: 15

location_id   integer  optional    

The ID of the location this floor belongs to. Must match an existing stored value. Example: 2

Delete floor

requires authentication

Removes the specified floor from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/floors/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/floors/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/floors/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/floors/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the floor. Example: 5

Item Models

List item models

requires authentication

Returns a paginated list of item models.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/item-models?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/item-models'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/item-models';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 2406,
            "name": "sit",
            "label": "nulla",
            "type_id": 2945,
            "type": {
                "id": 2945,
                "name": "neque"
            },
            "location_id": 4813,
            "status": "unavailable",
            "description": "Animi ex et eligendi neque perspiciatis ratione.",
            "is_part": false,
            "mountable": true,
            "manufacturer": "Quigley and Sons",
            "position": "repellat",
            "size": 0,
            "image": "https://via.placeholder.com/640x480.png/00cc00?text=ut",
            "data_ports": 9,
            "serialnumber1": "8ef958b1-5044-32b2-bf13-6682c8f0f965",
            "serialnumber2": "2a8551e6-951d-39ba-9c3d-7bb382e83320",
            "service_tag": "efa8bd82-f6d7-3860-8064-fcaab159981d",
            "comments": "Provident vero mollitia quasi quos aut aut non. Molestias qui neque quia quaerat commodi. Nostrum vitae in consequatur omnis exercitationem.",
            "notes": "Similique culpa quasi sunt ducimus error quo. Enim quis nisi quia aliquam a sit dolorum voluptate.",
            "purchase_date": "1974-06-18",
            "warranty_months": 35,
            "warranty_info": "Qui deserunt eveniet a id repudiandae.",
            "function": "nihil",
            "maintenance_instruction": "Incidunt aliquid facilis fugiat quis perspiciatis est nulla. A molestiae optio repellendus aut. Voluptas quia veniam non velit iste tenetur necessitatibus.",
            "origin": "Poland",
            "buy_price": 662.4,
            "appdata": "a:1:{s:3:\"key\";s:5:\"velit\";}",
            "fields_data": "a:1:{s:5:\"field\";s:3:\"aut\";}",
            "parts_data": "a:1:{s:4:\"part\";s:9:\"inventore\";}",
            "created_at": "2026-09-04T07:47:15.000000Z",
            "updated_at": "2026-09-04T07:47:15.000000Z"
        },
        {
            "id": 2407,
            "name": "ut",
            "label": "est",
            "type_id": 2946,
            "type": {
                "id": 2946,
                "name": "neque"
            },
            "location_id": 4814,
            "status": "in_use",
            "description": "Quas aliquid assumenda explicabo.",
            "is_part": false,
            "mountable": true,
            "manufacturer": "Halvorson, Lakin and Hudson",
            "position": "sint",
            "size": 0,
            "image": "https://via.placeholder.com/640x480.png/00ddbb?text=voluptatum",
            "data_ports": 7,
            "serialnumber1": "37016865-b782-34a3-92e4-82fd1c0900ef",
            "serialnumber2": "7e1e3c28-d312-3d4d-8f32-4b74cabff263",
            "service_tag": "636b0197-c2c9-39e5-a20a-593514807d6c",
            "comments": "Voluptatibus tempora quia consequatur qui est necessitatibus. Occaecati deserunt et eaque nobis incidunt et alias. Quibusdam repellendus animi quae minima id deserunt. Tenetur iure vitae sint error.",
            "notes": "Consequatur accusantium et beatae. Sint in dolor dignissimos unde. Incidunt impedit aut vitae ut laboriosam. Distinctio fugiat dignissimos voluptatem accusamus. Quia mollitia ea unde quam.",
            "purchase_date": "2009-08-24",
            "warranty_months": 31,
            "warranty_info": "Reiciendis sequi possimus ut similique voluptas consequatur illo nam.",
            "function": "vero",
            "maintenance_instruction": "Eius deleniti nihil non ducimus sequi culpa quae. In est velit est maxime ducimus consequatur est. Rem maiores ducimus quos rem et.",
            "origin": "Cuba",
            "buy_price": 342.17,
            "appdata": "a:1:{s:3:\"key\";s:10:\"laboriosam\";}",
            "fields_data": "a:1:{s:5:\"field\";s:7:\"dolorem\";}",
            "parts_data": "a:1:{s:4:\"part\";s:9:\"molestias\";}",
            "created_at": "2026-09-04T07:47:16.000000Z",
            "updated_at": "2026-09-04T07:47:16.000000Z"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/item-models?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/item-models",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/item-models

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, label, manufacturer, status, type_id, location_id, created_at. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, label, manufacturer, status, type_id. Example: id

Show item model

requires authentication

Display detailed information about a single item model by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/item-models/10" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/item-models/10'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/item-models/10';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2408,
        "name": "accusantium",
        "label": "veniam",
        "type_id": 2947,
        "type": {
            "id": 2947,
            "name": "odio"
        },
        "location_id": 4815,
        "status": "in_use",
        "description": "Dignissimos cupiditate facere non sequi debitis maxime autem.",
        "is_part": true,
        "mountable": false,
        "manufacturer": "Larkin and Sons",
        "position": "dolor",
        "size": 0,
        "image": "https://via.placeholder.com/640x480.png/00cc88?text=quam",
        "data_ports": 10,
        "serialnumber1": "803db206-24c8-3f54-b843-fcc6912f429d",
        "serialnumber2": "410dafcd-9c36-35b7-af72-bc6c2cd36147",
        "service_tag": "555e50ed-c1ee-3c90-bf22-d259a3f2df96",
        "comments": "Dolorem similique sit sed accusamus aut quam dolorum. Unde exercitationem ut magnam et eos. Ducimus aut tempore repellat sit.",
        "notes": "Maiores consequatur in expedita omnis. Sapiente illum voluptatibus laboriosam est. Consequatur ipsum deleniti cumque est provident asperiores. Cumque dolorem temporibus fuga.",
        "purchase_date": "1993-09-09",
        "warranty_months": 22,
        "warranty_info": "Dignissimos enim aspernatur necessitatibus et quibusdam enim aliquam.",
        "function": "facilis",
        "maintenance_instruction": "Molestiae laborum repellendus voluptatem enim est ex ut. Ipsam quasi non odio. Voluptatum quia dolores sit illum nam. Quo nulla qui voluptas id culpa nostrum repellat.",
        "origin": "Brazil",
        "buy_price": 905.3,
        "appdata": "a:1:{s:3:\"key\";s:5:\"nihil\";}",
        "fields_data": "a:1:{s:5:\"field\";s:4:\"unde\";}",
        "parts_data": "a:1:{s:4:\"part\";s:8:\"adipisci\";}",
        "created_at": "2026-09-04T07:47:17.000000Z",
        "updated_at": "2026-09-04T07:47:17.000000Z"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/item-models/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item model. Example: 10

Create item model

requires authentication

Store a new item model in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/item-models" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Dell PowerEdge R740\",
    \"type_id\": 1,
    \"location_id\": 5,
    \"label\": \"High-Performance Server\",
    \"status\": \"active\",
    \"description\": \"Dual CPU server with support for up to 3TB RAM.\",
    \"is_part\": false,
    \"mountable\": true,
    \"manufacturer\": \"Dell\",
    \"position\": \"front\",
    \"size\": 2,
    \"image\": \"tzseedlamkvdmcak\",
    \"serialnumber1\": \"SN123456789\",
    \"serialnumber2\": \"SN987654321\",
    \"service_tag\": \"ST-001122\",
    \"comments\": \"olhfgiaf\",
    \"notes\": \"mtowjzkraqeexnoomedbu\",
    \"purchase_date\": \"2026-09-04T09:47:17\",
    \"warranty_months\": 36,
    \"warranty_info\": \"gyg\",
    \"function\": \"llgjqnlsqeeacwxkidoiqwqtq\",
    \"maintenance_instruction\": \"eiemrxcmboigenvfr\",
    \"origin\": \"qadpmmqdblhmtckcgrcmcxkh\",
    \"buy_price\": 2500
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/item-models'
payload = {
    "name": "Dell PowerEdge R740",
    "type_id": 1,
    "location_id": 5,
    "label": "High-Performance Server",
    "status": "active",
    "description": "Dual CPU server with support for up to 3TB RAM.",
    "is_part": false,
    "mountable": true,
    "manufacturer": "Dell",
    "position": "front",
    "size": 2,
    "image": "tzseedlamkvdmcak",
    "serialnumber1": "SN123456789",
    "serialnumber2": "SN987654321",
    "service_tag": "ST-001122",
    "comments": "olhfgiaf",
    "notes": "mtowjzkraqeexnoomedbu",
    "purchase_date": "2026-09-04T09:47:17",
    "warranty_months": 36,
    "warranty_info": "gyg",
    "function": "llgjqnlsqeeacwxkidoiqwqtq",
    "maintenance_instruction": "eiemrxcmboigenvfr",
    "origin": "qadpmmqdblhmtckcgrcmcxkh",
    "buy_price": 2500
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/item-models';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Dell PowerEdge R740',
            'type_id' => 1,
            'location_id' => 5,
            'label' => 'High-Performance Server',
            'status' => 'active',
            'description' => 'Dual CPU server with support for up to 3TB RAM.',
            'is_part' => false,
            'mountable' => true,
            'manufacturer' => 'Dell',
            'position' => 'front',
            'size' => 2,
            'image' => 'tzseedlamkvdmcak',
            'serialnumber1' => 'SN123456789',
            'serialnumber2' => 'SN987654321',
            'service_tag' => 'ST-001122',
            'comments' => 'olhfgiaf',
            'notes' => 'mtowjzkraqeexnoomedbu',
            'purchase_date' => '2026-09-04T09:47:17',
            'warranty_months' => 36,
            'warranty_info' => 'gyg',
            'function' => 'llgjqnlsqeeacwxkidoiqwqtq',
            'maintenance_instruction' => 'eiemrxcmboigenvfr',
            'origin' => 'qadpmmqdblhmtckcgrcmcxkh',
            'buy_price' => 2500.0,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2409,
        "name": "ut",
        "label": "quia",
        "type_id": 2948,
        "type": {
            "id": 2948,
            "name": "mollitia"
        },
        "location_id": 4816,
        "status": "unavailable",
        "description": "Voluptatem magnam rem qui sapiente iure.",
        "is_part": true,
        "mountable": false,
        "manufacturer": "Littel LLC",
        "position": "vero",
        "size": 0,
        "image": "https://via.placeholder.com/640x480.png/00ccaa?text=fuga",
        "data_ports": 2,
        "serialnumber1": "fea71562-8b56-3fc0-b065-8fdff5c02c23",
        "serialnumber2": "76df52cd-dd2e-38e7-959c-4f72f7f41155",
        "service_tag": "9f6b7866-9e7e-32cf-bdcb-1ad2e22cff1f",
        "comments": "Hic aliquid et magni velit ut omnis et quia. Aut temporibus rerum fugit placeat est. Corrupti quia ab aliquam debitis. Repellat quidem minus totam quod.",
        "notes": "Culpa facilis est asperiores. Voluptas quaerat iure libero consectetur ratione. Harum voluptatem eaque sunt aut dolor.",
        "purchase_date": "1983-01-09",
        "warranty_months": 19,
        "warranty_info": "Tenetur nesciunt praesentium eos illum provident.",
        "function": "voluptatum",
        "maintenance_instruction": "Soluta sed quasi repudiandae modi aliquid incidunt. Harum omnis nulla nemo culpa. Qui non dolorum est corporis. Voluptatibus ex autem eligendi tempore ipsa dolor quaerat.",
        "origin": "Vanuatu",
        "buy_price": 959.99,
        "appdata": "a:1:{s:3:\"key\";s:2:\"id\";}",
        "fields_data": "a:1:{s:5:\"field\";s:2:\"et\";}",
        "parts_data": "a:1:{s:4:\"part\";s:4:\"sunt\";}",
        "created_at": "2026-09-04T07:47:19.000000Z",
        "updated_at": "2026-09-04T07:47:19.000000Z"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/item-models

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The unique name of the item model. Must not be greater than 255 characters. Example: Dell PowerEdge R740

type_id   integer     

The type ID the model belongs to. Must match an existing stored value. Example: 1

location_id   integer  optional    

The location ID the model is associated with (optional). Must match an existing stored value. Example: 5

label   string  optional    

A custom label for the model. Must not be greater than 255 characters. Example: High-Performance Server

status   string  optional    

The current status of the model. Must not be greater than 255 characters. Example: active

description   string  optional    

Detailed description of the model. Must not be greater than 1000 characters. Example: Dual CPU server with support for up to 3TB RAM.

is_part   boolean  optional    

Whether the model represents a part (1) or not (0). Example: false

mountable   boolean  optional    

Whether the model can be mounted (1) or not (0). Example: true

manufacturer   string  optional    

The name of the manufacturer. Must not be greater than 255 characters. Example: Dell

position   string  optional    

The default mounting position of the model in the rack. Allowed values: full, front, rear. Example: front

Must be one of:
  • full
  • front
  • rear
size   integer  optional    

Size in rack units. Must be at least 0. Example: 2

image   string  optional    

Must not be greater than 255 characters. Example: tzseedlamkvdmcak

serialnumber1   string  optional    

Primary serial number field. Must not be greater than 255 characters. Example: SN123456789

serialnumber2   string  optional    

Secondary serial number field. Must not be greater than 255 characters. Example: SN987654321

service_tag   string  optional    

Service tag or asset tag. Must not be greater than 255 characters. Example: ST-001122

comments   string  optional    

Must not be greater than 1000 characters. Example: olhfgiaf

notes   string  optional    

Must not be greater than 2000 characters. Example: mtowjzkraqeexnoomedbu

purchase_date   string  optional    

Must be a valid date. Example: 2026-09-04T09:47:17

warranty_months   integer  optional    

Warranty duration in months. Must be at least 0. Example: 36

warranty_info   string  optional    

Must not be greater than 500 characters. Example: gyg

function   string  optional    

Must not be greater than 255 characters. Example: llgjqnlsqeeacwxkidoiqwqtq

maintenance_instruction   string  optional    

Must not be greater than 1000 characters. Example: eiemrxcmboigenvfr

origin   string  optional    

Must not be greater than 255 characters. Example: qadpmmqdblhmtckcgrcmcxkh

buy_price   number  optional    

Purchase price of the model. Must be at least 0. Example: 2500

Update item model

requires authentication

Updates the specified item model with the provided request data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/item-models/12" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Dell PowerEdge R740\",
    \"type_id\": 1,
    \"location_id\": 5,
    \"label\": \"High-Performance Server\",
    \"status\": \"active\",
    \"description\": \"Dual CPU server with support for up to 3TB RAM.\",
    \"is_part\": false,
    \"mountable\": true,
    \"manufacturer\": \"Dell\",
    \"position\": \"front\",
    \"size\": 2,
    \"image\": \"mmauewzhzukvl\",
    \"serialnumber1\": \"SN123456789\",
    \"serialnumber2\": \"SN987654321\",
    \"service_tag\": \"ST-001122\",
    \"comments\": \"anwkjfybwpveehrvwkojakdv\",
    \"notes\": \"qcoijqbcakmkggewamerrgpe\",
    \"purchase_date\": \"2026-09-04T09:47:19\",
    \"warranty_months\": 36,
    \"warranty_info\": \"tjgnrvyvmjoankkvwxifod\",
    \"function\": \"qrlzmwfwtocbjhl\",
    \"maintenance_instruction\": \"sgdzpclsyfhx\",
    \"origin\": \"bowytxi\",
    \"buy_price\": 2500
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/item-models/12'
payload = {
    "name": "Dell PowerEdge R740",
    "type_id": 1,
    "location_id": 5,
    "label": "High-Performance Server",
    "status": "active",
    "description": "Dual CPU server with support for up to 3TB RAM.",
    "is_part": false,
    "mountable": true,
    "manufacturer": "Dell",
    "position": "front",
    "size": 2,
    "image": "mmauewzhzukvl",
    "serialnumber1": "SN123456789",
    "serialnumber2": "SN987654321",
    "service_tag": "ST-001122",
    "comments": "anwkjfybwpveehrvwkojakdv",
    "notes": "qcoijqbcakmkggewamerrgpe",
    "purchase_date": "2026-09-04T09:47:19",
    "warranty_months": 36,
    "warranty_info": "tjgnrvyvmjoankkvwxifod",
    "function": "qrlzmwfwtocbjhl",
    "maintenance_instruction": "sgdzpclsyfhx",
    "origin": "bowytxi",
    "buy_price": 2500
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/item-models/12';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Dell PowerEdge R740',
            'type_id' => 1,
            'location_id' => 5,
            'label' => 'High-Performance Server',
            'status' => 'active',
            'description' => 'Dual CPU server with support for up to 3TB RAM.',
            'is_part' => false,
            'mountable' => true,
            'manufacturer' => 'Dell',
            'position' => 'front',
            'size' => 2,
            'image' => 'mmauewzhzukvl',
            'serialnumber1' => 'SN123456789',
            'serialnumber2' => 'SN987654321',
            'service_tag' => 'ST-001122',
            'comments' => 'anwkjfybwpveehrvwkojakdv',
            'notes' => 'qcoijqbcakmkggewamerrgpe',
            'purchase_date' => '2026-09-04T09:47:19',
            'warranty_months' => 36,
            'warranty_info' => 'tjgnrvyvmjoankkvwxifod',
            'function' => 'qrlzmwfwtocbjhl',
            'maintenance_instruction' => 'sgdzpclsyfhx',
            'origin' => 'bowytxi',
            'buy_price' => 2500.0,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2410,
        "name": "consequatur",
        "label": "ut",
        "type_id": 2949,
        "type": {
            "id": 2949,
            "name": "aut"
        },
        "location_id": 4817,
        "status": "available",
        "description": "Voluptatem debitis eos aspernatur illo harum eos aut.",
        "is_part": true,
        "mountable": false,
        "manufacturer": "Koepp PLC",
        "position": "veritatis",
        "size": 0,
        "image": "https://via.placeholder.com/640x480.png/009977?text=rerum",
        "data_ports": 2,
        "serialnumber1": "93535870-2ca5-3eda-8b84-bdd13a8248ac",
        "serialnumber2": "96602b83-98b4-3020-8157-aa251682c69d",
        "service_tag": "9d92db2e-8d8c-3d5b-9804-f06909b5a48c",
        "comments": "Asperiores itaque perspiciatis et voluptas omnis et est. Cupiditate minus nobis cupiditate dolorem rem illum harum. Et at blanditiis harum sint.",
        "notes": "Praesentium veniam quia unde vero. Nihil temporibus sit qui maxime. Et tempore et laboriosam non.",
        "purchase_date": "1976-06-14",
        "warranty_months": 21,
        "warranty_info": "Aspernatur iste praesentium nihil harum voluptates quae delectus.",
        "function": "cupiditate",
        "maintenance_instruction": "Et non amet quia quasi voluptatem dolorem ea quis. Quisquam perspiciatis repudiandae possimus eum dicta. Cum dolorem delectus enim distinctio sint.",
        "origin": "Barbados",
        "buy_price": 254.03,
        "appdata": "a:1:{s:3:\"key\";s:5:\"nobis\";}",
        "fields_data": "a:1:{s:5:\"field\";s:8:\"voluptas\";}",
        "parts_data": "a:1:{s:4:\"part\";s:10:\"voluptatum\";}",
        "created_at": "2026-09-04T07:47:20.000000Z",
        "updated_at": "2026-09-04T07:47:20.000000Z"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/item-models/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item model. Example: 12

Body Parameters

name   string  optional    

The unique name of the item model. Must be unique across all models. Must not be greater than 255 characters. Example: Dell PowerEdge R740

type_id   integer  optional    

The type ID the model belongs to. Must match an existing stored value. Example: 1

location_id   integer  optional    

The location ID the model is associated with (optional). Must match an existing stored value. Example: 5

label   string  optional    

A custom label for the model. Must not be greater than 255 characters. Example: High-Performance Server

status   string  optional    

The current status of the model. Must not be greater than 255 characters. Example: active

description   string  optional    

Detailed description of the model. Must not be greater than 1000 characters. Example: Dual CPU server with support for up to 3TB RAM.

is_part   boolean  optional    

Whether the model represents a part (1) or not (0). Example: false

mountable   boolean  optional    

Whether the model can be mounted (1) or not (0). Example: true

manufacturer   string  optional    

The name of the manufacturer. Must not be greater than 255 characters. Example: Dell

position   string  optional    

The default mounting position of the model in the rack. Allowed values: full, front, rear. Example: front

Must be one of:
  • full
  • front
  • rear
size   integer  optional    

Size in rack units. Must be at least 0. Example: 2

image   string  optional    

Must not be greater than 255 characters. Example: mmauewzhzukvl

serialnumber1   string  optional    

Primary serial number field. Must not be greater than 255 characters. Example: SN123456789

serialnumber2   string  optional    

Secondary serial number field. Must not be greater than 255 characters. Example: SN987654321

service_tag   string  optional    

Service tag or asset tag. Must not be greater than 255 characters. Example: ST-001122

comments   string  optional    

Must not be greater than 1000 characters. Example: anwkjfybwpveehrvwkojakdv

notes   string  optional    

Must not be greater than 2000 characters. Example: qcoijqbcakmkggewamerrgpe

purchase_date   string  optional    

Must be a valid date. Example: 2026-09-04T09:47:19

warranty_months   integer  optional    

Warranty duration in months. Must be at least 0. Example: 36

warranty_info   string  optional    

Must not be greater than 500 characters. Example: tjgnrvyvmjoankkvwxifod

function   string  optional    

Must not be greater than 255 characters. Example: qrlzmwfwtocbjhl

maintenance_instruction   string  optional    

Must not be greater than 1000 characters. Example: sgdzpclsyfhx

origin   string  optional    

Must not be greater than 255 characters. Example: bowytxi

buy_price   number  optional    

Purchase price of the model. Must be at least 0. Example: 2500

Delete item model

requires authentication

Removes the specified item model from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/item-models/15" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/item-models/15'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/item-models/15';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/item-models/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item model. Example: 15

Users

List users

requires authentication

Returns a paginated list of users

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/users?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/users'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/users';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 8901,
            "username": "hickle.aditya",
            "email": "[email protected]",
            "name": "Bernie Hackett",
            "firstname": "Bernie",
            "lastname": "Hackett",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/c3fcc63b624ba5d3a7fec036a1920a8d?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/c3fcc63b624ba5d3a7fec036a1920a8d?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        {
            "id": 8902,
            "username": "rylee.cremin",
            "email": "[email protected]",
            "name": "Zola Fritsch",
            "firstname": "Zola",
            "lastname": "Fritsch",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/d489866ac00320d6c68a14f61ca7eb0e?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/d489866ac00320d6c68a14f61ca7eb0e?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/users?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/users",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/users

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, email, firstname, lastname, company, status. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, email, firstname, lastname, company, status. Example: id

Fetch user by email

requires authentication

Returns a user that matches the provided email.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/users/find-by-email" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"[email protected]\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/users/find-by-email'
payload = {
    "email": "[email protected]"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/users/find-by-email';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'email' => '[email protected]',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 8903,
        "username": "beer.easton",
        "email": "[email protected]",
        "name": "Jackson Quigley",
        "firstname": "Jackson",
        "lastname": "Quigley",
        "gender": "0",
        "avatar": "//www.gravatar.com/avatar/e5b27fa01a09655c3897e1e4528d0077?s=30&d=mm&r=g",
        "large_avatar": "//www.gravatar.com/avatar/e5b27fa01a09655c3897e1e4528d0077?s=130&d=mm&r=g",
        "company": null,
        "active": 1,
        "status": "Active",
        "address1": null,
        "address2": null,
        "city": null,
        "state": null,
        "postcode": null,
        "country_code": null,
        "country_name": "United States",
        "locale": null,
        "timezone": 0,
        "last_login": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/users/find-by-email

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

The email address of the user to find. Example: [email protected]

Show User

requires authentication

Updates the specified user with provided data.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/users/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/users/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/users/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 8904,
        "username": "kohler.eryn",
        "email": "[email protected]",
        "name": "Arlene Crist",
        "firstname": "Arlene",
        "lastname": "Crist",
        "devices": [],
        "orders": [],
        "gender": "0",
        "avatar": "//www.gravatar.com/avatar/8ac99561ce09c8776e6a24fd25f5886a?s=30&d=mm&r=g",
        "large_avatar": "//www.gravatar.com/avatar/8ac99561ce09c8776e6a24fd25f5886a?s=130&d=mm&r=g",
        "company": null,
        "active": 1,
        "status": "Active",
        "address1": null,
        "address2": null,
        "city": null,
        "state": null,
        "postcode": null,
        "country_code": null,
        "country_name": "United States",
        "locale": null,
        "timezone": 0,
        "last_login": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/users/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the user. Example: 1

Create user

requires authentication

Creates a new user account with the provided details.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/users" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"username\": \"johndoe\",
    \"firstname\": \"John\",
    \"lastname\": \"Doe\",
    \"email\": \"[email protected]\",
    \"password\": \"secret123\",
    \"password_confirmation\": \"secret123\",
    \"role\": 2,
    \"active\": 1,
    \"company\": \"Acme Inc.\",
    \"date_of_birth\": \"1990-05-15\",
    \"address1\": \"123 Main Street\",
    \"address2\": \"Apt 4B\",
    \"city\": \"New York\",
    \"state\": \"NY\",
    \"postcode\": \"10001\",
    \"country_code\": \"US\",
    \"locale\": \"en\",
    \"timezone\": \"America\\/New_York\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/users'
payload = {
    "username": "johndoe",
    "firstname": "John",
    "lastname": "Doe",
    "email": "[email protected]",
    "password": "secret123",
    "password_confirmation": "secret123",
    "role": 2,
    "active": 1,
    "company": "Acme Inc.",
    "date_of_birth": "1990-05-15",
    "address1": "123 Main Street",
    "address2": "Apt 4B",
    "city": "New York",
    "state": "NY",
    "postcode": "10001",
    "country_code": "US",
    "locale": "en",
    "timezone": "America\/New_York"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/users';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'username' => 'johndoe',
            'firstname' => 'John',
            'lastname' => 'Doe',
            'email' => '[email protected]',
            'password' => 'secret123',
            'password_confirmation' => 'secret123',
            'role' => 2,
            'active' => 1,
            'company' => 'Acme Inc.',
            'date_of_birth' => '1990-05-15',
            'address1' => '123 Main Street',
            'address2' => 'Apt 4B',
            'city' => 'New York',
            'state' => 'NY',
            'postcode' => '10001',
            'country_code' => 'US',
            'locale' => 'en',
            'timezone' => 'America/New_York',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 8905,
        "username": "hspencer",
        "email": "[email protected]",
        "name": "Drew Walter",
        "firstname": "Drew",
        "lastname": "Walter",
        "gender": "0",
        "avatar": "//www.gravatar.com/avatar/8fba157ffdfac008efc2b5257e1d33bf?s=30&d=mm&r=g",
        "large_avatar": "//www.gravatar.com/avatar/8fba157ffdfac008efc2b5257e1d33bf?s=130&d=mm&r=g",
        "company": null,
        "active": 1,
        "status": "Active",
        "address1": null,
        "address2": null,
        "city": null,
        "state": null,
        "postcode": null,
        "country_code": null,
        "country_name": "United States",
        "locale": null,
        "timezone": 0,
        "last_login": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/users

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

username   string     

The username for the user. Must be unique. Example: johndoe

firstname   string     

The user's first name. Must not be greater than 255 characters. Example: John

lastname   string     

The user's last name. Must not be greater than 255 characters. Example: Doe

email   string     

The user's email address. Must be unique. Must be a valid email address. Example: [email protected]

password   string     

The user's password (minimum 6 characters). Must be at least 6 characters. Example: secret123

password_confirmation   string     

Confirmation of the password. Must match the password field. Must be at least 6 characters. Example: secret123

role   integer  optional    

The role ID to assign to the user. Must match an existing stored value. Must not be one of 1. Example: 2

active   integer  optional    

User account status. Allowed values: 1 (active), 0 (inactive), -1 (banned). Example: 1

Must be one of:
  • 0
  • 1
  • -1
company   string  optional    

The company name associated with the user. Must not be greater than 255 characters. Example: Acme Inc.

date_of_birth   string  optional    

The user's date of birth in YYYY-MM-DD format. Must be a valid date. Must be a valid date in the format Y-m-d. Example: 1990-05-15

address1   string  optional    

The first line of the user's street address. Example: 123 Main Street

address2   string  optional    

The second line of the user's street address (optional). Example: Apt 4B

city   string  optional    

The city where the user resides. Example: New York

state   string  optional    

The state or province of the user's address. Example: NY

postcode   string  optional    

The postal code or ZIP code of the user's address. Example: 10001

country_code   string  optional    

The ISO 3166-1 alpha-2 country code for the user's country. Must exist in the countries table. Must match an existing stored value. Example: US

locale   string  optional    

The user's preferred locale/language code. Example: en

timezone   string  optional    

The user's timezone identifier. Must be a valid timezone. Must be a valid time zone, such as Africa/Accra. Must not be one of America/Coyhaique. Example: America/New_York

Update User

requires authentication

Updates the specified user with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/users/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"username\": \"johndoe\",
    \"firstname\": \"John\",
    \"lastname\": \"Doe\",
    \"email\": \"[email protected]\",
    \"password\": \"secret123\",
    \"password_confirmation\": \"secret123\",
    \"role\": 2,
    \"active\": 1,
    \"company\": \"Acme Inc.\",
    \"date_of_birth\": \"1990-05-15\",
    \"address1\": \"123 Main Street\",
    \"address2\": \"Apt 4B\",
    \"city\": \"New York\",
    \"state\": \"NY\",
    \"postcode\": \"10001\",
    \"country_code\": \"US\",
    \"locale\": \"en\",
    \"timezone\": \"America\\/New_York\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/users/1'
payload = {
    "username": "johndoe",
    "firstname": "John",
    "lastname": "Doe",
    "email": "[email protected]",
    "password": "secret123",
    "password_confirmation": "secret123",
    "role": 2,
    "active": 1,
    "company": "Acme Inc.",
    "date_of_birth": "1990-05-15",
    "address1": "123 Main Street",
    "address2": "Apt 4B",
    "city": "New York",
    "state": "NY",
    "postcode": "10001",
    "country_code": "US",
    "locale": "en",
    "timezone": "America\/New_York"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/users/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'username' => 'johndoe',
            'firstname' => 'John',
            'lastname' => 'Doe',
            'email' => '[email protected]',
            'password' => 'secret123',
            'password_confirmation' => 'secret123',
            'role' => 2,
            'active' => 1,
            'company' => 'Acme Inc.',
            'date_of_birth' => '1990-05-15',
            'address1' => '123 Main Street',
            'address2' => 'Apt 4B',
            'city' => 'New York',
            'state' => 'NY',
            'postcode' => '10001',
            'country_code' => 'US',
            'locale' => 'en',
            'timezone' => 'America/New_York',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 8906,
        "username": "hattie80",
        "email": "[email protected]",
        "name": "Boris Donnelly",
        "firstname": "Boris",
        "lastname": "Donnelly",
        "gender": "0",
        "avatar": "//www.gravatar.com/avatar/3bba7fd45a05b4d302746f2170f0faf9?s=30&d=mm&r=g",
        "large_avatar": "//www.gravatar.com/avatar/3bba7fd45a05b4d302746f2170f0faf9?s=130&d=mm&r=g",
        "company": null,
        "active": 1,
        "status": "Active",
        "address1": null,
        "address2": null,
        "city": null,
        "state": null,
        "postcode": null,
        "country_code": null,
        "country_name": "United States",
        "locale": null,
        "timezone": 0,
        "last_login": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/users/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the user. Example: 1

Body Parameters

username   string  optional    

The username for the user. Must be unique. Example: johndoe

firstname   string  optional    

The user's first name. Must not be greater than 255 characters. Example: John

lastname   string  optional    

The user's last name. Must not be greater than 255 characters. Example: Doe

email   string  optional    

The user's email address. Must be unique. Must be a valid email address. Example: [email protected]

password   string  optional    

The user's password (minimum 6 characters). Must be at least 6 characters. Example: secret123

password_confirmation   string  optional    

Confirmation of the password. Must match the password field. This field is required when password is present. Must be at least 6 characters. Example: secret123

role   integer  optional    

The role ID to assign to the user. Must match an existing stored value. Must not be one of 1. Example: 2

active   integer  optional    

User account status. Allowed values: 1 (active), 0 (inactive), -1 (suspended). Example: 1

Must be one of:
  • 0
  • 1
  • -1
company   string  optional    

The company name associated with the user. Must not be greater than 255 characters. Example: Acme Inc.

date_of_birth   string  optional    

The user's date of birth in YYYY-MM-DD format. Must be a valid date. Must be a valid date in the format Y-m-d. Example: 1990-05-15

address1   string  optional    

The first line of the user's street address. Example: 123 Main Street

address2   string  optional    

The second line of the user's street address (optional). Example: Apt 4B

city   string  optional    

The city where the user resides. Example: New York

state   string  optional    

The state or province of the user's address. Example: NY

postcode   string  optional    

The postal code or ZIP code of the user's address. Example: 10001

country_code   string  optional    

The ISO 3166-1 alpha-2 country code for the user's country. Must exist in the countries table. Must match an existing stored value. Example: US

locale   string  optional    

The user's preferred locale/language code. Example: en

timezone   string  optional    

The user's timezone identifier. Must be a valid timezone. Must be a valid time zone, such as Africa/Accra. Must not be one of America/Coyhaique. Example: America/New_York

User bandwidth

requires authentication

Returns an array of bandwidth usage values for a specified period of time.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/users/1/bandwidth" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"start_date\": \"2025-09-22 00:00:00\",
    \"end_date\": \"2025-09-22 23:59:59\",
    \"device_ids\": [
        11
    ],
    \"device_selection\": \"all\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/users/1/bandwidth'
payload = {
    "start_date": "2025-09-22 00:00:00",
    "end_date": "2025-09-22 23:59:59",
    "device_ids": [
        11
    ],
    "device_selection": "all"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/users/1/bandwidth';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'start_date' => '2025-09-22 00:00:00',
            'end_date' => '2025-09-22 23:59:59',
            'device_ids' => [
                11,
            ],
            'device_selection' => 'all',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "BW_TOTAL": "79.67 GB",
        "BW_IN": "41.30 GB",
        "BW_OUT": "38.37 GB",
        "95TH_PERC": "1.32 MBps",
        "95TH_PERC_IN": "0.68 MBps",
        "95TH_PERC_OUT": "0.64 MBps"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/users/{id}/bandwidth

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the user. Example: 1

Body Parameters

start_date   string     

The start date and time for the bandwidth report. Must be a valid date. Example: 2025-09-22 00:00:00

end_date   string     

The end date and time for the bandwidth report. Must be a valid date. Example: 2025-09-22 23:59:59

device_ids   integer[]  optional    
device_selection   string  optional    

Optional predefined device selection for the user. Allowed values: all, server, order. This field is required when device_ids is not present. Example: all

Must be one of:
  • all
  • server
  • order

Delete User

requires authentication

Removes the specified user from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/users/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/users/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/users/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/users/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the user. Example: 5

Authentication

Verify API token and check if it has the given ability.

requires authentication

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/users/verify-token-ability" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"ability\": \"impersonate-users\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/users/verify-token-ability'
payload = {
    "ability": "impersonate-users"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/users/verify-token-ability';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'ability' => 'impersonate-users',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "abilities": [
            "impersonate-users"
        ],
        "valid": true
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/users/verify-token-ability

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

ability   string     

The ability (permission) name to verify for the current token. Must not be greater than 128 characters. Example: impersonate-users

Ports

List Network Ports

requires authentication

Returns a paginated list of ports.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ports?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ports'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ports';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 9702,
            "name": null,
            "description": "Iure qui corporis dolor cupiditate rerum.",
            "item_id": 2113,
            "colocation_id": 0,
            "connected_item": null,
            "connected_port": null,
            "port_number": 21,
            "port_index": 19,
            "port_mode": "access",
            "port_label": "sit",
            "user_label": "quia",
            "speed": "10000",
            "high_speed": "10000",
            "if_type": "212",
            "physaddress": "92:7C:C9:A1:6D:DA",
            "pullable": 1,
            "primary": 0,
            "vlan": 0,
            "vlans": [],
            "opstate": "up",
            "adminstate": "down",
            "type": "",
            "ifInUcastPkts": 1971,
            "ifOutUcastPkts": 3295,
            "ifInErrors": 0,
            "ifOutErrors": 0,
            "ifInOctets": 0,
            "ifOutOctets": 0,
            "poll_time": 2026,
            "poll_period": 300,
            "current_in_bps": null,
            "current_out_bps": null,
            "current_total_bps": null,
            "current_usage_percent": null,
            "rate_valid": false,
            "created_at": "2026-09-04 09:47:24",
            "updated_at": "2026-09-04 09:47:24"
        },
        {
            "id": 9703,
            "name": null,
            "description": "Dolore ea qui quaerat molestias.",
            "item_id": 2114,
            "colocation_id": 0,
            "connected_item": null,
            "connected_port": null,
            "port_number": 18,
            "port_index": 90,
            "port_mode": "access",
            "port_label": "velit",
            "user_label": "explicabo",
            "speed": "100",
            "high_speed": "1000",
            "if_type": "145",
            "physaddress": "E4:4E:94:12:F2:82",
            "pullable": 1,
            "primary": 0,
            "vlan": 0,
            "vlans": [],
            "opstate": "up",
            "adminstate": "up",
            "type": "",
            "ifInUcastPkts": 7072,
            "ifOutUcastPkts": 6856,
            "ifInErrors": 0,
            "ifOutErrors": 0,
            "ifInOctets": 0,
            "ifOutOctets": 0,
            "poll_time": 2026,
            "poll_period": 300,
            "current_in_bps": null,
            "current_out_bps": null,
            "current_total_bps": null,
            "current_usage_percent": null,
            "rate_valid": false,
            "created_at": "2026-09-04 09:47:26",
            "updated_at": "2026-09-04 09:47:26"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ports?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/ports",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ports

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, item_id, colocation_id, port_number, port_index, name, port_label, description. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, item_id, colocation_id, port_number, port_index, name, port_label, description. Example: id

Show port

requires authentication

Display detailed information about a single port by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ports/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ports/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ports/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 9704,
        "name": null,
        "description": "Adipisci quo ipsam placeat ducimus nobis.",
        "item": null,
        "colocation": null,
        "connected_item": null,
        "connected_port": null,
        "port_number": 2,
        "port_index": 73,
        "port_mode": "access",
        "port_label": "perferendis",
        "user_label": "doloremque",
        "speed": "10000",
        "high_speed": "10000",
        "if_type": "123",
        "physaddress": "53:29:95:53:A1:75",
        "pullable": 0,
        "primary": 1,
        "vlan": 0,
        "vlans": [],
        "opstate": "down",
        "adminstate": "down",
        "type": "",
        "ifInUcastPkts": 8062,
        "ifOutUcastPkts": 8298,
        "ifInErrors": 0,
        "ifOutErrors": 0,
        "ifInOctets": 0,
        "ifOutOctets": 0,
        "poll_time": 2026,
        "poll_period": 300,
        "current_in_bps": null,
        "current_out_bps": null,
        "current_total_bps": null,
        "current_usage_percent": null,
        "rate_valid": false,
        "created_at": "2026-09-04 09:47:29",
        "updated_at": "2026-09-04 09:47:29"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ports/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the port. Example: 1

Create Port

requires authentication

Store a new port in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ports" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"port_number\": 1,
    \"device_id\": 115,
    \"port_label\": 32,
    \"if_type\": 1,
    \"pullable\": true,
    \"description\": \"This is description of the port\",
    \"user_label\": \"Uplink port\",
    \"physaddress\": \"00:0a:95:9d:68:16\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ports'
payload = {
    "port_number": 1,
    "device_id": 115,
    "port_label": 32,
    "if_type": 1,
    "pullable": true,
    "description": "This is description of the port",
    "user_label": "Uplink port",
    "physaddress": "00:0a:95:9d:68:16"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ports';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'port_number' => 1,
            'device_id' => 115,
            'port_label' => 32,
            'if_type' => 1,
            'pullable' => true,
            'description' => 'This is description of the port',
            'user_label' => 'Uplink port',
            'physaddress' => '00:0a:95:9d:68:16',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 9705,
        "name": null,
        "description": "Perferendis non aut rerum rerum unde.",
        "item": {
            "id": 2116,
            "name": null,
            "label": "reprehenderit",
            "type_id": 2956,
            "location_id": 4825,
            "status": "available",
            "description": "Quas et soluta qui est consequuntur.",
            "is_part": false,
            "mountable": true,
            "manufacturer": "Sanford Group",
            "position": null,
            "size": 9,
            "image": null,
            "data_ports": 0,
            "serialnumber1": "SN901XC",
            "serialnumber2": null,
            "service_tag": "ST990PU",
            "comments": null,
            "notes": null,
            "purchase_date": "2025-09-04",
            "warranty_months": 24,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": 0,
            "appdata": false,
            "fields_data": null,
            "parts_data": null,
            "created_at": "2026-09-04T07:47:29.000000Z",
            "updated_at": "2026-09-04T07:47:29.000000Z"
        },
        "colocation": null,
        "connected_item": null,
        "connected_port": null,
        "port_number": 33,
        "port_index": 31,
        "port_mode": "access",
        "port_label": "earum",
        "user_label": "tempore",
        "speed": "100",
        "high_speed": "1000",
        "if_type": "129",
        "physaddress": "AD:6B:69:DE:8D:12",
        "pullable": 0,
        "primary": 1,
        "vlan": 0,
        "vlans": [],
        "opstate": "down",
        "adminstate": "down",
        "type": "",
        "ifInUcastPkts": 583,
        "ifOutUcastPkts": 6368,
        "ifInErrors": 0,
        "ifOutErrors": 0,
        "ifInOctets": 0,
        "ifOutOctets": 0,
        "poll_time": 2026,
        "poll_period": 300,
        "current_in_bps": null,
        "current_out_bps": null,
        "current_total_bps": null,
        "current_usage_percent": null,
        "rate_valid": false,
        "created_at": "2026-09-04 09:47:32",
        "updated_at": "2026-09-04 09:47:32"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ports

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

port_number   integer     

The number of the port. Must be at least 1. Example: 1

device_id   integer     

Device Id for which port should be created. Must match an existing stored value. Example: 115

port_label   string  optional    

The label of the port. Must not be greater than 255 characters. Example: 32

if_type   integer  optional    

Type of the port. Port types: 1 => other, 2 => regular1822, 3 => hdh1822, 4 => ddnX25, 5 => rfc877x25, 6 => ethernetCsmacd, 7 => iso88023Csmacd, 8 => iso88024TokenBus, 9 => iso88025TokenRing, 10 => iso88026Man, 11 => starLan, 12 => proteon10Mbit, 13 => proteon80Mbit, 14 => hyperchannel, 15 => fddi, 16 => lapb, 17 => sdlc, 18 => ds1, 19 => e1, 20 => basicISDN, 21 => primaryISDN, 22 => propPointToPointSerial, 23 => ppp, 24 => softwareLoopback, 25 => eon, 26 => ethernet3Mbit, 27 => nsip, 28 => slip, 29 => ultra, 30 => ds3, 31 => sip, 32 => frameRelay, 33 => rs232, 34 => para, 35 => arcnet, 36 => arcnetPlus, 37 => atm, 38 => miox25, 39 => sonet, 40 => x25ple, 41 => iso88022llc, 42 => localTalk, 43 => smdsDxi, 44 => frameRelayService, 45 => v35, 46 => hssi, 47 => hippi, 48 => modem, 49 => aal5, 50 => sonetPath, 51 => sonetVT, 52 => smdsIcip, 53 => propVirtual, 54 => propMultiplexor, 55 => ieee80212, 56 => fibreChannel, 57 => hippiInterface, 58 => frameRelayInterconnect, 59 => aflane8023, 60 => aflane8025, 61 => cctEmul, 62 => fastEther, 63 => isdn, 64 => v11, 65 => v36, 66 => g703at64k, 67 => g703at2mb, 68 => qllc, 69 => fastEtherFX, 70 => channel, 71 => ieee80211, 72 => ibm370parChan, 73 => escon, 74 => dlsw, 75 => isdns, 76 => isdnu, 77 => lapd, 78 => ipSwitch, 79 => rsrb, 80 => atmLogical, 81 => ds0, 82 => ds0Bundle, 83 => bsc, 84 => async, 85 => cnr, 86 => iso88025Dtr, 87 => eplrs, 88 => arap, 89 => propCnls, 90 => hostPad, 91 => termPad, 92 => frameRelayMPI, 93 => x213, 94 => adsl, 95 => radsl, 96 => sdsl, 97 => vdsl, 98 => iso88025CRFPInt, 99 => myrinet, 100 => voiceEM, 101 => voiceFXO, 102 => voiceFXS, 103 => voiceEncap, 104 => voiceOverIp, 105 => atmDxi, 106 => atmFuni, 107 => atmIma, 108 => pppMultilinkBundle, 109 => ipOverCdlc, 110 => ipOverClaw, 111 => stackToStack, 112 => virtualIpAddress, 113 => mpc, 114 => ipOverAtm, 115 => iso88025Fiber, 116 => tdlc, 117 => gigabitEthernet, 118 => hdlc, 119 => lapf, 120 => v37, 121 => x25mlp, 122 => x25huntGroup, 123 => trasnpHdlc, 124 => interleave, 125 => fast, 126 => ip, 127 => docsCableMaclayer, 128 => docsCableDownstream, 129 => docsCableUpstream, 130 => a12MppSwitch, 131 => tunnel, 132 => coffee, 133 => ces, 134 => atmSubInterface, 135 => l2vlan, 136 => l3ipvlan, 137 => l3ipxvlan, 138 => digitalPowerline, 139 => mediaMailOverIp, 140 => dtm, 141 => dcn, 142 => ipForward, 143 => msdsl, 144 => ieee1394, 145 => if-gsn, 146 => dvbRccMacLayer, 147 => dvbRccDownstream, 148 => dvbRccUpstream, 149 => atmVirtual, 150 => mplsTunnel, 151 => srp, 152 => voiceOverAtm, 153 => voiceOverFrameRelay, 154 => idsl, 155 => compositeLink, 156 => ss7SigLink, 157 => propWirelessP2P, 158 => frForward, 159 => rfc1483, 160 => usb, 161 => ieee8023adLag, 162 => bgppolicyaccounting, 163 => frf16MfrBundle, 164 => h323Gatekeeper, 165 => h323Proxy, 166 => mpls, 167 => mfSigLink, 168 => hdsl2, 169 => shdsl, 170 => ds1FDL, 171 => pos, 172 => dvbAsiIn, 173 => dvbAsiOut, 174 => plc, 175 => nfas, 176 => tr008, 177 => gr303RDT, 178 => gr303IDT, 179 => isup, 180 => propDocsWirelessMaclayer, 181 => propDocsWirelessDownstream, 182 => propDocsWirelessUpstream, 183 => hiperlan2, 184 => propBWAp2Mp, 185 => sonetOverheadChannel, 186 => digitalWrapperOverheadChannel, 187 => aal2, 188 => radioMAC, 189 => atmRadio, 190 => imt, 191 => mvl, 192 => reachDSL, 193 => frDlciEndPt, 194 => atmVciEndPt, 195 => opticalChannel, 196 => opticalTransport, 197 => propAtm, 198 => voiceOverCable, 199 => infiniband, 200 => teLink, 201 => q2931, 202 => virtualTg, 203 => sipTg, 204 => sipSig, 205 => docsCableUpstreamChannel, 206 => econet, 207 => pon155, 208 => pon622, 209 => bridge, 210 => linegroup, 211 => voiceEMFGD, 212 => voiceFGDEANA, 213 => voiceDID, 214 => mpegTransport, 215 => sixToFour, 216 => gtp, 217 => pdnEtherLoop1, 218 => pdnEtherLoop2, 219 => opticalChannelGroup, 220 => homepna, 221 => gfp, 222 => ciscoISLvlan, 223 => actelisMetaLOOP, 224 => fcipLink, 225 => rpr, 226 => qam, 227 => lmp, 228 => cblVectaStar, 229 => docsCableMCmtsDownstream, 230 => adsl2, 231 => macSecControlledIF, 232 => macSecUncontrolledIF, 233 => aviciOpticalEther, 234 => atmbond. Example: 1

Must be one of:
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
pullable   boolean  optional    

Determine if the port is pullable. Example: true

description   string  optional    

The description of the port. Example: This is description of the port

user_label   string  optional    

The user label of the port. Example: Uplink port

physaddress   string  optional    

The physical address of the port. Example: 00:0a:95:9d:68:16

Update Port

requires authentication

Updates the specified port with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/ports/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"port_number\": 1,
    \"port_label\": 32,
    \"if_type\": 1,
    \"pullable\": true,
    \"description\": \"This is description of the port\",
    \"user_label\": \"Uplink port\",
    \"physaddress\": \"00:0a:95:9d:68:16\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ports/1'
payload = {
    "port_number": 1,
    "port_label": 32,
    "if_type": 1,
    "pullable": true,
    "description": "This is description of the port",
    "user_label": "Uplink port",
    "physaddress": "00:0a:95:9d:68:16"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ports/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'port_number' => 1,
            'port_label' => 32,
            'if_type' => 1,
            'pullable' => true,
            'description' => 'This is description of the port',
            'user_label' => 'Uplink port',
            'physaddress' => '00:0a:95:9d:68:16',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 9706,
        "name": null,
        "description": "Autem sit fuga vero labore praesentium iure laudantium.",
        "item": {
            "id": 2117,
            "name": null,
            "label": "odio",
            "type_id": 2958,
            "location_id": 4827,
            "status": "available",
            "description": "Magnam voluptatem sed ipsam consectetur nulla.",
            "is_part": false,
            "mountable": true,
            "manufacturer": "Jast-Hyatt",
            "position": null,
            "size": 2,
            "image": null,
            "data_ports": 0,
            "serialnumber1": "SN791CM",
            "serialnumber2": null,
            "service_tag": "ST269TN",
            "comments": null,
            "notes": null,
            "purchase_date": "2025-09-04",
            "warranty_months": 24,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": 0,
            "appdata": false,
            "fields_data": null,
            "parts_data": null,
            "created_at": "2026-09-04T07:47:32.000000Z",
            "updated_at": "2026-09-04T07:47:32.000000Z"
        },
        "colocation": null,
        "connected_item": null,
        "connected_port": null,
        "port_number": 1,
        "port_index": 93,
        "port_mode": "access",
        "port_label": "voluptatem",
        "user_label": "quos",
        "speed": "100",
        "high_speed": "100",
        "if_type": "206",
        "physaddress": "09:ED:61:B9:98:A2",
        "pullable": 0,
        "primary": 1,
        "vlan": 0,
        "vlans": [],
        "opstate": "up",
        "adminstate": "up",
        "type": "",
        "ifInUcastPkts": 4097,
        "ifOutUcastPkts": 309,
        "ifInErrors": 0,
        "ifOutErrors": 0,
        "ifInOctets": 0,
        "ifOutOctets": 0,
        "poll_time": 2026,
        "poll_period": 300,
        "current_in_bps": null,
        "current_out_bps": null,
        "current_total_bps": null,
        "current_usage_percent": null,
        "rate_valid": false,
        "created_at": "2026-09-04 09:47:34",
        "updated_at": "2026-09-04 09:47:34"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/ports/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the port. Example: 1

Body Parameters

port_number   integer     

The number of the port. Must be at least 1. Example: 1

port_label   string  optional    

The label of the port. Must not be greater than 255 characters. Example: 32

if_type   integer  optional    

Type of the port. Port types: 1 => other, 2 => regular1822, 3 => hdh1822, 4 => ddnX25, 5 => rfc877x25, 6 => ethernetCsmacd, 7 => iso88023Csmacd, 8 => iso88024TokenBus, 9 => iso88025TokenRing, 10 => iso88026Man, 11 => starLan, 12 => proteon10Mbit, 13 => proteon80Mbit, 14 => hyperchannel, 15 => fddi, 16 => lapb, 17 => sdlc, 18 => ds1, 19 => e1, 20 => basicISDN, 21 => primaryISDN, 22 => propPointToPointSerial, 23 => ppp, 24 => softwareLoopback, 25 => eon, 26 => ethernet3Mbit, 27 => nsip, 28 => slip, 29 => ultra, 30 => ds3, 31 => sip, 32 => frameRelay, 33 => rs232, 34 => para, 35 => arcnet, 36 => arcnetPlus, 37 => atm, 38 => miox25, 39 => sonet, 40 => x25ple, 41 => iso88022llc, 42 => localTalk, 43 => smdsDxi, 44 => frameRelayService, 45 => v35, 46 => hssi, 47 => hippi, 48 => modem, 49 => aal5, 50 => sonetPath, 51 => sonetVT, 52 => smdsIcip, 53 => propVirtual, 54 => propMultiplexor, 55 => ieee80212, 56 => fibreChannel, 57 => hippiInterface, 58 => frameRelayInterconnect, 59 => aflane8023, 60 => aflane8025, 61 => cctEmul, 62 => fastEther, 63 => isdn, 64 => v11, 65 => v36, 66 => g703at64k, 67 => g703at2mb, 68 => qllc, 69 => fastEtherFX, 70 => channel, 71 => ieee80211, 72 => ibm370parChan, 73 => escon, 74 => dlsw, 75 => isdns, 76 => isdnu, 77 => lapd, 78 => ipSwitch, 79 => rsrb, 80 => atmLogical, 81 => ds0, 82 => ds0Bundle, 83 => bsc, 84 => async, 85 => cnr, 86 => iso88025Dtr, 87 => eplrs, 88 => arap, 89 => propCnls, 90 => hostPad, 91 => termPad, 92 => frameRelayMPI, 93 => x213, 94 => adsl, 95 => radsl, 96 => sdsl, 97 => vdsl, 98 => iso88025CRFPInt, 99 => myrinet, 100 => voiceEM, 101 => voiceFXO, 102 => voiceFXS, 103 => voiceEncap, 104 => voiceOverIp, 105 => atmDxi, 106 => atmFuni, 107 => atmIma, 108 => pppMultilinkBundle, 109 => ipOverCdlc, 110 => ipOverClaw, 111 => stackToStack, 112 => virtualIpAddress, 113 => mpc, 114 => ipOverAtm, 115 => iso88025Fiber, 116 => tdlc, 117 => gigabitEthernet, 118 => hdlc, 119 => lapf, 120 => v37, 121 => x25mlp, 122 => x25huntGroup, 123 => trasnpHdlc, 124 => interleave, 125 => fast, 126 => ip, 127 => docsCableMaclayer, 128 => docsCableDownstream, 129 => docsCableUpstream, 130 => a12MppSwitch, 131 => tunnel, 132 => coffee, 133 => ces, 134 => atmSubInterface, 135 => l2vlan, 136 => l3ipvlan, 137 => l3ipxvlan, 138 => digitalPowerline, 139 => mediaMailOverIp, 140 => dtm, 141 => dcn, 142 => ipForward, 143 => msdsl, 144 => ieee1394, 145 => if-gsn, 146 => dvbRccMacLayer, 147 => dvbRccDownstream, 148 => dvbRccUpstream, 149 => atmVirtual, 150 => mplsTunnel, 151 => srp, 152 => voiceOverAtm, 153 => voiceOverFrameRelay, 154 => idsl, 155 => compositeLink, 156 => ss7SigLink, 157 => propWirelessP2P, 158 => frForward, 159 => rfc1483, 160 => usb, 161 => ieee8023adLag, 162 => bgppolicyaccounting, 163 => frf16MfrBundle, 164 => h323Gatekeeper, 165 => h323Proxy, 166 => mpls, 167 => mfSigLink, 168 => hdsl2, 169 => shdsl, 170 => ds1FDL, 171 => pos, 172 => dvbAsiIn, 173 => dvbAsiOut, 174 => plc, 175 => nfas, 176 => tr008, 177 => gr303RDT, 178 => gr303IDT, 179 => isup, 180 => propDocsWirelessMaclayer, 181 => propDocsWirelessDownstream, 182 => propDocsWirelessUpstream, 183 => hiperlan2, 184 => propBWAp2Mp, 185 => sonetOverheadChannel, 186 => digitalWrapperOverheadChannel, 187 => aal2, 188 => radioMAC, 189 => atmRadio, 190 => imt, 191 => mvl, 192 => reachDSL, 193 => frDlciEndPt, 194 => atmVciEndPt, 195 => opticalChannel, 196 => opticalTransport, 197 => propAtm, 198 => voiceOverCable, 199 => infiniband, 200 => teLink, 201 => q2931, 202 => virtualTg, 203 => sipTg, 204 => sipSig, 205 => docsCableUpstreamChannel, 206 => econet, 207 => pon155, 208 => pon622, 209 => bridge, 210 => linegroup, 211 => voiceEMFGD, 212 => voiceFGDEANA, 213 => voiceDID, 214 => mpegTransport, 215 => sixToFour, 216 => gtp, 217 => pdnEtherLoop1, 218 => pdnEtherLoop2, 219 => opticalChannelGroup, 220 => homepna, 221 => gfp, 222 => ciscoISLvlan, 223 => actelisMetaLOOP, 224 => fcipLink, 225 => rpr, 226 => qam, 227 => lmp, 228 => cblVectaStar, 229 => docsCableMCmtsDownstream, 230 => adsl2, 231 => macSecControlledIF, 232 => macSecUncontrolledIF, 233 => aviciOpticalEther, 234 => atmbond. Example: 1

Must be one of:
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
pullable   boolean  optional    

Determine if the port is pullable. Example: true

description   string  optional    

The description of the port. Example: This is description of the port

user_label   string  optional    

The user label of the port. Example: Uplink port

physaddress   string  optional    

The physical address of the port. Example: 00:0a:95:9d:68:16

Assign port

requires authentication

Assign network port to another port

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ports/1/assign" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"connected_item\": 12,
    \"connected_port\": 115
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ports/1/assign'
payload = {
    "connected_item": 12,
    "connected_port": 115
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ports/1/assign';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'connected_item' => 12,
            'connected_port' => 115,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 9707,
        "name": null,
        "description": "Ipsam itaque deserunt voluptatem exercitationem ut eius dolorum.",
        "item": {
            "id": 2118,
            "name": null,
            "label": "fugit",
            "type_id": 2960,
            "location_id": 4829,
            "status": "available",
            "description": "Id voluptas fugiat nemo accusantium autem est.",
            "is_part": false,
            "mountable": true,
            "manufacturer": "Friesen-Brekke",
            "position": null,
            "size": 9,
            "image": null,
            "data_ports": 0,
            "serialnumber1": "SN832UT",
            "serialnumber2": null,
            "service_tag": "ST712KG",
            "comments": null,
            "notes": null,
            "purchase_date": "2025-09-04",
            "warranty_months": 24,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": 0,
            "appdata": false,
            "fields_data": null,
            "parts_data": null,
            "created_at": "2026-09-04T07:47:34.000000Z",
            "updated_at": "2026-09-04T07:47:34.000000Z"
        },
        "colocation": null,
        "connected_item": null,
        "connected_port": null,
        "port_number": 33,
        "port_index": 53,
        "port_mode": "trunk",
        "port_label": "nisi",
        "user_label": "porro",
        "speed": "100",
        "high_speed": "100",
        "if_type": "53",
        "physaddress": "ED:99:1E:9D:E1:44",
        "pullable": 0,
        "primary": 0,
        "vlan": 0,
        "vlans": [],
        "opstate": "up",
        "adminstate": "down",
        "type": "",
        "ifInUcastPkts": 6301,
        "ifOutUcastPkts": 3102,
        "ifInErrors": 0,
        "ifOutErrors": 0,
        "ifInOctets": 0,
        "ifOutOctets": 0,
        "poll_time": 2026,
        "poll_period": 300,
        "current_in_bps": null,
        "current_out_bps": null,
        "current_total_bps": null,
        "current_usage_percent": null,
        "rate_valid": false,
        "created_at": "2026-09-04 09:47:37",
        "updated_at": "2026-09-04 09:47:37"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ports/{id}/assign

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the port. Example: 1

Body Parameters

connected_item   integer     

Item id of connected item. Must match an existing stored value. Example: 12

connected_port   integer     

Port Id of connected port. Must match an existing stored value. Example: 115

Unassign port

requires authentication

Unassign network port

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ports/1/unassign" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ports/1/unassign'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ports/1/unassign';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 9708,
        "name": null,
        "description": "Optio inventore voluptatem ullam aliquam blanditiis hic.",
        "item": null,
        "colocation": null,
        "connected_item": null,
        "connected_port": null,
        "port_number": 7,
        "port_index": 14,
        "port_mode": "access",
        "port_label": "sunt",
        "user_label": "quis",
        "speed": "1000",
        "high_speed": "100",
        "if_type": "68",
        "physaddress": "F7:88:63:12:2E:31",
        "pullable": 1,
        "primary": 0,
        "vlan": 0,
        "vlans": [],
        "opstate": "down",
        "adminstate": "down",
        "type": "",
        "ifInUcastPkts": 1966,
        "ifOutUcastPkts": 328,
        "ifInErrors": 0,
        "ifOutErrors": 0,
        "ifInOctets": 0,
        "ifOutOctets": 0,
        "poll_time": 2026,
        "poll_period": 300,
        "current_in_bps": null,
        "current_out_bps": null,
        "current_total_bps": null,
        "current_usage_percent": null,
        "rate_valid": false,
        "created_at": "2026-09-04 09:47:39",
        "updated_at": "2026-09-04 09:47:39"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ports/{id}/unassign

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the port. Example: 1

Enable port

requires authentication

Enable port with given id.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ports/1/enable" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ports/1/enable'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ports/1/enable';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ports/{id}/enable

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the port. Example: 1

Disable port

requires authentication

Disable port with given id.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ports/1/disable" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ports/1/disable'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ports/1/disable';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ports/{id}/disable

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the port. Example: 1

Delete Port

requires authentication

Removes the specified port from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/ports/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ports/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ports/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/ports/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the port. Example: 5

Orders

List orders

requires authentication

Returns a paginated list of orders

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/orders?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 924,
            "ordernumber": 662366,
            "user_id": 8928,
            "status": "accepted",
            "service_status": "terminated",
            "type": "Colocation",
            "options": {
                "autostart": true
            },
            "service": null,
            "created_at": "2026-09-04 09:47:39",
            "updated_at": "2026-09-04 09:47:39"
        },
        {
            "id": 925,
            "ordernumber": 40963,
            "user_id": 8929,
            "status": "pending",
            "service_status": "activated",
            "type": "Colocation",
            "options": {
                "autostart": true
            },
            "service": null,
            "created_at": "2026-09-04 09:47:40",
            "updated_at": "2026-09-04 09:47:40"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/orders?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/orders",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/orders

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, ordernumber, status, service_status, type, user_id. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, ordernumber, status, service_status, type, user_id. Example: id

Show order

requires authentication

Display detailed information about a single order by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/orders/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 926,
        "ordernumber": 100899,
        "user_id": 8930,
        "status": "accepted",
        "service_status": "terminated",
        "type": "Colocation",
        "options": {
            "autostart": true
        },
        "service": null,
        "created_at": "2026-09-04 09:47:40",
        "updated_at": "2026-09-04 09:47:40"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/orders/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the order. Example: 1

Create order

requires authentication

Creates a new order in the system based on the given module, client, and criteria.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/orders" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"module\": \"Server\",
    \"client\": 1,
    \"auto_accept\": true
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders'
payload = {
    "module": "Server",
    "client": 1,
    "auto_accept": true
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'module' => 'Server',
            'client' => 1,
            'auto_accept' => true,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 927,
        "ordernumber": 26004,
        "user_id": 8931,
        "status": "pending",
        "service_status": "provisioning",
        "type": "Server",
        "options": {
            "autostart": true
        },
        "service": null,
        "created_at": "2026-09-04 09:47:40",
        "updated_at": "2026-09-04 09:47:40"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/orders

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

module   string     

The provisioning module to use for the order. Allowed values: Server, Colocation. Example: Server

Must be one of:
  • Server
  • Colocation
client   integer     

The ID of the client creating the order. Must match an existing stored value. Example: 1

auto_accept   boolean  optional    

When true, the order is automatically accepted and the service is provisioned immediately after creation. Example: true

criteria   string[]  optional    
location   integer  optional    

ID of the location the device must be assigned to. Must match an existing stored value. Example: 1

require_pdu   boolean  optional    

When true, only devices with a PDU connection are matched. Example: true

require_switch   boolean  optional    

When true, only devices with a switch connection are matched. Example: true

parts   object  optional    

Part requirements keyed by component type ID. Each entry is an array of requirement sets (model IDs, metadata criteria). Multiple sets are treated as OR.

metadata   object  optional    

Metadata field requirements keyed by field ID. Each entry must contain a value key.

service   string[]  optional    
ssh_keys   integer[]  optional    

SSH key ID. Must match an existing stored value.

template   integer  optional    

ID of the OS template to install. Requires install_os in actions.activate to trigger actual installation. Must match an existing stored value. Example: 2

hostname   string  optional    

Hostname to assign to the provisioned server. Example: vps.local

username   string  optional    

OS login username. Example: user

password   string  optional    

OS login password. Stored encrypted. Example: pass

root_password   string  optional    

Root password for the OS. Stored encrypted. Example: rootpass

disk_addon   integer  optional    

ID of the disk layout addon to apply during OS installation. Must match an existing stored value. Example: 79

extras   integer[]  optional    

Addon ID. Must match an existing stored value.

additional_ips_mode   string  optional    

How additional_ips is interpreted. Allowed values: subnet_mask and individual. Defaults to subnet_mask when omitted. Example: subnet_mask

Must be one of:
  • subnet_mask
  • individual
additional_ips   string  optional    

CIDR mask in subnet_mask mode, or the exact number of addresses in individual mode. Example: /29

monthly_traffic_limit   integer  optional    

Total monthly traffic limit in GB (inbound + outbound combined). Managed by UsageCollector. Must be at least 0. Example: 100

monthly_traffic_limit_in   integer  optional    

Monthly inbound traffic limit in GB. Managed by UsageCollector. Must be at least 0. Example: 100

monthly_traffic_limit_out   integer  optional    

Monthly outbound traffic limit in GB. Managed by UsageCollector. Must be at least 0. Example: 100

monthly_traffic_percentile_limit   integer  optional    

Monthly 95th-percentile traffic limit in GB. Managed by UsageCollector. Must be at least 0. Example: 100

access_level   integer  optional    

ID of the service access level to assign to the provisioned service. Must match an existing stored value. Example: 1

other   string[]  optional    
custom_device   integer  optional    

Forces assignment to a specific device ID instead of automatic matching. Must match an existing stored value. Example: 171

actions   string[]  optional    
activate   string[]  optional    
suspend   string[]  optional    
unsuspend   string[]  optional    
terminate   string[]  optional    

Quick create & activate order

requires authentication

Creates a new order for a specific device and customer. The order is automatically accepted and the device assigned.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/orders/quick-create" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"module\": \"Server\",
    \"client\": 1,
    \"device_id\": 10
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/quick-create'
payload = {
    "module": "Server",
    "client": 1,
    "device_id": 10
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/quick-create';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'module' => 'Server',
            'client' => 1,
            'device_id' => 10,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 928,
        "ordernumber": 249862,
        "user_id": 8932,
        "status": "accepted",
        "service_status": "activated",
        "type": "Colocation",
        "options": {
            "autostart": true
        },
        "service": null,
        "created_at": "2026-09-04 09:47:40",
        "updated_at": "2026-09-04 09:47:40"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/orders/quick-create

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

module   string     

The provisioning module to use for the order. Allowed values: Server, Colocation. Example: Server

Must be one of:
  • Server
  • Colocation
client   integer     

The ID of the client creating the order. Must match an existing stored value. Example: 1

device_id   integer     

The ID of the device to assign to the order. The device must be available and not assigned to another customer. Must match an existing stored value. Example: 10

Update order

requires authentication

Update order details before it is accepted.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/orders/123" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"client\": 1
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/123'
payload = {
    "client": 1
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/123';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'client' => 1,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 929,
        "ordernumber": 141579,
        "user_id": 8933,
        "status": "accepted",
        "service_status": "activated",
        "type": "Server",
        "options": {
            "autostart": true
        },
        "service": null,
        "created_at": "2026-09-04 09:47:40",
        "updated_at": "2026-09-04 09:47:40"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/orders/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the order. Example: 123

Body Parameters

client   integer  optional    

The ID of the client assigned to the order. Must match an existing stored value. Example: 1

criteria   string[]  optional    
location   integer  optional    

ID of the location the device must be assigned to. Must match an existing stored value. Example: 1

require_pdu   boolean  optional    

When true, only devices with a PDU connection are matched. Example: true

require_switch   boolean  optional    

When true, only devices with a switch connection are matched. Example: true

parts   object  optional    

Part requirements keyed by component type ID. Each entry is an array of requirement sets (model IDs, metadata criteria). Multiple sets are treated as OR.

metadata   object  optional    

Metadata field requirements keyed by field ID. Each entry must contain a value key.

service   string[]  optional    
ssh_keys   integer[]  optional    

SSH key ID. Must match an existing stored value.

template   integer  optional    

ID of the OS template to install. Requires install_os in actions.activate to trigger actual installation. Must match an existing stored value. Example: 4

hostname   string  optional    

Hostname to assign to the provisioned server. Example: updated-vps.local

username   string  optional    

OS login username. Example: user

password   string  optional    

OS login password. Stored encrypted. Example: pass

root_password   string  optional    

Root password for the OS. Stored encrypted. Example: rootpass

disk_addon   integer  optional    

ID of the disk layout addon to apply during OS installation. Must match an existing stored value. Example: 79

extras   integer[]  optional    

Addon ID. Must match an existing stored value.

additional_ips_mode   string  optional    

How additional_ips is interpreted. Allowed values: subnet_mask and individual. Defaults to subnet_mask when omitted. Example: subnet_mask

Must be one of:
  • subnet_mask
  • individual
additional_ips   string  optional    

CIDR mask in subnet_mask mode, or the exact number of addresses in individual mode. Example: /29

monthly_traffic_limit   integer  optional    

Total monthly traffic limit in GB (inbound + outbound combined). Managed by UsageCollector. Must be at least 0. Example: 100

monthly_traffic_limit_in   integer  optional    

Monthly inbound traffic limit in GB. Managed by UsageCollector. Must be at least 0. Example: 100

monthly_traffic_limit_out   integer  optional    

Monthly outbound traffic limit in GB. Managed by UsageCollector. Must be at least 0. Example: 100

monthly_traffic_percentile_limit   integer  optional    

Monthly 95th-percentile traffic limit in GB. Managed by UsageCollector. Must be at least 0. Example: 100

access_level   integer  optional    

ID of the service access level to assign to the provisioned service. Must match an existing stored value. Example: 1

other   string[]  optional    
custom_device   integer  optional    

Forces assignment to a specific device ID instead of automatic matching. Must match an existing stored value. Example: 171

actions   string[]  optional    
activate   string[]  optional    
suspend   string[]  optional    
unsuspend   string[]  optional    
terminate   string[]  optional    

Delete order

requires authentication

Deletes an order by ID.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/orders/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/1';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/orders/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the order. Example: 1

Accept order

requires authentication

Accepts an order by ID and optionally activates the service if configured.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/orders/1/accept" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/1/accept'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/1/accept';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 930,
        "ordernumber": 556553,
        "user_id": 8934,
        "status": "accepted",
        "service_status": "provisioning",
        "type": "Server",
        "options": {
            "autostart": true
        },
        "service": null,
        "created_at": "2026-09-04 09:47:40",
        "updated_at": "2026-09-04 09:47:40"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/orders/{id}/accept

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the order. Example: 1

Activate service

requires authentication

Activates the service assigned to the specified order.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/orders/1/service/activate" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/1/service/activate'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/1/service/activate';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "order": {
            "id": 31,
            "ordernumber": 16,
            "user_id": 1,
            "status": "accepted",
            "service_status": "activated",
            "type": "Server",
            "options": [],
            "service": {
                "id": 40,
                "related_id": 41,
                "type": "Server",
                "status": "provisioning",
                "related": {
                    "label": "label6",
                    "model": "Generic",
                    "location": "New York",
                    "location_flag": null,
                    "rack": null,
                    "device_status": "running",
                    "uptime": "172 days, 18h 17m 15s",
                    "ip_addresses": [
                        "192.168.56.128"
                    ],
                    "metadata": []
                },
                "access_level": {
                    "id": 1,
                    "name": "Full Access",
                    "type": "Server",
                    "default": true
                },
                "created_at": "2025-10-16 09:41:48"
            },
            "created_at": "2025-10-16 09:41:48",
            "updated_at": "2025-10-20 12:45:21"
        },
        "result": true
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/orders/{id}/service/activate

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the order. Example: 1

Suspend service

requires authentication

Suspends the service assigned to the specified order.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/orders/1/service/suspend" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/1/service/suspend'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/1/service/suspend';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "order": {
            "id": 31,
            "ordernumber": 16,
            "user_id": 1,
            "status": "accepted",
            "service_status": "suspended",
            "type": "Server",
            "options": [],
            "service": {
                "id": 40,
                "related_id": 41,
                "type": "Server",
                "status": "provisioning",
                "related": {
                    "label": "label6",
                    "model": "Generic",
                    "location": "New York",
                    "location_flag": null,
                    "rack": null,
                    "device_status": "running",
                    "uptime": "172 days, 18h 17m 15s",
                    "ip_addresses": [
                        "192.168.56.128"
                    ],
                    "metadata": []
                },
                "access_level": {
                    "id": 1,
                    "name": "Full Access",
                    "type": "Server",
                    "default": true
                },
                "created_at": "2025-10-16 09:41:48"
            },
            "created_at": "2025-10-16 09:41:48",
            "updated_at": "2025-10-20 12:45:21"
        },
        "result": true
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/orders/{id}/service/suspend

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the order. Example: 1

Unsuspend service

requires authentication

Unsuspends the service assigned to the specified order.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/orders/1/service/unsuspend" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/1/service/unsuspend'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/1/service/unsuspend';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "order": {
            "id": 31,
            "ordernumber": 16,
            "user_id": 1,
            "status": "accepted",
            "service_status": "activated",
            "type": "Server",
            "options": [],
            "service": {
                "id": 40,
                "related_id": 41,
                "type": "Server",
                "status": "provisioning",
                "related": {
                    "label": "label6",
                    "model": "Generic",
                    "location": "New York",
                    "location_flag": null,
                    "rack": null,
                    "device_status": "running",
                    "uptime": "172 days, 18h 17m 15s",
                    "ip_addresses": [
                        "192.168.56.128"
                    ],
                    "metadata": []
                },
                "access_level": {
                    "id": 1,
                    "name": "Full Access",
                    "type": "Server",
                    "default": true
                },
                "created_at": "2025-10-16 09:41:48"
            },
            "created_at": "2025-10-16 09:41:48",
            "updated_at": "2025-10-20 12:45:21"
        },
        "result": true
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/orders/{id}/service/unsuspend

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the order. Example: 1

Terminate service

requires authentication

Terminates the service belonging to the specified order.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/orders/1/service/terminate" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/1/service/terminate'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/1/service/terminate';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "order": {
            "id": 31,
            "ordernumber": 16,
            "user_id": 1,
            "status": "accepted",
            "service_status": "terminated",
            "type": "Server",
            "options": [],
            "service": [],
            "created_at": "2025-10-16 09:41:48",
            "updated_at": "2025-10-20 12:45:21"
        },
        "result": true
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/orders/{id}/service/terminate

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the order. Example: 1

List provisioning logs

requires authentication

Returns a paginated list of provisioning logs for a given order.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/orders/123/provisioning-logs?per_page=10&page=1&sort_by=date_string&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=message" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/123/provisioning-logs'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'date_string',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'message',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/123/provisioning-logs';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'date_string',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'message',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "date": "2025-10-16 09:41:48",
            "level": "NOTICE",
            "message": "#ServerProvisioningModule Activate service action has been started"
        },
        {
            "date": "2025-10-16 09:41:48",
            "level": "INFO",
            "message": "#ServerProvisioningModule Found the applicable device model: http://easydcim_hostname/backend/devices/41/summary with hostname  192.168.56.128"
        },
        {
            "date": "2025-10-16 09:41:48",
            "level": "INFO",
            "message": "#ServerProvisioningModule Device status has changed"
        },
        {
            "date": "2025-10-16 09:41:48",
            "level": "INFO",
            "message": "#ServerProvisioningModule Device is going to be used during provisioning process"
        },
        {
            "date": "2025-10-16 09:41:48",
            "level": "INFO",
            "message": "#ServerProvisioningModule Client and order have been associated with device"
        },
        {
            "date": "2025-10-16 09:41:48",
            "level": "INFO",
            "message": "#ServerProvisioningModule Save the changes on device model"
        },
        {
            "date": "2025-10-16 09:41:48",
            "level": "ERROR",
            "message": "#ServerProvisioningModule Project ID not found for service ID: 40"
        },
        {
            "date": "2025-10-16 09:41:49",
            "level": "INFO",
            "message": "#ServerProvisioningModule [Usage Collector] Trying to set monthly traffic limit"
        },
        {
            "date": "2025-10-16 09:41:49",
            "level": "INFO",
            "message": "#ServerProvisioningModule [Usage Collector] Start Date has been set: first day of this month"
        },
        {
            "date": "2025-10-16 09:41:49",
            "level": "INFO",
            "message": "#ServerProvisioningModule [Usage Collector] Traffic limit IN/OUT has been set: 1 GB. Traffic limit IN has been set: 0.1 GB. Traffic limit OUT has been set: 0.1 GB. Traffic percentile limit has been set: 10 Mbps."
        }
    ],
    "links": {
        "first": "https://your-easydcim.com/api/v3/admin/orders/31/provisioning-logs?page=1",
        "last": "https://your-easydcim.com/api/v3/admin/orders/31/provisioning-logs?page=3",
        "prev": null,
        "next": "https://your-easydcim.com/api/v3/admin/orders/31/provisioning-logs?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 3,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/orders/31/provisioning-logs?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/orders/31/provisioning-logs?page=2",
                "label": "2",
                "page": 2,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/orders/31/provisioning-logs?page=3",
                "label": "3",
                "page": 3,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/orders/31/provisioning-logs?page=2",
                "label": "Next »",
                "page": 2,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/orders/31/provisioning-logs",
        "per_page": 10,
        "to": 10,
        "total": 30,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/orders/{id}/provisioning-logs

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the order. Example: 123

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: date_string, level. Example: date_string

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: message. Example: message

Get order actions

requires authentication

Returns available global and module-specific actions for the given module type and action.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/orders/actions/list?type=Server&action=activate" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"Colocation\",
    \"action\": \"suspend\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/actions/list'
payload = {
    "type": "Colocation",
    "action": "suspend"
}
params = {
  'type': 'Server',
  'action': 'activate',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, json=payload, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/actions/list';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'type' => 'Server',
            'action' => 'activate',
        ],
        'json' => [
            'type' => 'Colocation',
            'action' => 'suspend',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "globalActions": [
            "boot",
            "ports"
        ],
        "allActions": {
            "boot": "Boot a device",
            "ports": "Enable traffic aggregation ports",
            "notifications_delete": "Delete notifications",
            "install_os": "[OS Installation] Install Operating System",
            "ipmi_create_operator_account": "[IPMI Integration] Create Operator Account",
            "ipam_assign_subnet": "[IP Address Management] Assign Subnet",
            "ipam_set_primary_ip": "[IP Address Management] Assign Primary IP to Device",
            "remove_dns": "[DNS Management] Delete zones and rDNS records",
            "add_dns_zone": "[DNS Management] Create zone",
            "add_rdns": "[DNS Management] Create rDNS records",
            "uc_set_usage_limit": "[Usage Collector] Set the monthly traffic limit"
        }
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/orders/actions/list

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

type   string     

The module type. Allowed: Server, Colocation. Example: Server

action   string     

The order action. Allowed: activate, suspend, unsuspend, terminate. Example: activate

Body Parameters

type   string     

Example: Colocation

Must be one of:
  • Server
  • Colocation
action   string     

Example: suspend

Must be one of:
  • activate
  • suspend
  • unsuspend
  • terminate

Get Devices in Stock Based on Criteria

requires authentication

Returns a devices in stock number based on order criteria

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/orders/stock" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"criteria\": {
        \"model\": 12,
        \"location\": 12,
        \"require_parts\": 1,
        \"parts\": {
            \"8\": {
                \"model\": [
                    16,
                    12
                ],
                \"hdd.size\": [
                    1048576,
                    2048576
                ]
            },
            \"9\": {
                \"model\": [
                    25,
                    21
                ],
                \"ssd.size\": [
                    \"524288|1048576\",
                    524288
                ]
            }
        }
    }
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/orders/stock'
payload = {
    "criteria": {
        "model": 12,
        "location": 12,
        "require_parts": 1,
        "parts": {
            "8": {
                "model": [
                    16,
                    12
                ],
                "hdd.size": [
                    1048576,
                    2048576
                ]
            },
            "9": {
                "model": [
                    25,
                    21
                ],
                "ssd.size": [
                    "524288|1048576",
                    524288
                ]
            }
        }
    }
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/orders/stock';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'criteria' => [
                'model' => 12,
                'location' => 12,
                'require_parts' => 1,
                'parts' => [
                    8 => [
                        'model' => [
                            16,
                            12,
                        ],
                        'hdd.size' => [
                            1048576,
                            2048576,
                        ],
                    ],
                    [
                        'model' => [
                            25,
                            21,
                        ],
                        'ssd.size' => [
                            '524288|1048576',
                            524288,
                        ],
                    ],
                ],
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "stock": 10
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/orders/stock

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

criteria   object     

Criteria for searching the devices in stock. Can include model, location, parts, metadata, etc.

Device Bays

List Device Bays

requires authentication

Returns a paginated list of device bays.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/device-bays?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/device-bays'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/device-bays';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 105,
            "name": "Rebekah Hudson",
            "order": 9,
            "parent_id": 2121,
            "child_id": 2120,
            "created_at": "2026-09-04 09:47:45",
            "updated_at": "2026-09-04 09:47:45"
        },
        {
            "id": 106,
            "name": "Gregory Miller DDS",
            "order": 6,
            "parent_id": 2123,
            "child_id": 2122,
            "created_at": "2026-09-04 09:47:50",
            "updated_at": "2026-09-04 09:47:50"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/device-bays?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/device-bays",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/device-bays

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, parent_id, child_id, name. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, parent_id, child_id, name. Example: id

Show Device Bay

requires authentication

Display detailed information about a single device bay by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/device-bays/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/device-bays/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/device-bays/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 107,
        "name": "Mohamed Kerluke",
        "order": 5,
        "parent": {
            "id": 2125,
            "label": "eius",
            "model": "et",
            "product_id": 0,
            "model_id": 2436,
            "parent_id": 0,
            "type_id": 6,
            "user_id": 8951,
            "order_id": 0,
            "location_id": 4843,
            "rack_id": 0,
            "blade_id": 0,
            "os_installation": 0,
            "colocation_id": 0,
            "provisioning_id": 0,
            "manufacturer": "Hamill-Langworth",
            "description": "Adipisci voluptatem voluptatem eos quaerat culpa.",
            "comments": null,
            "status": "available",
            "device_status": "running",
            "service_status": "activated",
            "function": null,
            "serialnumber1": "SN224SQ",
            "serialnumber2": null,
            "service_tag": "ST291WL",
            "location": "Nader, Bins and Little",
            "metadata": [],
            "locked": 0,
            "last_discovered": "Never",
            "discovery_time": 0,
            "last_polled": "Never",
            "poller_disabled": 0,
            "poller_time": 0,
            "last_hour_traffic": 0,
            "last_day_traffic": 0,
            "last_week_traffic": 0,
            "last_month_traffic": 0,
            "current_month_traffic": 0,
            "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
            "device_traffic": null
        },
        "child": null,
        "created_at": "2026-09-04 09:47:57",
        "updated_at": "2026-09-04 09:47:57"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/device-bays/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device bay. Example: 1

Create Device Bay

requires authentication

Store a new device bay in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/device-bays" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"First Device Bay\",
    \"parent_id\": 10,
    \"child_id\": 18,
    \"order\": 1
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/device-bays'
payload = {
    "name": "First Device Bay",
    "parent_id": 10,
    "child_id": 18,
    "order": 1
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/device-bays';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'First Device Bay',
            'parent_id' => 10,
            'child_id' => 18,
            'order' => 1,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 108,
        "name": "Imogene Greenfelder",
        "order": 1,
        "parent": {
            "id": 2127,
            "label": "non",
            "model": "aperiam",
            "product_id": 0,
            "model_id": 2440,
            "parent_id": 0,
            "type_id": 6,
            "user_id": 8957,
            "order_id": 0,
            "location_id": 4847,
            "rack_id": 0,
            "blade_id": 0,
            "os_installation": 0,
            "colocation_id": 0,
            "provisioning_id": 0,
            "manufacturer": "Sipes, Denesik and Ernser",
            "description": "Magnam sit libero rem qui quis.",
            "comments": null,
            "status": "available",
            "device_status": "running",
            "service_status": "activated",
            "function": null,
            "serialnumber1": "SN402VE",
            "serialnumber2": null,
            "service_tag": "ST990EQ",
            "location": "White-Rippin",
            "metadata": [],
            "locked": 0,
            "last_discovered": "Never",
            "discovery_time": 0,
            "last_polled": "Never",
            "poller_disabled": 0,
            "poller_time": 0,
            "last_hour_traffic": 0,
            "last_day_traffic": 0,
            "last_week_traffic": 0,
            "last_month_traffic": 0,
            "current_month_traffic": 0,
            "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
            "device_traffic": null
        },
        "child": null,
        "created_at": "2026-09-04 09:48:02",
        "updated_at": "2026-09-04 09:48:02"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/device-bays

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The name of the device bay. Example: First Device Bay

parent_id   integer     

Parent Id of device bay. Must be device id of Blade type device. Must match an existing stored value. Example: 10

child_id   integer     

Child Id of device bay. Must be device id of size 0 device. Must match an existing stored value. Example: 18

order   integer  optional    

The order of the device bay. Example: 1

Update Device Bay

requires authentication

Updates the specified device bay with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/device-bays/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"First Device Bay\",
    \"child_id\": 18,
    \"order\": 1
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/device-bays/1'
payload = {
    "name": "First Device Bay",
    "child_id": 18,
    "order": 1
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/device-bays/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'First Device Bay',
            'child_id' => 18,
            'order' => 1,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 109,
        "name": "Prof. Tiffany King III",
        "order": 2,
        "parent": {
            "id": 2129,
            "label": "qui",
            "model": "dolorum",
            "product_id": 0,
            "model_id": 2444,
            "parent_id": 0,
            "type_id": 6,
            "user_id": 8963,
            "order_id": 0,
            "location_id": 4851,
            "rack_id": 0,
            "blade_id": 0,
            "os_installation": 0,
            "colocation_id": 0,
            "provisioning_id": 0,
            "manufacturer": "Champlin, Kirlin and Romaguera",
            "description": "Similique ex a nulla beatae repellat consequatur explicabo.",
            "comments": null,
            "status": "available",
            "device_status": "running",
            "service_status": "activated",
            "function": null,
            "serialnumber1": "SN651NG",
            "serialnumber2": null,
            "service_tag": "ST578SB",
            "location": "Dibbert-Kuhlman",
            "metadata": [],
            "locked": 0,
            "last_discovered": "Never",
            "discovery_time": 0,
            "last_polled": "Never",
            "poller_disabled": 0,
            "poller_time": 0,
            "last_hour_traffic": 0,
            "last_day_traffic": 0,
            "last_week_traffic": 0,
            "last_month_traffic": 0,
            "current_month_traffic": 0,
            "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
            "device_traffic": null
        },
        "child": {
            "id": 2128,
            "label": "molestias",
            "model": "earum",
            "product_id": 0,
            "model_id": 2442,
            "parent_id": 0,
            "type_id": 2976,
            "user_id": 8960,
            "order_id": 0,
            "location_id": 4851,
            "rack_id": 0,
            "blade_id": 0,
            "os_installation": 0,
            "colocation_id": 0,
            "provisioning_id": 0,
            "manufacturer": "Hilpert, Hodkiewicz and Legros",
            "description": "Delectus consequatur eum et.",
            "comments": null,
            "status": "available",
            "device_status": "running",
            "service_status": "activated",
            "function": null,
            "serialnumber1": "SN216ZM",
            "serialnumber2": null,
            "service_tag": "ST768IO",
            "location": "Dibbert-Kuhlman",
            "metadata": [],
            "locked": 0,
            "last_discovered": "Never",
            "discovery_time": 0,
            "last_polled": "Never",
            "poller_disabled": 0,
            "poller_time": 0,
            "last_hour_traffic": 0,
            "last_day_traffic": 0,
            "last_week_traffic": 0,
            "last_month_traffic": 0,
            "current_month_traffic": 0,
            "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
            "device_traffic": null
        },
        "created_at": "2026-09-04 09:48:08",
        "updated_at": "2026-09-04 09:48:08"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/device-bays/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device bay. Example: 1

Body Parameters

name   string  optional    

The name of the device bay. Example: First Device Bay

child_id   integer  optional    

Child Id of device bay. Must be device id of size 0 device. Must match an existing stored value. Example: 18

order   integer  optional    

The order of the device bay. Example: 1

Delete Device Bay

requires authentication

Removes the specified device bay from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/device-bays/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/device-bays/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/device-bays/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/device-bays/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device bay. Example: 5

Item Types

List Item Types

requires authentication

Returns a paginated list of item types.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/types?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/types'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/types';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 2979,
            "name": "numquam",
            "description": "Non aut dolores adipisci nam minima.",
            "hardware": 1,
            "software": 0,
            "predefined": 0,
            "color": "blue",
            "created_at": "2026-09-04 09:48:08",
            "updated_at": "2026-09-04 09:48:08"
        },
        {
            "id": 2980,
            "name": "laborum",
            "description": "Magni omnis quis et ipsam consequatur velit.",
            "hardware": 0,
            "software": 1,
            "predefined": 0,
            "color": "gray",
            "created_at": "2026-09-04 09:48:08",
            "updated_at": "2026-09-04 09:48:08"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/types?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/types",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/types

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, predefined. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, description. Example: id

Show Item Type

requires authentication

Display detailed information about a single item type by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/types/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/types/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/types/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2981,
        "name": "repellendus",
        "description": "Aliquid dolor quia et aspernatur.",
        "hardware": 1,
        "software": 1,
        "predefined": 0,
        "color": "black",
        "created_at": "2026-09-04 09:48:08",
        "updated_at": "2026-09-04 09:48:08"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/types/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item type. Example: 1

Create Item Type

requires authentication

Store a new item type in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/types" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Blade\",
    \"description\": \"Blade type description\",
    \"group\": \"hardware\",
    \"color\": \"#A8DBA8\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/types'
payload = {
    "name": "Blade",
    "description": "Blade type description",
    "group": "hardware",
    "color": "#A8DBA8"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/types';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Blade',
            'description' => 'Blade type description',
            'group' => 'hardware',
            'color' => '#A8DBA8',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2982,
        "name": "neque",
        "description": "Deleniti quam eligendi ullam velit qui vel.",
        "hardware": 1,
        "software": 1,
        "predefined": 1,
        "color": "gray",
        "created_at": "2026-09-04 09:48:08",
        "updated_at": "2026-09-04 09:48:08"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/types

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The name of the item type. Example: Blade

description   string  optional    

The description of the item type. Example: Blade type description

group   string  optional    

The group of the type. Example: hardware

Must be one of:
  • hardware
  • software
color   string  optional    

The color of the item type. Example: #A8DBA8

Update Item Type

requires authentication

Updates the specified item type with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/types/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Blade\",
    \"description\": \"Blade type description\",
    \"group\": \"hardware\",
    \"color\": \"#A8DBA8\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/types/1'
payload = {
    "name": "Blade",
    "description": "Blade type description",
    "group": "hardware",
    "color": "#A8DBA8"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/types/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Blade',
            'description' => 'Blade type description',
            'group' => 'hardware',
            'color' => '#A8DBA8',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2983,
        "name": "placeat",
        "description": "Voluptatum reprehenderit qui sint numquam repudiandae.",
        "hardware": 1,
        "software": 0,
        "predefined": 1,
        "color": "green",
        "created_at": "2026-09-04 09:48:08",
        "updated_at": "2026-09-04 09:48:08"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/types/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item type. Example: 1

Body Parameters

name   string  optional    

The name of the item type. Example: Blade

description   string  optional    

The description of the item type. Example: Blade type description

group   string  optional    

The group of the type. Example: hardware

Must be one of:
  • hardware
  • software
color   string  optional    

The color of the item type. Example: #A8DBA8

Delete Item type

requires authentication

Removes the specified item type from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/types/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/types/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/types/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/types/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item type. Example: 5

Groups

List Groups

requires authentication

Returns a paginated list of groups.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/groups?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/groups'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/groups';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 94,
            "title": "Bud Prohaska"
        },
        {
            "id": 95,
            "title": "Dorian Kautzer DVM"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/groups?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/groups",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/groups

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, title. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, title. Example: id

List Permissions

requires authentication

Returns a paginated list of permissions.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/permissions" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/permissions'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/permissions';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 517,
            "name": "et.alias.delectus",
            "display_name": "Dr. Abigayle Kohler Jr.",
            "created_at": "2026-09-04 09:48:08",
            "updated_at": "2026-09-04 09:48:08"
        },
        {
            "id": 518,
            "name": "in.eius.cum",
            "display_name": "Lydia Lemke",
            "created_at": "2026-09-04 09:48:08",
            "updated_at": "2026-09-04 09:48:08"
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/permissions

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Show Group

requires authentication

Display detailed information about a single group by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/groups/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/groups/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/groups/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 96,
        "title": "Ms. Opal Kuvalis",
        "permissions": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/groups/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the group. Example: 1

Create Group

requires authentication

Store a new group in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/groups" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"title\": \"Employees\",
    \"permissions\": [
        1
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/groups'
payload = {
    "title": "Employees",
    "permissions": [
        1
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/groups';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'title' => 'Employees',
            'permissions' => [
                1,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 97,
        "title": "Dr. Hanna Okuneva",
        "permissions": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/groups

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

title   string     

The name of the group. Example: Employees

permissions   integer[]  optional    

Array of permissions ids. Must match an existing stored value.

Update Group

requires authentication

Updates the specified group with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/groups/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"title\": \"Employees\",
    \"permissions\": [
        1
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/groups/1'
payload = {
    "title": "Employees",
    "permissions": [
        1
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/groups/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'title' => 'Employees',
            'permissions' => [
                1,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 98,
        "title": "Prof. Bria Gottlieb",
        "permissions": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/groups/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the group. Example: 1

Body Parameters

title   string  optional    

The name of the group. Example: Employees

permissions   integer[]  optional    

Array of permissions ids. Must match an existing stored value.

Delete Group

requires authentication

Removes the specified group from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/groups/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/groups/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/groups/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/groups/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the group. Example: 5

Items

List Items

requires authentication

Returns a paginated list of items.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/items?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/items'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/items';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 2130,
            "model_id": 2446,
            "parent_id": 0,
            "type_id": 2984,
            "user_id": 8966,
            "location_id": 4853,
            "rack_id": 0,
            "position": null,
            "image": null,
            "is_part": 0,
            "mountable": 1,
            "model": "sunt",
            "manufacturer": "Deckow-Orn",
            "serialnumber1": "SN785PH",
            "serialnumber2": null,
            "service_tag": "ST204ZK",
            "comments": null,
            "label": "perferendis",
            "description": "Quia quis assumenda et occaecati aut neque excepturi eos.",
            "purchase_date": "2025-09-04",
            "warranty_months": 24,
            "warranty_info": null,
            "status": "available",
            "function": null,
            "origin": null,
            "buy_price": 0,
            "appdata": false,
            "notes": null,
            "created_at": "2026-09-04 09:48:08",
            "updated_at": "2026-09-04 09:48:08"
        },
        {
            "id": 2131,
            "model_id": 2448,
            "parent_id": 0,
            "type_id": 2986,
            "user_id": 8969,
            "location_id": 4855,
            "rack_id": 0,
            "position": null,
            "image": null,
            "is_part": 0,
            "mountable": 1,
            "model": "aut",
            "manufacturer": "Okuneva-Luettgen",
            "serialnumber1": "SN254FO",
            "serialnumber2": null,
            "service_tag": "ST043FD",
            "comments": null,
            "label": "nostrum",
            "description": "Dolorum doloremque odio voluptatem non laborum neque consectetur.",
            "purchase_date": "2025-09-04",
            "warranty_months": 24,
            "warranty_info": null,
            "status": "available",
            "function": null,
            "origin": null,
            "buy_price": 0,
            "appdata": false,
            "notes": null,
            "created_at": "2026-09-04 09:48:11",
            "updated_at": "2026-09-04 09:48:11"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/items?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/items",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/items

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, model_id, parent_id, type_id, user_id, location_id, label, description. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, model_id, parent_id, type_id, user_id, location_id, label, description. Example: id

Show Item

requires authentication

Display detailed information about a single item by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/items/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/items/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/items/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2132,
        "model": {
            "id": 2450,
            "name": "dolorum",
            "label": null,
            "type_id": 2988,
            "location_id": 0,
            "status": null,
            "description": null,
            "is_part": false,
            "mountable": true,
            "manufacturer": null,
            "position": null,
            "size": 1,
            "image": null,
            "data_ports": null,
            "serialnumber1": null,
            "serialnumber2": null,
            "service_tag": null,
            "comments": null,
            "notes": null,
            "purchase_date": null,
            "warranty_months": null,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": null,
            "appdata": false,
            "fields_data": false,
            "parts_data": false,
            "created_at": "2026-09-04T07:48:16.000000Z",
            "updated_at": "2026-09-04T07:48:16.000000Z"
        },
        "user": {
            "id": 8972,
            "username": "lessie.paucek",
            "email": "[email protected]",
            "name": "Zachery Rath",
            "firstname": "Zachery",
            "lastname": "Rath",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/7869a2198b1aeaad95d71e702d9ba635?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/7869a2198b1aeaad95d71e702d9ba635?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        "type": {
            "id": 2988,
            "name": "at",
            "description": "Est ut sed corrupti veritatis modi et consequatur.",
            "hardware": 0,
            "software": 1,
            "predefined": 0,
            "color": "green",
            "created_at": "2026-09-04 09:48:14",
            "updated_at": "2026-09-04 09:48:14"
        },
        "parent": null,
        "location": {
            "id": 4857,
            "app_id": null,
            "name": "Deckow-Stark",
            "address": "85170 Matilde Divide Apt. 205\nFarrellchester, MI 09144",
            "city": "Hayesstad",
            "state": "New Hampshire",
            "description": "Autem eius magnam cum et accusantium. Rerum ab et distinctio necessitatibus molestias pariatur consequatur. Odio voluptatem cum ut esse aut eos.",
            "notes": "Accusantium voluptatem quia consequatur ullam ut sequi esse beatae. Doloribus fugit ipsa natus ad iusto et dolorum et. Molestiae doloribus nobis est dolores quis ad.",
            "emergency": "0",
            "phone": "1-810-618-3902",
            "flag": "Canada.png",
            "created_at": "2026-09-04 09:48:16",
            "updated_at": "2026-09-04 09:48:16"
        },
        "rack": null,
        "metadata": [],
        "position": null,
        "image": null,
        "is_part": 0,
        "mountable": 1,
        "manufacturer": "Grant, Ratke and Weber",
        "serialnumber1": "SN608AM",
        "serialnumber2": null,
        "service_tag": "ST641PI",
        "comments": null,
        "label": "sunt",
        "description": "Sit eaque cumque beatae.",
        "purchase_date": "2025-09-04",
        "warranty_months": 24,
        "warranty_info": null,
        "status": "available",
        "function": null,
        "origin": null,
        "buy_price": 0,
        "appdata": false,
        "notes": null,
        "created_at": "2026-09-04 09:48:14",
        "updated_at": "2026-09-04 09:48:14"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/items/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item. Example: 1

Show Item QR Code

requires authentication

Display QR code for item by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/items/1/qrcode?size=300" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/items/1/qrcode'
params = {
  'size': '300',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/items/1/qrcode';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'size' => '300',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUAAAAFAAQMAAAD3XjfpAAAABlBMVEX///8AAABVwtN+AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAB6UlEQVRoge2WQZbDIAxDuYHvf0tu4GmxZDxpAnRdMX1pge9ZKEaiNY3fGeZj9GY9pu9fryen2BW4A2Nh7M2F1+PNEBd4AFosWKg+5ijCrAs8B9mrVD1egMBvQfwKJ8gSgecgDADNG8YZRfdOIfAWnFt3f5/JJfAWrMOyg6H/FRD4CKJBs107KpqV9yBwC1JoNCeQDCOPgBe4A4d9/nOEGVPRyVBc4BJsvAlFDWTmHuygCdyCV709S0LxuMkL3IBInrHOiyYul2EEznunwCXo2a68aPa54dwReACOL6YQXLT0LwmBK7BDcj4joaK2zyKBGzCETrsMsl/+gcAd2Oapt/IGePaH3i5wC5oT8LTUzkSKTzqFwGdw7MFHYZgMo4io6qQCn8GW5xueadAbWlsagMAFOE00dO+1T6vcApcgHIARFNueF876XgSuwDZPf41xukJrVXKBT2A0btG0T1OF2sbkErgA2au9xFAiKBN4BuLgZ/TAE2wKL3APelmcytNP2dcCl2Ce/LRMY7gbWrhEksAnkLIasscZSexndwaSwBUIlxwf6lwKsmsFbkAaQHn2qEqxBX4BUvmRUdnSqbnAMzBzKBSGqVJ+gVuQXTlYNm8mk+OSJHADZiClwqF8GOmYXZJL4A2o8SvjD1rk6zzrRJ7rAAAAAElFTkSuQmCC"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/items/{id}/qrcode

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item. Example: 1

Query Parameters

size   integer  optional    

The size of the QR code. Example: 300

Create Item

requires authentication

Store a new item in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/items" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"label\": \"Intel Xeon\",
    \"model\": 123,
    \"type_id\": 1,
    \"user_id\": 5,
    \"parent_id\": 10,
    \"location_id\": 3,
    \"is_part\": true,
    \"manufacturer\": \"Intel\",
    \"serialnumber1\": \"SN123456789\",
    \"service_tag\": \"ST987654\",
    \"comments\": \"Example comment\",
    \"description\": \"Intel Xeon server CPU with 8 cores\",
    \"purchase_date\": \"2025-09-17\",
    \"warranty_months\": 36,
    \"warranty_info\": \"Standard 3-year warranty\",
    \"status\": \"available\",
    \"function\": \"Server CPU\",
    \"origin\": \"Warehouse A\",
    \"buy_price\": 2500.5,
    \"appdata\": {
        \"key\": \"value\"
    },
    \"notes\": \"Needs firmware update\",
    \"metadata\": [
        {
            \"metadata_id\": 37,
            \"value\": \"1\",
            \"raw_value\": \"1\"
        }
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/items'
payload = {
    "label": "Intel Xeon",
    "model": 123,
    "type_id": 1,
    "user_id": 5,
    "parent_id": 10,
    "location_id": 3,
    "is_part": true,
    "manufacturer": "Intel",
    "serialnumber1": "SN123456789",
    "service_tag": "ST987654",
    "comments": "Example comment",
    "description": "Intel Xeon server CPU with 8 cores",
    "purchase_date": "2025-09-17",
    "warranty_months": 36,
    "warranty_info": "Standard 3-year warranty",
    "status": "available",
    "function": "Server CPU",
    "origin": "Warehouse A",
    "buy_price": 2500.5,
    "appdata": {
        "key": "value"
    },
    "notes": "Needs firmware update",
    "metadata": [
        {
            "metadata_id": 37,
            "value": "1",
            "raw_value": "1"
        }
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/items';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'label' => 'Intel Xeon',
            'model' => 123,
            'type_id' => 1,
            'user_id' => 5,
            'parent_id' => 10,
            'location_id' => 3,
            'is_part' => true,
            'manufacturer' => 'Intel',
            'serialnumber1' => 'SN123456789',
            'service_tag' => 'ST987654',
            'comments' => 'Example comment',
            'description' => 'Intel Xeon server CPU with 8 cores',
            'purchase_date' => '2025-09-17',
            'warranty_months' => 36,
            'warranty_info' => 'Standard 3-year warranty',
            'status' => 'available',
            'function' => 'Server CPU',
            'origin' => 'Warehouse A',
            'buy_price' => 2500.5,
            'appdata' => [
                'key' => 'value',
            ],
            'notes' => 'Needs firmware update',
            'metadata' => [
                [
                    'metadata_id' => 37,
                    'value' => '1',
                    'raw_value' => '1',
                ],
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2133,
        "model": {
            "id": 2452,
            "name": "sunt",
            "label": null,
            "type_id": 2990,
            "location_id": 0,
            "status": null,
            "description": null,
            "is_part": true,
            "mountable": false,
            "manufacturer": null,
            "position": null,
            "size": 1,
            "image": null,
            "data_ports": null,
            "serialnumber1": null,
            "serialnumber2": null,
            "service_tag": null,
            "comments": null,
            "notes": null,
            "purchase_date": null,
            "warranty_months": null,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": null,
            "appdata": false,
            "fields_data": false,
            "parts_data": false,
            "created_at": "2026-09-04T07:48:19.000000Z",
            "updated_at": "2026-09-04T07:48:19.000000Z"
        },
        "user": {
            "id": 8975,
            "username": "fay62",
            "email": "[email protected]",
            "name": "Layla Balistreri",
            "firstname": "Layla",
            "lastname": "Balistreri",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/4cd9d1c73d809e222e03734003f25984?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/4cd9d1c73d809e222e03734003f25984?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        "type": {
            "id": 2990,
            "name": "voluptas",
            "description": "Id in omnis pariatur aut nisi voluptatem.",
            "hardware": 0,
            "software": 0,
            "predefined": 1,
            "color": "green",
            "created_at": "2026-09-04 09:48:17",
            "updated_at": "2026-09-04 09:48:17"
        },
        "parent": null,
        "location": {
            "id": 4859,
            "app_id": null,
            "name": "Rohan, Steuber and Yundt",
            "address": "473 Fay Way Suite 481\nLake Kelvin, AK 74916-9346",
            "city": "New Brandyn",
            "state": "Washington",
            "description": "Laborum similique suscipit vitae commodi provident quos. Unde nemo odit laboriosam repudiandae velit perspiciatis animi.",
            "notes": "Asperiores eos et ullam ab hic. Excepturi eos praesentium suscipit harum. Qui et voluptatum consequatur veniam.",
            "emergency": "1",
            "phone": "(573) 568-5598",
            "flag": "Canada.png",
            "created_at": "2026-09-04 09:48:19",
            "updated_at": "2026-09-04 09:48:19"
        },
        "rack": null,
        "metadata": [],
        "position": null,
        "image": null,
        "is_part": 1,
        "mountable": 0,
        "manufacturer": "Schroeder, Stracke and Parker",
        "serialnumber1": "SN609QL",
        "serialnumber2": null,
        "service_tag": "ST144JB",
        "comments": null,
        "label": "corrupti",
        "description": "Harum consectetur unde magni quidem commodi enim incidunt eaque.",
        "purchase_date": "2025-09-04",
        "warranty_months": 24,
        "warranty_info": null,
        "status": "available",
        "function": null,
        "origin": null,
        "buy_price": 0,
        "appdata": false,
        "notes": null,
        "created_at": "2026-09-04 09:48:17",
        "updated_at": "2026-09-04 09:48:17"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/items

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

label   string     

The name of the item. Example: Intel Xeon

model   string     

The model ID of the item, or a custom string for new models. Example: 123

type_id   integer     

The type ID of the item. Must match an existing stored value. Example: 1

user_id   integer  optional    

The user ID assigned to the item. Must match an existing stored value. Example: 5

parent_id   integer  optional    

The parent item ID, if this item is mountable. Must match an existing stored value. Example: 10

location_id   integer  optional    

The location ID where the item is stored. Must match an existing stored value. Example: 3

is_part   boolean  optional    

Determine if this item is part. Example: true

manufacturer   string  optional    

The manufacturer of the item. Example: Intel

serialnumber1   string  optional    

Primary serial number of the item. Example: SN123456789

service_tag   string  optional    

Unique service tag or identifier of the item. Example: ST987654

comments   string  optional    

Any additional comments about the item. Example: Example comment

description   string  optional    

Detailed description of the item. Example: Intel Xeon server CPU with 8 cores

purchase_date   string  optional    

The purchase date of the item. Must be a valid date. Must be a valid date in the format Y-m-d. Example: 2025-09-17

warranty_months   integer  optional    

Warranty period in months. Example: 36

warranty_info   string  optional    

Additional warranty information. Example: Standard 3-year warranty

status   string  optional    

Current status of the item. Example: available

Must be one of:
  • available
  • bought
  • defect
  • in use
  • not_delivered
  • sold
  • repair
  • not_set
function   string  optional    

The function or role of the item. Example: Server CPU

origin   string  optional    

The origin or source of the item. Example: Warehouse A

buy_price   number  optional    

Purchase price of the item. Example: 2500.5

appdata   object  optional    

Additional application-specific data for the item.

notes   string  optional    

Additional notes about the item. Example: Needs firmware update

metadata   object[]     
metadata_id   integer     

The ID of the metadata type. Must match an existing stored value. Example: 37

value   string     

The value of the metadata entry. Example: 1

raw_value   string  optional    

Optional raw value for the metadata entry. Example: 1

Update Item

requires authentication

Updates the specified item with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/items/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"label\": \"Intel Xeon\",
    \"model\": 123,
    \"user_id\": 5,
    \"parent_id\": 10,
    \"location_id\": 3,
    \"is_part\": true,
    \"manufacturer\": \"Intel\",
    \"serialnumber1\": \"SN123456789\",
    \"service_tag\": \"ST987654\",
    \"comments\": \"Example comment\",
    \"description\": \"Intel Xeon server CPU with 8 cores\",
    \"purchase_date\": \"2025-09-17\",
    \"warranty_months\": 36,
    \"warranty_info\": \"Standard 3-year warranty\",
    \"status\": \"available\",
    \"function\": \"Server CPU\",
    \"origin\": \"Warehouse A\",
    \"buy_price\": 2500.5,
    \"appdata\": {
        \"key\": \"value\"
    },
    \"notes\": \"Needs firmware update\",
    \"metadata\": [
        {
            \"metadata_id\": 37,
            \"value\": \"1\",
            \"raw_value\": \"1\"
        }
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/items/1'
payload = {
    "label": "Intel Xeon",
    "model": 123,
    "user_id": 5,
    "parent_id": 10,
    "location_id": 3,
    "is_part": true,
    "manufacturer": "Intel",
    "serialnumber1": "SN123456789",
    "service_tag": "ST987654",
    "comments": "Example comment",
    "description": "Intel Xeon server CPU with 8 cores",
    "purchase_date": "2025-09-17",
    "warranty_months": 36,
    "warranty_info": "Standard 3-year warranty",
    "status": "available",
    "function": "Server CPU",
    "origin": "Warehouse A",
    "buy_price": 2500.5,
    "appdata": {
        "key": "value"
    },
    "notes": "Needs firmware update",
    "metadata": [
        {
            "metadata_id": 37,
            "value": "1",
            "raw_value": "1"
        }
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/items/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'label' => 'Intel Xeon',
            'model' => 123,
            'user_id' => 5,
            'parent_id' => 10,
            'location_id' => 3,
            'is_part' => true,
            'manufacturer' => 'Intel',
            'serialnumber1' => 'SN123456789',
            'service_tag' => 'ST987654',
            'comments' => 'Example comment',
            'description' => 'Intel Xeon server CPU with 8 cores',
            'purchase_date' => '2025-09-17',
            'warranty_months' => 36,
            'warranty_info' => 'Standard 3-year warranty',
            'status' => 'available',
            'function' => 'Server CPU',
            'origin' => 'Warehouse A',
            'buy_price' => 2500.5,
            'appdata' => [
                'key' => 'value',
            ],
            'notes' => 'Needs firmware update',
            'metadata' => [
                [
                    'metadata_id' => 37,
                    'value' => '1',
                    'raw_value' => '1',
                ],
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2134,
        "model": {
            "id": 2454,
            "name": "non",
            "label": null,
            "type_id": 2992,
            "location_id": 0,
            "status": null,
            "description": null,
            "is_part": true,
            "mountable": false,
            "manufacturer": null,
            "position": null,
            "size": 1,
            "image": null,
            "data_ports": null,
            "serialnumber1": null,
            "serialnumber2": null,
            "service_tag": null,
            "comments": null,
            "notes": null,
            "purchase_date": null,
            "warranty_months": null,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": null,
            "appdata": false,
            "fields_data": false,
            "parts_data": false,
            "created_at": "2026-09-04T07:48:22.000000Z",
            "updated_at": "2026-09-04T07:48:22.000000Z"
        },
        "user": {
            "id": 8978,
            "username": "izabella.schulist",
            "email": "[email protected]",
            "name": "Aylin Paucek",
            "firstname": "Aylin",
            "lastname": "Paucek",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/d8663082bca805ae3504c0ac4ca7bf5a?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/d8663082bca805ae3504c0ac4ca7bf5a?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        "type": {
            "id": 2992,
            "name": "qui",
            "description": "Est est est minus minima consectetur et nostrum ipsam.",
            "hardware": 0,
            "software": 0,
            "predefined": 1,
            "color": "white",
            "created_at": "2026-09-04 09:48:19",
            "updated_at": "2026-09-04 09:48:19"
        },
        "parent": null,
        "location": {
            "id": 4861,
            "app_id": null,
            "name": "Spinka-Bailey",
            "address": "40102 Eudora Villages Apt. 514\nBogisichbury, NE 79042-7835",
            "city": "North Leeborough",
            "state": "Kansas",
            "description": "Mollitia et molestias voluptas aut. Voluptas totam voluptatem ut modi corporis esse. Ut atque inventore quis nobis magnam. Velit suscipit aut recusandae odit omnis fuga iste.",
            "notes": "Quae quasi numquam et autem alias. Non sed et est natus aliquid. Possimus quo quaerat et non non accusamus eius. Est aut occaecati ex est. Itaque est aliquid est quam ipsam et.",
            "emergency": "1",
            "phone": "(254) 332-9152",
            "flag": "UK.png",
            "created_at": "2026-09-04 09:48:22",
            "updated_at": "2026-09-04 09:48:22"
        },
        "rack": null,
        "metadata": [],
        "position": null,
        "image": null,
        "is_part": 1,
        "mountable": 0,
        "manufacturer": "Feeney Group",
        "serialnumber1": "SN141WR",
        "serialnumber2": null,
        "service_tag": "ST349KD",
        "comments": null,
        "label": "libero",
        "description": "Rerum eligendi quia quo impedit.",
        "purchase_date": "2025-09-04",
        "warranty_months": 24,
        "warranty_info": null,
        "status": "available",
        "function": null,
        "origin": null,
        "buy_price": 0,
        "appdata": false,
        "notes": null,
        "created_at": "2026-09-04 09:48:19",
        "updated_at": "2026-09-04 09:48:19"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/items/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item. Example: 1

Body Parameters

label   string  optional    

The name of the item. Example: Intel Xeon

model   integer  optional    

The model ID of the item. Example: 123

user_id   integer  optional    

The user ID assigned to the item. Must match an existing stored value. Example: 5

parent_id   integer  optional    

The parent item ID, if this item is mountable. Must match an existing stored value. Example: 10

location_id   integer  optional    

The location ID where the item is stored. Must match an existing stored value. Example: 3

is_part   boolean  optional    

Determine if this item is part. Example: true

manufacturer   string  optional    

The manufacturer of the item. Example: Intel

serialnumber1   string  optional    

Primary serial number of the item. Example: SN123456789

service_tag   string  optional    

Unique service tag or identifier of the item. Example: ST987654

comments   string  optional    

Any additional comments about the item. Example: Example comment

description   string  optional    

Detailed description of the item. Example: Intel Xeon server CPU with 8 cores

purchase_date   string  optional    

The purchase date of the item. Must be a valid date. Must be a valid date in the format Y-m-d. Example: 2025-09-17

warranty_months   integer  optional    

Warranty period in months. Example: 36

warranty_info   string  optional    

Additional warranty information. Example: Standard 3-year warranty

status   string  optional    

Current status of the item. Example: available

Must be one of:
  • available
  • bought
  • defect
  • in use
  • not_delivered
  • sold
  • repair
  • not_set
function   string  optional    

The function or role of the item. Example: Server CPU

origin   string  optional    

The origin or source of the item. Example: Warehouse A

buy_price   number  optional    

Purchase price of the item. Example: 2500.5

appdata   object  optional    

Additional application-specific data for the item.

notes   string  optional    

Additional notes about the item. Example: Needs firmware update

metadata   object[]     
metadata_id   integer     

The ID of the metadata type. Must match an existing stored value. Example: 37

value   string     

The value of the metadata entry. Example: 1

raw_value   string  optional    

Optional raw value for the metadata entry. Example: 1

Assign Metadata To Item

requires authentication

Assigns metadata for specified item.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/items/1/metadata/assign" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"slug\": \"ipmi.ip\",
    \"value\": \"192.168.56.180\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/items/1/metadata/assign'
payload = {
    "slug": "ipmi.ip",
    "value": "192.168.56.180"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/items/1/metadata/assign';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'slug' => 'ipmi.ip',
            'value' => '192.168.56.180',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2135,
        "model": {
            "id": 2456,
            "name": "ipsam",
            "label": null,
            "type_id": 2994,
            "location_id": 0,
            "status": null,
            "description": null,
            "is_part": true,
            "mountable": false,
            "manufacturer": null,
            "position": null,
            "size": 1,
            "image": null,
            "data_ports": null,
            "serialnumber1": null,
            "serialnumber2": null,
            "service_tag": null,
            "comments": null,
            "notes": null,
            "purchase_date": null,
            "warranty_months": null,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": null,
            "appdata": false,
            "fields_data": false,
            "parts_data": false,
            "created_at": "2026-09-04T07:48:24.000000Z",
            "updated_at": "2026-09-04T07:48:24.000000Z"
        },
        "user": {
            "id": 8981,
            "username": "jayda28",
            "email": "[email protected]",
            "name": "Otilia Daugherty",
            "firstname": "Otilia",
            "lastname": "Daugherty",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/6f191d74085ed4afa39c03a0de1482d6?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/6f191d74085ed4afa39c03a0de1482d6?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        "type": {
            "id": 2994,
            "name": "voluptatem",
            "description": "Quae soluta molestiae et a dignissimos non.",
            "hardware": 0,
            "software": 0,
            "predefined": 1,
            "color": "aqua",
            "created_at": "2026-09-04 09:48:22",
            "updated_at": "2026-09-04 09:48:22"
        },
        "parent": null,
        "location": {
            "id": 4863,
            "app_id": null,
            "name": "Ebert, Crooks and Koss",
            "address": "3856 Gleichner Crest\nEast Frederikville, RI 31379-8045",
            "city": "South Lauren",
            "state": "Michigan",
            "description": "Iste blanditiis omnis repudiandae nobis vel eos est. Vel voluptatum error nihil nostrum velit. Error delectus quia et voluptatem ab dolorem. Ut laborum dolor nesciunt et quia omnis.",
            "notes": "Quia dolor modi autem. Et id labore provident quia. Dolor sed iste hic omnis.",
            "emergency": "1",
            "phone": "386.628.3318",
            "flag": "Germany.png",
            "created_at": "2026-09-04 09:48:24",
            "updated_at": "2026-09-04 09:48:24"
        },
        "rack": null,
        "metadata": [],
        "position": null,
        "image": null,
        "is_part": 1,
        "mountable": 0,
        "manufacturer": "Lowe Inc",
        "serialnumber1": "SN513MI",
        "serialnumber2": null,
        "service_tag": "ST008UD",
        "comments": null,
        "label": "similique",
        "description": "Est recusandae et voluptatem nam omnis ipsa.",
        "purchase_date": "2025-09-04",
        "warranty_months": 24,
        "warranty_info": null,
        "status": "available",
        "function": null,
        "origin": null,
        "buy_price": 0,
        "appdata": false,
        "notes": null,
        "created_at": "2026-09-04 09:48:22",
        "updated_at": "2026-09-04 09:48:22"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/items/{id}/metadata/assign

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item. Example: 1

Body Parameters

slug   string     

The slug of the item metadata field. Must match an existing stored value. Example: ipmi.ip

value   string  optional    

The value for the item metadata field. Null clears the value. Example: 192.168.56.180

Delete Item

requires authentication

Removes the specified item from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/items/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/items/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/items/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/items/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item. Example: 5

Item Type Fields

List Item Type Fields

requires authentication

Returns a paginated list of item type fields.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/fields?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/fields'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/fields';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 194,
            "related_type": null,
            "element": "text",
            "group": "Base",
            "slug": "dolores.explicabo.deserunt",
            "label": "Meggie White PhD",
            "options": {
                "aliquam aperiam aut omnis qui": "aliquam aperiam aut omnis qui"
            },
            "predefined": 1,
            "hidden": 0,
            "provisionable": 0,
            "combined": 0,
            "filterable": 0,
            "filterable_type": null,
            "unique": 0,
            "sortable": 1,
            "encrypted": 1,
            "additional_rules": [
                "soluta",
                "nam",
                "voluptas",
                "totam",
                "et"
            ],
            "order": 36,
            "types": [],
            "created_at": "2026-09-04 09:48:24",
            "updated_at": "2026-09-04 09:48:24"
        },
        {
            "id": 195,
            "related_type": null,
            "element": "textarea",
            "group": "Base",
            "slug": "nihil.ad.eum",
            "label": "Jaeden Stehr",
            "options": {
                "temporibus aut neque quos saepe": "temporibus aut neque quos saepe"
            },
            "predefined": 1,
            "hidden": 0,
            "provisionable": 0,
            "combined": 0,
            "filterable": 0,
            "filterable_type": null,
            "unique": 0,
            "sortable": 0,
            "encrypted": 0,
            "additional_rules": [
                "eum",
                "ut",
                "in",
                "id",
                "cumque"
            ],
            "order": 27,
            "types": [],
            "created_at": "2026-09-04 09:48:24",
            "updated_at": "2026-09-04 09:48:24"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/fields?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/fields",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/fields

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, slug, predefined, label, unique. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, slug, predefined, label, unique. Example: id

Show Item Type Field

requires authentication

Display detailed information about a single item type field by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/fields/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/fields/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/fields/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 196,
        "related_type": null,
        "element": "textarea",
        "group": "Base",
        "slug": "autem.aut.qui",
        "label": "Jared Lebsack",
        "options": {
            "debitis nostrum ab nam tenetur": "debitis nostrum ab nam tenetur"
        },
        "predefined": 1,
        "hidden": 0,
        "provisionable": 1,
        "combined": 0,
        "filterable": 0,
        "filterable_type": null,
        "unique": 0,
        "sortable": 1,
        "encrypted": 0,
        "additional_rules": [
            "soluta",
            "consequatur",
            "voluptatum",
            "fuga",
            "vitae"
        ],
        "order": 96,
        "values": [],
        "types": [],
        "created_at": "2026-09-04 09:48:24",
        "updated_at": "2026-09-04 09:48:24"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/fields/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item type field. Example: 1

Create Item Type Field

requires authentication

Store a new item type field in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/fields" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"element\": \"text\",
    \"group\": \"Base\",
    \"slug\": \"hostname\",
    \"label\": \"Host Name\",
    \"options\": \"option1,option2\",
    \"hidden\": false,
    \"provisionable\": true,
    \"combined\": false,
    \"filterable\": true,
    \"filterable_type\": \"equals\",
    \"unique\": true,
    \"sortable\": true,
    \"encrypted\": false,
    \"additional_rules\": [
        \"ip\",
        \"email\"
    ],
    \"order\": 1,
    \"types\": [
        1
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/fields'
payload = {
    "element": "text",
    "group": "Base",
    "slug": "hostname",
    "label": "Host Name",
    "options": "option1,option2",
    "hidden": false,
    "provisionable": true,
    "combined": false,
    "filterable": true,
    "filterable_type": "equals",
    "unique": true,
    "sortable": true,
    "encrypted": false,
    "additional_rules": [
        "ip",
        "email"
    ],
    "order": 1,
    "types": [
        1
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/fields';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'element' => 'text',
            'group' => 'Base',
            'slug' => 'hostname',
            'label' => 'Host Name',
            'options' => 'option1,option2',
            'hidden' => false,
            'provisionable' => true,
            'combined' => false,
            'filterable' => true,
            'filterable_type' => 'equals',
            'unique' => true,
            'sortable' => true,
            'encrypted' => false,
            'additional_rules' => [
                'ip',
                'email',
            ],
            'order' => 1,
            'types' => [
                1,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 197,
        "related_type": null,
        "element": "textarea",
        "group": "Base",
        "slug": "aut.est.occaecati",
        "label": "Mellie Gleichner PhD",
        "options": {
            "sunt a excepturi sed molestias": "sunt a excepturi sed molestias"
        },
        "predefined": 0,
        "hidden": 1,
        "provisionable": 0,
        "combined": 0,
        "filterable": 0,
        "filterable_type": null,
        "unique": 1,
        "sortable": 0,
        "encrypted": 0,
        "additional_rules": [
            "cum",
            "et",
            "rerum",
            "nulla",
            "ad"
        ],
        "order": 2,
        "values": [],
        "types": [],
        "created_at": "2026-09-04 09:48:24",
        "updated_at": "2026-09-04 09:48:24"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/fields

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

element   string     

The type of element. Example: text

Must be one of:
  • text
  • dropdown
  • text_multi
  • textarea
group   string  optional    

The group this field belongs to. Can be "Base", "System", "IPMI Additional Settings", "SSH Settings", or a custom group. Must not be greater than 255 characters. Example: Base

slug   string     

Unique identifier for the field. Must not be greater than 255 characters. Example: hostname

label   string     

Human-readable label for the field. Must not be greater than 255 characters. Example: Host Name

options   string  optional    

Comma seperated optional list for dropdown element type. Example: option1,option2

hidden   boolean  optional    

Determines if the field is hidden. Example: false

provisionable   boolean  optional    

Determines if the field is provisionable. Example: true

combined   boolean  optional    

Determines if the field is combined. Example: false

filterable   boolean  optional    

Determines if the field is filterable. Example: true

filterable_type   string  optional    

Type of filter. This field is required when filterable is 1. Example: equals

unique   boolean  optional    

Determines if the field value must be unique. Example: true

sortable   boolean  optional    

Determines if the field is sortable. Example: true

encrypted   boolean  optional    

Determines if the field value will be stored encrypted. Example: false

additional_rules   object  optional    

Additional rules for the field.

order   integer  optional    

Position of the field in the list. Must be at least 0. Example: 1

types   integer[]  optional    

List of related item type IDs. Must match an existing stored value.

Update Item Type Field

requires authentication

Updates the specified item type field with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/fields/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"element\": \"text\",
    \"group\": \"Base\",
    \"slug\": \"hostname\",
    \"label\": \"Host Name\",
    \"options\": \"option1,option2\",
    \"hidden\": false,
    \"provisionable\": true,
    \"combined\": false,
    \"filterable\": true,
    \"filterable_type\": \"equals\",
    \"unique\": true,
    \"sortable\": true,
    \"encrypted\": false,
    \"additional_rules\": [
        \"ip\",
        \"email\"
    ],
    \"order\": 1,
    \"types\": [
        1
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/fields/1'
payload = {
    "element": "text",
    "group": "Base",
    "slug": "hostname",
    "label": "Host Name",
    "options": "option1,option2",
    "hidden": false,
    "provisionable": true,
    "combined": false,
    "filterable": true,
    "filterable_type": "equals",
    "unique": true,
    "sortable": true,
    "encrypted": false,
    "additional_rules": [
        "ip",
        "email"
    ],
    "order": 1,
    "types": [
        1
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/fields/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'element' => 'text',
            'group' => 'Base',
            'slug' => 'hostname',
            'label' => 'Host Name',
            'options' => 'option1,option2',
            'hidden' => false,
            'provisionable' => true,
            'combined' => false,
            'filterable' => true,
            'filterable_type' => 'equals',
            'unique' => true,
            'sortable' => true,
            'encrypted' => false,
            'additional_rules' => [
                'ip',
                'email',
            ],
            'order' => 1,
            'types' => [
                1,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 198,
        "related_type": null,
        "element": "dropdown",
        "group": "Base",
        "slug": "adipisci.est.illum",
        "label": "Prof. Adolphus Hoeger",
        "options": {
            "occaecati aperiam perferendis recusandae quos": "occaecati aperiam perferendis recusandae quos"
        },
        "predefined": 0,
        "hidden": 1,
        "provisionable": 0,
        "combined": 0,
        "filterable": 0,
        "filterable_type": null,
        "unique": 1,
        "sortable": 0,
        "encrypted": 0,
        "additional_rules": [
            "quidem",
            "quia",
            "sit",
            "dolor",
            "sit"
        ],
        "order": 65,
        "values": [],
        "types": [],
        "created_at": "2026-09-04 09:48:24",
        "updated_at": "2026-09-04 09:48:24"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/fields/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item type field. Example: 1

Body Parameters

element   string  optional    

The type of element. Example: text

Must be one of:
  • text
  • dropdown
  • text_multi
  • textarea
group   string  optional    

The group this field belongs to. Can be "Base", "System", "IPMI Additional Settings", "SSH Settings", or a custom group. Must not be greater than 255 characters. Example: Base

slug   string  optional    

Unique identifier for the field. Must not be greater than 255 characters. Example: hostname

label   string  optional    

Human-readable label for the field. Must not be greater than 255 characters. Example: Host Name

options   string  optional    

Comma seperated optional list for dropdown element type. Example: option1,option2

hidden   boolean  optional    

Determines if the field is hidden. Example: false

provisionable   boolean  optional    

Determines if the field is provisionable. Example: true

combined   boolean  optional    

Determines if the field is combined. Example: false

filterable   boolean  optional    

Determines if the field is filterable. Example: true

filterable_type   string  optional    

Type of filter. This field is required when filterable is 1. Example: equals

unique   boolean  optional    

Determines if the field value must be unique. Example: true

sortable   boolean  optional    

Determines if the field is sortable. Example: true

encrypted   boolean  optional    

Determines if the field value will be stored encrypted. Example: false

additional_rules   object  optional    

Additional rules for the field.

order   integer  optional    

Position of the field in the list. Must be at least 0. Example: 1

types   integer[]  optional    

List of related item type IDs. Must match an existing stored value.

Delete Item Type Field

requires authentication

Removes the specified item type field from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/fields/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/fields/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/fields/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/fields/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the item type field. Example: 5

Power Ports

List Power Ports

requires authentication

Returns a paginated list of power ports.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/power-ports?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/power-ports'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/power-ports';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 3279,
            "name": "aut",
            "description": "Illo nesciunt magnam hic nostrum nobis beatae possimus exercitationem.",
            "item_id": 2136,
            "colocation_id": 0,
            "port_number": 29,
            "port_label": "maiores",
            "user_label": "quaerat",
            "outlet_state": "up",
            "connected_item": null,
            "connected_port": null,
            "power_usage": 75,
            "power_usage_units": "Amps",
            "power_usage_value": 75,
            "power_usage_unit": "amps",
            "power_usage_label": "75 Amps",
            "created_at": "2026-09-04 09:48:24",
            "updated_at": "2026-09-04 09:48:24"
        },
        {
            "id": 3280,
            "name": "beatae",
            "description": "Suscipit est ut qui consequatur.",
            "item_id": 2137,
            "colocation_id": 0,
            "port_number": 15,
            "port_label": "exercitationem",
            "user_label": "reprehenderit",
            "outlet_state": "outletOn",
            "connected_item": null,
            "connected_port": null,
            "power_usage": 86,
            "power_usage_units": "Amps",
            "power_usage_value": 86,
            "power_usage_unit": "amps",
            "power_usage_label": "86 Amps",
            "created_at": "2026-09-04 09:48:30",
            "updated_at": "2026-09-04 09:48:30"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/power-ports?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/power-ports",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/power-ports

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, item_id, colocation_id, port_number, port_index, name, port_label, description. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, item_id, colocation_id, port_number, port_index, name, port_label, description. Example: id

Show Power Port

requires authentication

Display detailed information about a single power port by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/power-ports/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/power-ports/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/power-ports/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 3281,
        "name": "non",
        "description": "Quasi in omnis et.",
        "item": {
            "id": 2138,
            "name": null,
            "label": "iusto",
            "type_id": 3000,
            "location_id": 4873,
            "status": "available",
            "description": "Ipsa tempora aliquam magnam et.",
            "is_part": false,
            "mountable": true,
            "manufacturer": "Batz PLC",
            "position": null,
            "size": 1,
            "image": null,
            "data_ports": 0,
            "serialnumber1": "SN786ZV",
            "serialnumber2": null,
            "service_tag": "ST552OV",
            "comments": null,
            "notes": null,
            "purchase_date": "2025-09-04",
            "warranty_months": 24,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": 0,
            "appdata": false,
            "fields_data": null,
            "parts_data": null,
            "created_at": "2026-09-04T07:48:35.000000Z",
            "updated_at": "2026-09-04T07:48:35.000000Z"
        },
        "colocation": null,
        "port_number": 40,
        "port_label": "non",
        "user_label": "facere",
        "outlet_state": "down",
        "connected_item": null,
        "connected_port": null,
        "power_usage": 97,
        "power_usage_units": "Amps",
        "power_usage_value": 97,
        "power_usage_unit": "amps",
        "power_usage_label": "97 Amps",
        "created_at": "2026-09-04 09:48:35",
        "updated_at": "2026-09-04 09:48:35"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/power-ports/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the power port. Example: 1

Create Power Port

requires authentication

Store a new power port in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/power-ports" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"port_number\": 1,
    \"device_id\": 115,
    \"port_label\": \"Power Port 1\",
    \"primary\": true,
    \"description\": \"This is description of the power port\",
    \"user_label\": \"Description of power port\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/power-ports'
payload = {
    "port_number": 1,
    "device_id": 115,
    "port_label": "Power Port 1",
    "primary": true,
    "description": "This is description of the power port",
    "user_label": "Description of power port"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/power-ports';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'port_number' => 1,
            'device_id' => 115,
            'port_label' => 'Power Port 1',
            'primary' => true,
            'description' => 'This is description of the power port',
            'user_label' => 'Description of power port',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 3282,
        "name": "fuga",
        "description": "Ut aut nobis error.",
        "item": null,
        "colocation": null,
        "port_number": 3,
        "port_label": "laborum",
        "user_label": "iste",
        "outlet_state": "outletOn",
        "connected_item": null,
        "connected_port": null,
        "power_usage": 10,
        "power_usage_units": "Amps",
        "power_usage_value": 10,
        "power_usage_unit": "amps",
        "power_usage_label": "10 Amps",
        "created_at": "2026-09-04 09:48:42",
        "updated_at": "2026-09-04 09:48:42"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/power-ports

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

port_number   integer     

The number of the power port. Must be at least 1. Example: 1

device_id   integer     

Device Id for which power port should be created. Must match an existing stored value. Example: 115

port_label   string  optional    

The label of the power port. Must not be greater than 255 characters. Example: Power Port 1

primary   boolean  optional    

Determine if the power port is primary. Example: true

description   string  optional    

The description of the power port. Example: This is description of the power port

user_label   string  optional    

The user label of the power port. Example: Description of power port

Update Power Port

requires authentication

Updates the specified power port with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/power-ports/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"port_number\": 1,
    \"port_label\": 32,
    \"primary\": true,
    \"description\": \"This is description of the power port\",
    \"user_label\": \"Description of power port\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/power-ports/1'
payload = {
    "port_number": 1,
    "port_label": 32,
    "primary": true,
    "description": "This is description of the power port",
    "user_label": "Description of power port"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/power-ports/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'port_number' => 1,
            'port_label' => 32,
            'primary' => true,
            'description' => 'This is description of the power port',
            'user_label' => 'Description of power port',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 3283,
        "name": "eveniet",
        "description": "Et autem soluta exercitationem ea.",
        "item": null,
        "colocation": null,
        "port_number": 46,
        "port_label": "necessitatibus",
        "user_label": "laudantium",
        "outlet_state": "outletOff",
        "connected_item": null,
        "connected_port": null,
        "power_usage": 50,
        "power_usage_units": "Amps",
        "power_usage_value": 50,
        "power_usage_unit": "amps",
        "power_usage_label": "50 Amps",
        "created_at": "2026-09-04 09:48:47",
        "updated_at": "2026-09-04 09:48:47"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/power-ports/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the power port. Example: 1

Body Parameters

port_number   integer  optional    

The number of the power port. Must be at least 1. Example: 1

port_label   string  optional    

The label of the power port. Must not be greater than 255 characters. Example: 32

primary   boolean  optional    

Determine if the power port is primary. Example: true

description   string  optional    

The description of the power port. Example: This is description of the power port

user_label   string  optional    

The user label of the power port. Example: Description of power port

Assign Power Port

requires authentication

Assign power port to another port

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/power-ports/1/assign" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"connected_item\": 12,
    \"connected_port\": 115
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/power-ports/1/assign'
payload = {
    "connected_item": 12,
    "connected_port": 115
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/power-ports/1/assign';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'connected_item' => 12,
            'connected_port' => 115,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 3284,
        "name": "rerum",
        "description": "Dolorem nostrum alias quae voluptas.",
        "item": null,
        "colocation": null,
        "port_number": 35,
        "port_label": "non",
        "user_label": "molestias",
        "outlet_state": "up",
        "connected_item": null,
        "connected_port": null,
        "power_usage": 35,
        "power_usage_units": "Amps",
        "power_usage_value": 35,
        "power_usage_unit": "amps",
        "power_usage_label": "35 Amps",
        "created_at": "2026-09-04 09:48:53",
        "updated_at": "2026-09-04 09:48:53"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/power-ports/{id}/assign

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the power port. Example: 1

Body Parameters

connected_item   integer     

Item id of connected item. Must match an existing stored value. Example: 12

connected_port   integer     

Port Id of connected port. Must match an existing stored value. Example: 115

Unassign Power Port

requires authentication

Unassigns power port

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/power-ports/1/unassign" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/power-ports/1/unassign'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/power-ports/1/unassign';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 3285,
        "name": "eveniet",
        "description": "Dolores voluptatem dolorum itaque aperiam.",
        "item": {
            "id": 2142,
            "name": null,
            "label": "voluptatem",
            "type_id": 3008,
            "location_id": 4889,
            "status": "available",
            "description": "Beatae expedita dolor laborum non.",
            "is_part": false,
            "mountable": true,
            "manufacturer": "Romaguera, Hettinger and Littel",
            "position": null,
            "size": 1,
            "image": null,
            "data_ports": 0,
            "serialnumber1": "SN286PE",
            "serialnumber2": null,
            "service_tag": "ST297JH",
            "comments": null,
            "notes": null,
            "purchase_date": "2025-09-04",
            "warranty_months": 24,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": 0,
            "appdata": false,
            "fields_data": null,
            "parts_data": null,
            "created_at": "2026-09-04T07:48:58.000000Z",
            "updated_at": "2026-09-04T07:48:58.000000Z"
        },
        "colocation": null,
        "port_number": 14,
        "port_label": "qui",
        "user_label": "omnis",
        "outlet_state": "up",
        "connected_item": null,
        "connected_port": null,
        "power_usage": 67,
        "power_usage_units": "Amps",
        "power_usage_value": 67,
        "power_usage_unit": "amps",
        "power_usage_label": "67 Amps",
        "created_at": "2026-09-04 09:48:58",
        "updated_at": "2026-09-04 09:48:58"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/power-ports/{id}/unassign

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the power port. Example: 1

Perform action on a specific Power Port

requires authentication

Executes an outlet action (outletOn, outletOff, outletReboot) for a given port.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/power-ports/1/action" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"action\": \"outletOff\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/power-ports/1/action'
payload = {
    "action": "outletOff"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/power-ports/1/action';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'action' => 'outletOff',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 3286,
        "name": "quidem",
        "description": "Velit debitis consequuntur sit est voluptates.",
        "item": null,
        "colocation": null,
        "port_number": 27,
        "port_label": "ex",
        "user_label": "magni",
        "outlet_state": "outletOff",
        "connected_item": null,
        "connected_port": null,
        "power_usage": 27,
        "power_usage_units": "Amps",
        "power_usage_value": 27,
        "power_usage_unit": "amps",
        "power_usage_label": "27 Amps",
        "created_at": "2026-09-04 09:49:05",
        "updated_at": "2026-09-04 09:49:05"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/power-ports/{id}/action

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the power port. Example: 1

Body Parameters

action   string     

The outlet action to perform. Must be one of: outletOn, outletOff, outletReboot. Example: outletOff

Must be one of:
  • outletOn
  • outletOff
  • outletReboot

Delete Power Port

requires authentication

Removes the specified power port from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/power-ports/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/power-ports/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/power-ports/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/power-ports/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the power port. Example: 5

Sensors

List Sensors

requires authentication

Returns a paginated list of sensors.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/sensors?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/sensors'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/sensors';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 2670,
            "item_id": 2144,
            "name": "explicabo",
            "class": "Fans",
            "type": "Thermal",
            "unit": "Volts",
            "index": "Thermal",
            "reading": 368,
            "last_polled": "0000-00-00 00:00:00",
            "configuration": [],
            "created_at": "2026-09-04 09:49:13",
            "updated_at": "2026-09-04 09:49:13"
        },
        {
            "id": 2671,
            "item_id": 2145,
            "name": "ullam",
            "class": "Power Supply",
            "type": "Power",
            "unit": "Percent",
            "index": "Power",
            "reading": 565,
            "last_polled": "0000-00-00 00:00:00",
            "configuration": [],
            "created_at": "2026-09-04 09:49:15",
            "updated_at": "2026-09-04 09:49:15"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/sensors?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/sensors",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/sensors

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, item_id, name, class, type. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, item_id, name, class, type. Example: id

Show sensor

requires authentication

Display detailed information about a single sensor by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/sensors/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/sensors/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/sensors/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2672,
        "item_id": 2146,
        "name": "quia",
        "class": "Fans",
        "type": "Power",
        "unit": "Voltages",
        "index": "Power",
        "reading": 158,
        "last_polled": "0000-00-00 00:00:00",
        "configuration": [],
        "created_at": "2026-09-04 09:49:18",
        "updated_at": "2026-09-04 09:49:18"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/sensors/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the sensor. Example: 1

Delete Sensor

requires authentication

Removes the specified sensor from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/sensors/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/sensors/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/sensors/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/sensors/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the sensor. Example: 5

Access Levels

List Services Access Levels

requires authentication

Returns a paginated list of access levels.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/service-access-levels?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/service-access-levels'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/service-access-levels';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 90,
            "name": "omnis",
            "type": "Colocation",
            "default": 1,
            "value": "a:5:{s:13:\"base_features\";a:5:{i:0;s:8:\"location\";i:1;s:8:\"position\";i:2;s:5:\"model\";i:3;s:11:\"description\";i:4;s:5:\"label\";}s:18:\"traffic_statistics\";a:5:{i:0;s:20:\"widget_network_ports\";i:1;s:9:\"filtering\";i:2;s:17:\"left_sidebar_link\";i:3;s:17:\"widget_last_month\";i:4;s:23:\"widget_last_month_graph\";}s:5:\"power\";a:6:{i:0;s:23:\"widget_last_month_graph\";i:1;s:17:\"widget_last_month\";i:2;s:9:\"filtering\";i:3;s:17:\"left_sidebar_link\";i:4;s:20:\"widget_average_usage\";i:5;s:7:\"outlets\";}s:4:\"ipam\";a:1:{i:0;s:30:\"ipam_widget_in_service_summary\";}s:11:\"dns-manager\";a:4:{i:0;s:11:\"delete_rdns\";i:1;s:11:\"create_rdns\";i:2;s:11:\"update_rdns\";i:3;s:22:\"rdns_left_sidebar_link\";}}"
        },
        {
            "id": 91,
            "name": "quo",
            "type": "Colocation",
            "default": 0,
            "value": "a:5:{s:13:\"base_features\";a:5:{i:0;s:5:\"model\";i:1;s:5:\"label\";i:2;s:8:\"location\";i:3;s:11:\"description\";i:4;s:8:\"position\";}s:18:\"traffic_statistics\";a:5:{i:0;s:17:\"left_sidebar_link\";i:1;s:17:\"widget_last_month\";i:2;s:20:\"widget_network_ports\";i:3;s:23:\"widget_last_month_graph\";i:4;s:9:\"filtering\";}s:5:\"power\";a:6:{i:0;s:7:\"outlets\";i:1;s:17:\"left_sidebar_link\";i:2;s:17:\"widget_last_month\";i:3;s:9:\"filtering\";i:4;s:23:\"widget_last_month_graph\";i:5;s:20:\"widget_average_usage\";}s:4:\"ipam\";a:1:{i:0;s:30:\"ipam_widget_in_service_summary\";}s:11:\"dns-manager\";a:4:{i:0;s:11:\"create_rdns\";i:1;s:11:\"delete_rdns\";i:2;s:11:\"update_rdns\";i:3;s:22:\"rdns_left_sidebar_link\";}}"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/service-access-levels?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/service-access-levels",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/service-access-levels

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, type. Example: id

Devices

List Devices

requires authentication

Returns a paginated list of devices.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/devices?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/devices'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/devices';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 2147,
            "label": "quia",
            "model": "blanditiis",
            "product_id": 0,
            "model_id": 2480,
            "parent_id": 0,
            "type_id": 3018,
            "user_id": 9049,
            "order_id": 939,
            "location_id": 4903,
            "rack_id": 0,
            "blade_id": 0,
            "os_installation": 0,
            "colocation_id": 0,
            "provisioning_id": 0,
            "manufacturer": "Runte, Kassulke and Zemlak",
            "description": "Qui quasi ut dolorem ratione qui eius omnis.",
            "comments": null,
            "status": "available",
            "device_status": "running",
            "service_status": "activated",
            "function": null,
            "serialnumber1": "SN100AI",
            "serialnumber2": null,
            "service_tag": "ST178JA",
            "location": "Cummings, Hilpert and Koch",
            "metadata": [],
            "locked": 0,
            "last_discovered": "Never",
            "discovery_time": 0,
            "last_polled": "Never",
            "poller_disabled": 0,
            "poller_time": 0,
            "last_hour_traffic": 0,
            "last_day_traffic": 0,
            "last_week_traffic": 0,
            "last_month_traffic": 0,
            "current_month_traffic": 0,
            "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
            "device_traffic": null
        },
        {
            "id": 2148,
            "label": "voluptas",
            "model": "est",
            "product_id": 0,
            "model_id": 2482,
            "parent_id": 0,
            "type_id": 3020,
            "user_id": 9056,
            "order_id": 940,
            "location_id": 4907,
            "rack_id": 0,
            "blade_id": 0,
            "os_installation": 0,
            "colocation_id": 0,
            "provisioning_id": 0,
            "manufacturer": "Nader-Veum",
            "description": "Fuga voluptatem natus iste sapiente quia omnis.",
            "comments": null,
            "status": "available",
            "device_status": "running",
            "service_status": "activated",
            "function": null,
            "serialnumber1": "SN260YK",
            "serialnumber2": null,
            "service_tag": "ST824LI",
            "location": "Collier Inc",
            "metadata": [],
            "locked": 0,
            "last_discovered": "Never",
            "discovery_time": 0,
            "last_polled": "Never",
            "poller_disabled": 0,
            "poller_time": 0,
            "last_hour_traffic": 0,
            "last_day_traffic": 0,
            "last_week_traffic": 0,
            "last_month_traffic": 0,
            "current_month_traffic": 0,
            "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
            "device_traffic": null
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/devices?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/devices",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/devices

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, model_id, order_id, parent_id, colocation_id, type_id, user_id, location_id, rack_id, provisioning_id, label, model, manufacturer, serialnumber1, serialnumber2, service_tag, description, comments, status, device_status, service_status, function, poller_disabled, locked, metadata. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, model_id, order_id, parent_id, colocation_id, type_id, user_id, location_id, rack_id, provisioning_id, label, model, manufacturer, serialnumber1, serialnumber2, service_tag, description, comments, status, device_status, service_status, function, poller_disabled, locked, metadata. Example: id

Show Device

requires authentication

Display detailed information about a single device by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/devices/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/devices/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/devices/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2149,
        "product_id": 0,
        "model_id": 2484,
        "parent_id": 0,
        "type_id": 3022,
        "user_id": 9063,
        "order_id": 941,
        "location_id": 4911,
        "rack_id": 0,
        "blade_id": 0,
        "os_installation": 0,
        "colocation_id": 0,
        "provisioning_id": 0,
        "position": null,
        "image": null,
        "tags": null,
        "size": 1,
        "size_position": "full",
        "data_ports": 0,
        "power_supplies": 0,
        "manufacturer": "Kuhlman-Bergnaum",
        "serialnumber1": "SN810NU",
        "serialnumber2": null,
        "service_tag": "ST508JL",
        "comments": null,
        "label": "velit",
        "description": "Quasi aut eos laboriosam ut voluptatem.",
        "ip_addresses": [],
        "purchase_date": "2025-09-04",
        "warranty_months": 24,
        "warranty_info": null,
        "status": "available",
        "is_service": 0,
        "service_status": "activated",
        "device_status": "running",
        "function": null,
        "maintenance_instruction": null,
        "origin": null,
        "buy_price": 0,
        "appdata": false,
        "notes": null,
        "locked": 0,
        "last_discovered": "Never",
        "discovery_time": 0,
        "last_polled": "Never",
        "poller_disabled": 0,
        "poller_time": 0,
        "last_hour_traffic": 0,
        "last_day_traffic": 0,
        "last_week_traffic": 0,
        "last_month_traffic": 0,
        "current_month_traffic": 0,
        "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
        "metadata": [],
        "device_traffic": null,
        "type": {
            "id": 3022,
            "name": "illum",
            "description": "Ipsum magnam itaque exercitationem.",
            "hardware": 1,
            "software": 1,
            "predefined": 0,
            "color": "silver",
            "created_at": "2026-09-04 09:49:29",
            "updated_at": "2026-09-04 09:49:29"
        },
        "model": {
            "id": 2484,
            "name": "et",
            "label": null,
            "type_id": 3022,
            "location_id": 0,
            "status": null,
            "description": null,
            "is_part": false,
            "mountable": true,
            "manufacturer": null,
            "position": null,
            "size": 1,
            "image": null,
            "data_ports": null,
            "serialnumber1": null,
            "serialnumber2": null,
            "service_tag": null,
            "comments": null,
            "notes": null,
            "purchase_date": null,
            "warranty_months": null,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": null,
            "appdata": false,
            "fields_data": false,
            "parts_data": false,
            "created_at": "2026-09-04T07:49:34.000000Z",
            "updated_at": "2026-09-04T07:49:34.000000Z"
        },
        "user": {
            "id": 9063,
            "username": "gdach",
            "email": "[email protected]",
            "name": "Josiane Jakubowski",
            "firstname": "Josiane",
            "lastname": "Jakubowski",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/8477551a922f6275731905216f2ce2b5?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/8477551a922f6275731905216f2ce2b5?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        "location": {
            "id": 4911,
            "app_id": null,
            "name": "Dietrich-Dietrich",
            "address": "247 Waelchi Trafficway Apt. 536\nLake Misael, MI 59046",
            "city": "East Irwin",
            "state": "Oregon",
            "description": "Aut officiis et dolor quo recusandae. Facilis minima et ut in dolor. Asperiores sed sunt facere aliquam quis facilis. Dicta quas sit delectus corporis dolores nihil assumenda.",
            "notes": "Et nam ullam eveniet et. Officiis deserunt iure voluptatem. Ut in id autem doloremque quia eligendi.",
            "emergency": "0",
            "phone": "+1.480.601.8124",
            "flag": "Germany.png",
            "created_at": "2026-09-04 09:49:32",
            "updated_at": "2026-09-04 09:49:32"
        },
        "rack": null,
        "parent": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/devices/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 1

Create Device

requires authentication

Store a new device in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/devices" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"label\": \"Intel Xeon\",
    \"model\": 123,
    \"type_id\": 1,
    \"parent\": 10,
    \"location\": 3,
    \"client\": 5,
    \"rack\": 7,
    \"position\": 12,
    \"size\": 1,
    \"size_position\": \"front\",
    \"is_part\": true,
    \"manufacturer\": \"Intel\",
    \"serialnumber1\": \"SN123456789\",
    \"service_tag\": \"ST987654\",
    \"comments\": \"Example comment\",
    \"description\": \"Intel Xeon server CPU with 8 cores\",
    \"purchase_date\": \"2025-09-17\",
    \"warranty_months\": 36,
    \"warranty_info\": \"Standard 3-year warranty\",
    \"status\": \"available\",
    \"function\": \"Server CPU\",
    \"origin\": \"Warehouse A\",
    \"buy_price\": 2500.5,
    \"appdata\": {
        \"key\": \"value\"
    },
    \"notes\": \"Needs firmware update\",
    \"provisioning_id\": 1,
    \"metadata\": [
        {
            \"metadata_id\": 37,
            \"value\": \"1\",
            \"raw_value\": \"1\"
        }
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/devices'
payload = {
    "label": "Intel Xeon",
    "model": 123,
    "type_id": 1,
    "parent": 10,
    "location": 3,
    "client": 5,
    "rack": 7,
    "position": 12,
    "size": 1,
    "size_position": "front",
    "is_part": true,
    "manufacturer": "Intel",
    "serialnumber1": "SN123456789",
    "service_tag": "ST987654",
    "comments": "Example comment",
    "description": "Intel Xeon server CPU with 8 cores",
    "purchase_date": "2025-09-17",
    "warranty_months": 36,
    "warranty_info": "Standard 3-year warranty",
    "status": "available",
    "function": "Server CPU",
    "origin": "Warehouse A",
    "buy_price": 2500.5,
    "appdata": {
        "key": "value"
    },
    "notes": "Needs firmware update",
    "provisioning_id": 1,
    "metadata": [
        {
            "metadata_id": 37,
            "value": "1",
            "raw_value": "1"
        }
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/devices';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'label' => 'Intel Xeon',
            'model' => 123,
            'type_id' => 1,
            'parent' => 10,
            'location' => 3,
            'client' => 5,
            'rack' => 7,
            'position' => 12,
            'size' => 1,
            'size_position' => 'front',
            'is_part' => true,
            'manufacturer' => 'Intel',
            'serialnumber1' => 'SN123456789',
            'service_tag' => 'ST987654',
            'comments' => 'Example comment',
            'description' => 'Intel Xeon server CPU with 8 cores',
            'purchase_date' => '2025-09-17',
            'warranty_months' => 36,
            'warranty_info' => 'Standard 3-year warranty',
            'status' => 'available',
            'function' => 'Server CPU',
            'origin' => 'Warehouse A',
            'buy_price' => 2500.5,
            'appdata' => [
                'key' => 'value',
            ],
            'notes' => 'Needs firmware update',
            'provisioning_id' => 1,
            'metadata' => [
                [
                    'metadata_id' => 37,
                    'value' => '1',
                    'raw_value' => '1',
                ],
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2150,
        "product_id": 0,
        "model_id": 2486,
        "parent_id": 0,
        "type_id": 3024,
        "user_id": 9070,
        "order_id": 942,
        "location_id": 4915,
        "rack_id": 0,
        "blade_id": 0,
        "os_installation": 0,
        "colocation_id": 0,
        "provisioning_id": 0,
        "position": null,
        "image": null,
        "tags": null,
        "size": 1,
        "size_position": "full",
        "data_ports": 0,
        "power_supplies": 0,
        "manufacturer": "O'Connell-Klocko",
        "serialnumber1": "SN036KJ",
        "serialnumber2": null,
        "service_tag": "ST214QK",
        "comments": null,
        "label": "ex",
        "description": "Eius maiores est iure ut laudantium eum sit accusantium.",
        "ip_addresses": [],
        "purchase_date": "2025-09-04",
        "warranty_months": 24,
        "warranty_info": null,
        "status": "available",
        "is_service": 0,
        "service_status": "activated",
        "device_status": "running",
        "function": null,
        "maintenance_instruction": null,
        "origin": null,
        "buy_price": 0,
        "appdata": false,
        "notes": null,
        "locked": 0,
        "last_discovered": "Never",
        "discovery_time": 0,
        "last_polled": "Never",
        "poller_disabled": 0,
        "poller_time": 0,
        "last_hour_traffic": 0,
        "last_day_traffic": 0,
        "last_week_traffic": 0,
        "last_month_traffic": 0,
        "current_month_traffic": 0,
        "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
        "metadata": [],
        "device_traffic": null,
        "type": {
            "id": 3024,
            "name": "placeat",
            "description": "Sed id sit incidunt qui.",
            "hardware": 1,
            "software": 0,
            "predefined": 0,
            "color": "black",
            "created_at": "2026-09-04 09:49:34",
            "updated_at": "2026-09-04 09:49:34"
        },
        "model": {
            "id": 2486,
            "name": "sequi",
            "label": null,
            "type_id": 3024,
            "location_id": 0,
            "status": null,
            "description": null,
            "is_part": true,
            "mountable": false,
            "manufacturer": null,
            "position": null,
            "size": 1,
            "image": null,
            "data_ports": null,
            "serialnumber1": null,
            "serialnumber2": null,
            "service_tag": null,
            "comments": null,
            "notes": null,
            "purchase_date": null,
            "warranty_months": null,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": null,
            "appdata": false,
            "fields_data": false,
            "parts_data": false,
            "created_at": "2026-09-04T07:49:39.000000Z",
            "updated_at": "2026-09-04T07:49:39.000000Z"
        },
        "user": {
            "id": 9070,
            "username": "fdavis",
            "email": "[email protected]",
            "name": "Rozella Mayer",
            "firstname": "Rozella",
            "lastname": "Mayer",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/64a921288a655cf7dd3b7a2192196151?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/64a921288a655cf7dd3b7a2192196151?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        "location": {
            "id": 4915,
            "app_id": null,
            "name": "Stroman-Heathcote",
            "address": "241 Streich Burg Apt. 055\nSouth Estellastad, NV 13951-0763",
            "city": "Lake Chelsieborough",
            "state": "Louisiana",
            "description": "Architecto praesentium est optio nemo deserunt ratione ut voluptas. Eum quis earum tempora ipsam doloribus sunt quisquam. Qui commodi consequuntur perferendis ab quidem.",
            "notes": "Quaerat est fugit minus enim sunt incidunt est. Eum consectetur doloremque eveniet iste tenetur.",
            "emergency": "1",
            "phone": "+1.979.653.5243",
            "flag": "Canada.png",
            "created_at": "2026-09-04 09:49:37",
            "updated_at": "2026-09-04 09:49:37"
        },
        "rack": null,
        "parent": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/devices

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

label   string     

The name of the device. Example: Intel Xeon

model   string     

The model ID of the device, or a custom string for new models. Example: 123

type_id   integer     

The type ID of the device. Must match an existing stored value. Example: 1

parent   integer  optional    

The parent device ID, if this device is mountable. Must match an existing stored value. Example: 10

location   integer  optional    

The location ID where the device is stored. Must match an existing stored value. Example: 3

client   integer  optional    

The client user ID assigned to the device. Must match an existing stored value. Example: 5

rack   integer  optional    

The rack cabinet in which the device is located. Must match an existing stored value. Example: 7

position   integer  optional    

Position of the device in a rack cabinet. Example: 12

size   integer  optional    

The height of the device in a rack cabinet. For example, if you choose 3, the device will occupy 3 units in a rack. Example: 1

size_position   string  optional    

Mounting type of the device in a rack cabinet. Example: front

Must be one of:
  • full
  • front
  • rear
is_part   boolean  optional    

Determine if this device is part. Example: true

manufacturer   string  optional    

The manufacturer of the device. Example: Intel

serialnumber1   string  optional    

Primary serial number of the device. Example: SN123456789

service_tag   string  optional    

Unique service tag or identifier of the device. Example: ST987654

comments   string  optional    

Any additional comments about the device. Example: Example comment

description   string  optional    

Detailed description of the device. Example: Intel Xeon server CPU with 8 cores

purchase_date   string  optional    

The purchase date of the device. Must be a valid date. Must be a valid date in the format Y-m-d. Example: 2025-09-17

warranty_months   integer  optional    

Warranty period in months. Example: 36

warranty_info   string  optional    

Additional warranty information. Example: Standard 3-year warranty

status   string  optional    

Current status of the device. Example: available

Must be one of:
  • available
  • bought
  • defect
  • in use
  • not_delivered
  • sold
  • repair
  • not_set
function   string  optional    

The function or role of the device. Example: Server CPU

origin   string  optional    

The origin or source of the device. Example: Warehouse A

buy_price   number  optional    

Purchase price of the device. Example: 2500.5

appdata   object  optional    

Additional application-specific data for the device.

notes   string  optional    

Additional notes about the device. Example: Needs firmware update

provisioning_id   integer  optional    

The ID of the provisioning server to assign to the device. Pass null to revert to the location-based provisioning server. Must match an existing stored value. Example: 1

metadata   object[]     
metadata_id   integer     

The ID of the metadata type. Must match an existing stored value. Example: 37

value   string     

The value of the metadata entry. Example: 1

raw_value   string  optional    

Optional raw value for the metadata entry. Example: 1

Update Device

requires authentication

Updates the specified device with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/devices/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"label\": \"Intel Xeon\",
    \"model\": 123,
    \"parent\": 10,
    \"location\": 3,
    \"client\": 5,
    \"rack\": 7,
    \"position\": 12,
    \"size\": 1,
    \"size_position\": \"front\",
    \"is_part\": true,
    \"manufacturer\": \"Intel\",
    \"serialnumber1\": \"SN123456789\",
    \"service_tag\": \"ST987654\",
    \"comments\": \"Example comment\",
    \"description\": \"Intel Xeon server CPU with 8 cores\",
    \"purchase_date\": \"2025-09-17\",
    \"warranty_months\": 36,
    \"warranty_info\": \"Standard 3-year warranty\",
    \"status\": \"available\",
    \"function\": \"Server CPU\",
    \"origin\": \"Warehouse A\",
    \"buy_price\": 2500.5,
    \"appdata\": {
        \"key\": \"value\"
    },
    \"notes\": \"Needs firmware update\",
    \"provisioning_id\": 1,
    \"metadata\": [
        {
            \"metadata_id\": 37,
            \"value\": \"1\",
            \"raw_value\": \"1\"
        }
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/devices/1'
payload = {
    "label": "Intel Xeon",
    "model": 123,
    "parent": 10,
    "location": 3,
    "client": 5,
    "rack": 7,
    "position": 12,
    "size": 1,
    "size_position": "front",
    "is_part": true,
    "manufacturer": "Intel",
    "serialnumber1": "SN123456789",
    "service_tag": "ST987654",
    "comments": "Example comment",
    "description": "Intel Xeon server CPU with 8 cores",
    "purchase_date": "2025-09-17",
    "warranty_months": 36,
    "warranty_info": "Standard 3-year warranty",
    "status": "available",
    "function": "Server CPU",
    "origin": "Warehouse A",
    "buy_price": 2500.5,
    "appdata": {
        "key": "value"
    },
    "notes": "Needs firmware update",
    "provisioning_id": 1,
    "metadata": [
        {
            "metadata_id": 37,
            "value": "1",
            "raw_value": "1"
        }
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/devices/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'label' => 'Intel Xeon',
            'model' => 123,
            'parent' => 10,
            'location' => 3,
            'client' => 5,
            'rack' => 7,
            'position' => 12,
            'size' => 1,
            'size_position' => 'front',
            'is_part' => true,
            'manufacturer' => 'Intel',
            'serialnumber1' => 'SN123456789',
            'service_tag' => 'ST987654',
            'comments' => 'Example comment',
            'description' => 'Intel Xeon server CPU with 8 cores',
            'purchase_date' => '2025-09-17',
            'warranty_months' => 36,
            'warranty_info' => 'Standard 3-year warranty',
            'status' => 'available',
            'function' => 'Server CPU',
            'origin' => 'Warehouse A',
            'buy_price' => 2500.5,
            'appdata' => [
                'key' => 'value',
            ],
            'notes' => 'Needs firmware update',
            'provisioning_id' => 1,
            'metadata' => [
                [
                    'metadata_id' => 37,
                    'value' => '1',
                    'raw_value' => '1',
                ],
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2151,
        "product_id": 0,
        "model_id": 2488,
        "parent_id": 0,
        "type_id": 3026,
        "user_id": 9077,
        "order_id": 943,
        "location_id": 4919,
        "rack_id": 0,
        "blade_id": 0,
        "os_installation": 0,
        "colocation_id": 0,
        "provisioning_id": 0,
        "position": null,
        "image": null,
        "tags": null,
        "size": 1,
        "size_position": "full",
        "data_ports": 0,
        "power_supplies": 0,
        "manufacturer": "Schneider PLC",
        "serialnumber1": "SN995FK",
        "serialnumber2": null,
        "service_tag": "ST132FP",
        "comments": null,
        "label": "natus",
        "description": "Ut facilis autem et sed dolores aut recusandae modi.",
        "ip_addresses": [],
        "purchase_date": "2025-09-04",
        "warranty_months": 24,
        "warranty_info": null,
        "status": "available",
        "is_service": 0,
        "service_status": "activated",
        "device_status": "running",
        "function": null,
        "maintenance_instruction": null,
        "origin": null,
        "buy_price": 0,
        "appdata": false,
        "notes": null,
        "locked": 0,
        "last_discovered": "Never",
        "discovery_time": 0,
        "last_polled": "Never",
        "poller_disabled": 0,
        "poller_time": 0,
        "last_hour_traffic": 0,
        "last_day_traffic": 0,
        "last_week_traffic": 0,
        "last_month_traffic": 0,
        "current_month_traffic": 0,
        "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
        "metadata": [],
        "device_traffic": null,
        "type": {
            "id": 3026,
            "name": "totam",
            "description": "Nemo enim quod maiores qui.",
            "hardware": 1,
            "software": 0,
            "predefined": 1,
            "color": "navy",
            "created_at": "2026-09-04 09:49:39",
            "updated_at": "2026-09-04 09:49:39"
        },
        "model": {
            "id": 2488,
            "name": "cumque",
            "label": null,
            "type_id": 3026,
            "location_id": 0,
            "status": null,
            "description": null,
            "is_part": true,
            "mountable": false,
            "manufacturer": null,
            "position": null,
            "size": 1,
            "image": null,
            "data_ports": null,
            "serialnumber1": null,
            "serialnumber2": null,
            "service_tag": null,
            "comments": null,
            "notes": null,
            "purchase_date": null,
            "warranty_months": null,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": null,
            "appdata": false,
            "fields_data": false,
            "parts_data": false,
            "created_at": "2026-09-04T07:49:45.000000Z",
            "updated_at": "2026-09-04T07:49:45.000000Z"
        },
        "user": {
            "id": 9077,
            "username": "jskiles",
            "email": "[email protected]",
            "name": "Destini Funk",
            "firstname": "Destini",
            "lastname": "Funk",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/0447d1c292b038a76a0050fb97d14e75?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/0447d1c292b038a76a0050fb97d14e75?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        "location": {
            "id": 4919,
            "app_id": null,
            "name": "Pacocha PLC",
            "address": "24733 Uriel Brooks\nLonzobury, NJ 00976-8501",
            "city": "Parisianland",
            "state": "West Virginia",
            "description": "Voluptas eligendi nulla nam sed ut. Possimus praesentium labore inventore illum. Repudiandae ipsum eos excepturi magnam animi. Numquam non odit quia rerum consequatur sit vel molestias. Quisquam soluta et magni perferendis eum quia mollitia.",
            "notes": "Qui et ratione rerum et quaerat rerum dolorum. Atque voluptatibus sed tempora doloribus blanditiis sint maiores. Nihil sunt porro suscipit facilis odio vero voluptatem dolorum.",
            "emergency": "1",
            "phone": "1-712-940-0163",
            "flag": "UK.png",
            "created_at": "2026-09-04 09:49:43",
            "updated_at": "2026-09-04 09:49:43"
        },
        "rack": null,
        "parent": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/devices/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 1

Body Parameters

label   string  optional    

The name of the device. Example: Intel Xeon

model   integer  optional    

The model ID of the device. Example: 123

parent   integer  optional    

The parent device ID, if this device is mountable. Must match an existing stored value. Example: 10

location   integer  optional    

The location ID where the device is stored. Must match an existing stored value. Example: 3

client   integer  optional    

The user ID assigned to the device. Must match an existing stored value. Example: 5

rack   integer  optional    

The rack cabinet in which the device is located. Must match an existing stored value. Example: 7

position   integer  optional    

Position of the device in a rack cabinet. Example: 12

size   integer  optional    

The height of the device in a rack cabinet. For example, if you choose 3, the device will occupy 3 units in a rack. Example: 1

size_position   string  optional    

Mounting type of the device in a rack cabinet. Example: front

Must be one of:
  • full
  • front
  • rear
is_part   boolean  optional    

Determine if this device is part. Example: true

manufacturer   string  optional    

The manufacturer of the device. Example: Intel

serialnumber1   string  optional    

Primary serial number of the device. Example: SN123456789

service_tag   string  optional    

Unique service tag or identifier of the device. Example: ST987654

comments   string  optional    

Any additional comments about the device. Example: Example comment

description   string  optional    

Detailed description of the device. Example: Intel Xeon server CPU with 8 cores

purchase_date   string  optional    

The purchase date of the device. Must be a valid date. Must be a valid date in the format Y-m-d. Example: 2025-09-17

warranty_months   integer  optional    

Warranty period in months. Example: 36

warranty_info   string  optional    

Additional warranty information. Example: Standard 3-year warranty

status   string  optional    

Current status of the device. Example: available

Must be one of:
  • available
  • bought
  • defect
  • in use
  • not_delivered
  • sold
  • repair
  • not_set
function   string  optional    

The function or role of the device. Example: Server CPU

origin   string  optional    

The origin or source of the device. Example: Warehouse A

buy_price   number  optional    

Purchase price of the device. Example: 2500.5

appdata   object  optional    

Additional application-specific data for the device.

notes   string  optional    

Additional notes about the device. Example: Needs firmware update

provisioning_id   integer  optional    

The ID of the provisioning server to assign to the device. Pass null to revert to the location-based provisioning server. Must match an existing stored value. Example: 1

metadata   object[]     
metadata_id   integer     

The ID of the metadata type. Must match an existing stored value. Example: 37

value   string     

The value of the metadata entry. Example: 1

raw_value   string  optional    

Optional raw value for the metadata entry. Example: 1

Assign Metadata To Device

requires authentication

Assigns metadata for specified device.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/devices/1/metadata/assign" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"slug\": \"ipmi.ip\",
    \"value\": \"192.168.56.180\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/devices/1/metadata/assign'
payload = {
    "slug": "ipmi.ip",
    "value": "192.168.56.180"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/devices/1/metadata/assign';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'slug' => 'ipmi.ip',
            'value' => '192.168.56.180',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2152,
        "product_id": 0,
        "model_id": 2490,
        "parent_id": 0,
        "type_id": 3028,
        "user_id": 9084,
        "order_id": 944,
        "location_id": 4923,
        "rack_id": 0,
        "blade_id": 0,
        "os_installation": 0,
        "colocation_id": 0,
        "provisioning_id": 0,
        "position": null,
        "image": null,
        "tags": null,
        "size": 1,
        "size_position": "full",
        "data_ports": 0,
        "power_supplies": 0,
        "manufacturer": "Franecki-Mills",
        "serialnumber1": "SN727AG",
        "serialnumber2": null,
        "service_tag": "ST778PK",
        "comments": null,
        "label": "itaque",
        "description": "Natus reiciendis vel debitis atque voluptatem aperiam facilis in.",
        "ip_addresses": [],
        "purchase_date": "2025-09-04",
        "warranty_months": 24,
        "warranty_info": null,
        "status": "available",
        "is_service": 0,
        "service_status": "activated",
        "device_status": "running",
        "function": null,
        "maintenance_instruction": null,
        "origin": null,
        "buy_price": 0,
        "appdata": false,
        "notes": null,
        "locked": 0,
        "last_discovered": "Never",
        "discovery_time": 0,
        "last_polled": "Never",
        "poller_disabled": 0,
        "poller_time": 0,
        "last_hour_traffic": 0,
        "last_day_traffic": 0,
        "last_week_traffic": 0,
        "last_month_traffic": 0,
        "current_month_traffic": 0,
        "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
        "metadata": [],
        "device_traffic": null,
        "type": {
            "id": 3028,
            "name": "velit",
            "description": "Nesciunt tempora fuga voluptatibus eveniet minima.",
            "hardware": 1,
            "software": 0,
            "predefined": 1,
            "color": "blue",
            "created_at": "2026-09-04 09:49:45",
            "updated_at": "2026-09-04 09:49:45"
        },
        "model": {
            "id": 2490,
            "name": "praesentium",
            "label": null,
            "type_id": 3028,
            "location_id": 0,
            "status": null,
            "description": null,
            "is_part": true,
            "mountable": false,
            "manufacturer": null,
            "position": null,
            "size": 1,
            "image": null,
            "data_ports": null,
            "serialnumber1": null,
            "serialnumber2": null,
            "service_tag": null,
            "comments": null,
            "notes": null,
            "purchase_date": null,
            "warranty_months": null,
            "warranty_info": null,
            "function": null,
            "maintenance_instruction": null,
            "origin": null,
            "buy_price": null,
            "appdata": false,
            "fields_data": false,
            "parts_data": false,
            "created_at": "2026-09-04T07:49:52.000000Z",
            "updated_at": "2026-09-04T07:49:52.000000Z"
        },
        "user": {
            "id": 9084,
            "username": "halie.konopelski",
            "email": "[email protected]",
            "name": "Shaniya Sipes",
            "firstname": "Shaniya",
            "lastname": "Sipes",
            "gender": "0",
            "avatar": "//www.gravatar.com/avatar/cdf48edb050d9e83950622063c1cc817?s=30&d=mm&r=g",
            "large_avatar": "//www.gravatar.com/avatar/cdf48edb050d9e83950622063c1cc817?s=130&d=mm&r=g",
            "company": null,
            "active": 1,
            "status": "Active",
            "address1": null,
            "address2": null,
            "city": null,
            "state": null,
            "postcode": null,
            "country_code": null,
            "country_name": "United States",
            "locale": null,
            "timezone": 0,
            "last_login": null
        },
        "location": {
            "id": 4923,
            "app_id": null,
            "name": "Von, Green and Kuvalis",
            "address": "57428 Botsford Walk Suite 628\nNorth Issac, ND 36014",
            "city": "West Ignacio",
            "state": "Utah",
            "description": "Sed ab incidunt enim eos. Dolorum sit rerum voluptatem omnis necessitatibus. Sed et consequatur reiciendis. Qui et omnis amet placeat voluptas.",
            "notes": "Eos debitis itaque sunt qui perspiciatis quia doloremque sit. Itaque et voluptatum aut quam voluptas fugiat repudiandae. Velit sit facere et. Nobis eum occaecati quo.",
            "emergency": "0",
            "phone": "(857) 990-6814",
            "flag": "Canada.png",
            "created_at": "2026-09-04 09:49:50",
            "updated_at": "2026-09-04 09:49:50"
        },
        "rack": null,
        "parent": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/devices/{id}/metadata/assign

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 1

Body Parameters

slug   string     

The slug of the item metadata field. Must match an existing stored value. Example: ipmi.ip

value   string  optional    

The value for the item metadata field. Null clears the value. Example: 192.168.56.180

Force Polling

requires authentication

Dispatches polling job for device.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/devices/1/poll" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/devices/1/poll'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/devices/1/poll';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/devices/{id}/poll

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 1

Discover Device

requires authentication

Dispatches discovery job for device.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/devices/1/discover" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"protocol\": \"SNMP\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/devices/1/discover'
payload = {
    "protocol": "SNMP"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/devices/1/discover';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'protocol' => 'SNMP',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/devices/{id}/discover

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 1

Body Parameters

protocol   string     

Protocol with which device should be discovered. Example: SNMP

Must be one of:
  • Redfish
  • SNMP

Perform Power Action

requires authentication

Executes a power-related action on a device. This includes booting, rebooting, or shutting down the device.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/devices/123/power/action" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"action\": \"boot\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/devices/123/power/action'
payload = {
    "action": "boot"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/devices/123/power/action';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'action' => 'boot',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/devices/{id}/power/action

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 123

Body Parameters

action   string     

The power action to perform. One of: boot, reboot, shutdown. Example: boot

Must be one of:
  • boot
  • reboot
  • shutdown

Get Device Power Usage

requires authentication

Retrieves power usage data for a specific device. If a date range is provided, it returns detailed power data for that period. Otherwise, it returns historical usage data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/devices/101/power/usage" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"startDate\": \"2024-01-01 00:00:00\",
    \"endDate\": \"2024-01-31 23:59:59\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/devices/101/power/usage'
payload = {
    "startDate": "2024-01-01 00:00:00",
    "endDate": "2024-01-31 23:59:59"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/devices/101/power/usage';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'startDate' => '2024-01-01 00:00:00',
            'endDate' => '2024-01-31 23:59:59',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "AVG_TOTAL_USAGE": 10,
        "units": "Amps"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/devices/{id}/power/usage

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 101

Body Parameters

startDate   string  optional    

The start date for the traffic range. Must be a valid date. Must be a valid date. Example: 2024-01-01 00:00:00

endDate   string  optional    

The end date for the traffic range. Must be a valid date. Must be a valid date. Example: 2024-01-31 23:59:59

Get Device Bandwidth

requires authentication

Retrieves bandwidth usage for a specific device. If a date range is provided, it returns detailed traffic data for that period. Otherwise, it returns historical usage data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/devices/101/bandwidth" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"startDate\": \"2024-01-01 00:00:00\",
    \"endDate\": \"2024-01-31 23:59:59\",
    \"units\": \"GB\",
    \"ports\": [
        12,
        100
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/devices/101/bandwidth'
payload = {
    "startDate": "2024-01-01 00:00:00",
    "endDate": "2024-01-31 23:59:59",
    "units": "GB",
    "ports": [
        12,
        100
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/devices/101/bandwidth';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'startDate' => '2024-01-01 00:00:00',
            'endDate' => '2024-01-31 23:59:59',
            'units' => 'GB',
            'ports' => [
                12,
                100,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "raw": {
            "BW_TOTAL": {
                "rrd": "93.78 GB",
                "bytes": 93780000000
            },
            "BW_IN": {
                "rrd": "43.04 GB",
                "bytes": 43040000000
            },
            "BW_OUT": {
                "rrd": "50.74 GB",
                "bytes": 50740000000
            },
            "95TH_PERC": {
                "rrd": "0.00",
                "bytes": 0
            },
            "95TH_PERC_IN": {
                "rrd": "0.00",
                "bytes": 0
            },
            "95TH_PERC_OUT": {
                "rrd": "0.00",
                "bytes": 0
            }
        },
        "BW_TOTAL": "93.78",
        "BW_IN": "43.04",
        "BW_OUT": "50.74",
        "95TH_PERC": "0.00",
        "95TH_PERC_IN": "0.00",
        "95TH_PERC_OUT": "0.00"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/devices/{id}/bandwidth

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 101

Body Parameters

startDate   string  optional    

The start date for the traffic range. Must be a valid date. Must be a valid date. Example: 2024-01-01 00:00:00

endDate   string  optional    

The end date for the traffic range. Must be a valid date. Must be a valid date. Example: 2024-01-31 23:59:59

units   string  optional    

The unit of bandwidth. Must be one of: MB, GB, TB. Example: GB

Must be one of:
  • MB
  • GB
  • TB
ports   object  optional    

An array of device port names to include in the traffic query.

Delete Device

requires authentication

Removes the specified device from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/devices/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/devices/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/devices/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/devices/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 5

Graphs

Export Graph

requires authentication

Exports a graph data for a given target

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/graphs/42/export" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"AggregateTraffic\",
    \"target\": \"service\",
    \"start\": \"2025-04-01 00:00:00\",
    \"end\": \"2025-04-30 23:59:59\",
    \"raw\": false,
    \"mode\": \"total\",
    \"device_ids\": [
        9
    ],
    \"device_selection\": \"all\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/graphs/42/export'
payload = {
    "type": "AggregateTraffic",
    "target": "service",
    "start": "2025-04-01 00:00:00",
    "end": "2025-04-30 23:59:59",
    "raw": false,
    "mode": "total",
    "device_ids": [
        9
    ],
    "device_selection": "all"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/graphs/42/export';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'type' => 'AggregateTraffic',
            'target' => 'service',
            'start' => '2025-04-01 00:00:00',
            'end' => '2025-04-30 23:59:59',
            'raw' => false,
            'mode' => 'total',
            'device_ids' => [
                9,
            ],
            'device_selection' => 'all',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "datasets": [
            {
                "data": [
                    "0.00186",
                    "0.00000",
                    "0.00231",
                    "0.00231",
                    "0.00228",
                    "0.00229",
                    "0.00006",
                    "0.00219",
                    "0.00245",
                    "0.00336",
                    "0.00337",
                    "0.00191",
                    "0.00000"
                ],
                "dataset_name": "inboundtotal"
            },
            {
                "data": [
                    "0.00045",
                    "0.00046",
                    "0.00321",
                    "0.00321",
                    "0.00000",
                    "0.00232",
                    "0.00198",
                    "0.00193",
                    "0.00036",
                    "0.00036",
                    "0.00145",
                    "0.00286",
                    "0.00000"
                ],
                "dataset_name": "outboundtotal"
            },
            {
                "data": [
                    "0.00232",
                    "0.00046",
                    "0.00552",
                    "0.00552",
                    "0.00228",
                    "0.00461",
                    "0.00204",
                    "0.00412",
                    "0.00281",
                    "0.00372",
                    "0.00482",
                    "0.00478",
                    "0.00000"
                ],
                "dataset_name": "totalboundbits"
            },
            {
                "data": [
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336"
                ],
                "dataset_name": "95_percentile"
            }
        ],
        "labels": [
            "2025-10-21 13:35:00",
            "2025-10-21 13:40:00",
            "2025-10-21 13:45:00",
            "2025-10-21 13:50:00",
            "2025-10-21 13:55:00",
            "2025-10-21 14:00:00",
            "2025-10-21 14:05:00",
            "2025-10-21 14:10:00",
            "2025-10-21 14:15:00",
            "2025-10-21 14:20:00",
            "2025-10-21 14:25:00",
            "2025-10-21 14:30:00",
            "2025-10-21 14:35:00"
        ]
    },
    "legend": {
        "header": [
            "Current",
            "Average",
            "Maximum",
            "95th %"
        ],
        "rows": [
            {
                "label": "In",
                "color": "#62C45E",
                "values": [
                    632798.1868925721,
                    1372582.1214573288,
                    2053141.22367529,
                    2053141.22367529
                ]
            },
            {
                "label": "Out",
                "color": "#2BA7FF",
                "values": [
                    639398.799042107,
                    1396441.8722763401,
                    1919831.1749942221,
                    1919831.1749942221
                ]
            }
        ],
        "format": "bits",
        "footer": "Total 670.81 GB  (In 332.34 GB  Out 338.47 GB)"
    },
    "units": {
        "traffic": "Mbps",
        "power_usage": "Amps"
    },
    "precision": {
        "traffic": "2"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/graphs/{id}/export

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the target. Example: 42

Body Parameters

type   string     

The type of graph to export, depending on the target. Example: AggregateTraffic

Must be one of:
  • AggregateTraffic
  • Load
  • NetworkTraffic
  • OutletPowerUsage
  • Ping
  • PowerUsage
  • Sensor
  • ServerPowerUsage
  • Status
  • UserDeviceTrafficBreakdown
target   string     

The type of target to graph (e.g., service, itempowerport, itemsensor). Example: service

Must be one of:
  • service
  • device
  • user
  • location
  • itemPowerPort
  • itemSensor
start   string  optional    

Start datetime for the graph range in format Y-m-d H:i:s. Must be a valid date in the format Y-m-d H:i:s. Example: 2025-04-01 00:00:00

end   string  optional    

End datetime for the graph range in format Y-m-d H:i:s. Must be after or equal to start. Must be a valid date in the format Y-m-d H:i:s. Must be a date after or equal to start. Example: 2025-04-30 23:59:59

raw   boolean  optional    

Whether to return raw graph data. Example: false

mode   string  optional    

For UserDeviceTrafficBreakdown only: dataset mode. Allowed values: total, in, out. Example: total

Must be one of:
  • total
  • in
  • out
device_ids   integer[]  optional    
device_selection   string  optional    

For UserDeviceTrafficBreakdown only: optional predefined device selection. Allowed values: all, server, order. Example: all

Must be one of:
  • all
  • server
  • order

Remote Agents

List Remote Agents

requires authentication

Returns a paginated list of Remote Agents (Remote Applications).

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/remote-agents?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/remote-agents'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/remote-agents';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 1356,
            "name": "quo laudantium perferendis",
            "status": "1",
            "message": "All Good!",
            "installed_version": "1.0",
            "created_at": "2026-09-04 09:49:53",
            "updated_at": "2026-09-04 09:49:53"
        },
        {
            "id": 1357,
            "name": "dolor voluptas quasi",
            "status": "1",
            "message": "All Good!",
            "installed_version": "1.0",
            "created_at": "2026-09-04 09:49:53",
            "updated_at": "2026-09-04 09:49:53"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/remote-agents?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/remote-agents",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/remote-agents

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, status, created_at, updated_at. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, status, message. Example: id

Show Remote Agent

requires authentication

Display detailed information about a single Remote Agent by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/remote-agents/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/remote-agents/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/remote-agents/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 1358,
        "name": "vero voluptates ducimus",
        "status": "1",
        "message": "All Good!",
        "installed_version": "1.0",
        "created_at": "2026-09-04 09:49:53",
        "updated_at": "2026-09-04 09:49:53"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/remote-agents/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the Remote Agent. Example: 1

Create Remote Agent

requires authentication

Creates a new Remote Agent with the specified configuration.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/remote-agents" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"host\": \"192.168.56.100\",
    \"apikey\": \"I4Vv1ZIgCXD6aykQF98kjuzG\",
    \"name\": \"Remote Agent #1\",
    \"pxe_ip\": \"192.168.56.101\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/remote-agents'
payload = {
    "host": "192.168.56.100",
    "apikey": "I4Vv1ZIgCXD6aykQF98kjuzG",
    "name": "Remote Agent #1",
    "pxe_ip": "192.168.56.101"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/remote-agents';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'host' => '192.168.56.100',
            'apikey' => 'I4Vv1ZIgCXD6aykQF98kjuzG',
            'name' => 'Remote Agent #1',
            'pxe_ip' => '192.168.56.101',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 1359,
        "name": "ut rerum voluptatem",
        "status": "1",
        "message": "All Good!",
        "installed_version": "1.0",
        "created_at": "2026-09-04 09:49:53",
        "updated_at": "2026-09-04 09:49:53"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/remote-agents

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

host   string     

The IP or hostname of the remote agent. Example: 192.168.56.100

apikey   string     

API key used to authenticate the remote agent. Example: I4Vv1ZIgCXD6aykQF98kjuzG

name   string  optional    

Custom name of the remote agent. Example: Remote Agent #1

pxe_ip   string  optional    

PXE IP address used for provisioning. Defaults to the host IP. Example: 192.168.56.101

Delete Remote Agent

requires authentication

Removes the specified Remote Agent from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/remote-agents/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/remote-agents/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/remote-agents/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/remote-agents/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the Remote Agent. Example: 5

List DHCP Subnets

requires authentication

Returns a paginated list of DHCP subnets assigned to the given Remote Agent.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/remote-agents/1/subnets?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/remote-agents/1/subnets'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/remote-agents/1/subnets';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 74,
            "type": "ipv4",
            "subnet": "132.215.64.230",
            "mask": 24,
            "gateway": "180.175.247.215"
        },
        {
            "id": 75,
            "type": "ipv4",
            "subnet": "144.221.108.175",
            "mask": 24,
            "gateway": "190.53.133.235"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/remote-agents/{id}/subnets?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/remote-agents/{id}/subnets",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/remote-agents/{id}/subnets

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the Remote Agent. Example: 1

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, type, subnet, mask. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, type, subnet, gateway. Example: id

Create DHCP Subnet

requires authentication

Creates a new DHCP subnet for the specified Remote Agent.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/remote-agents/voluptas/subnets" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"ipv4\",
    \"subnet\": \"10.10.10.0\",
    \"mask\": 24,
    \"gateway\": \"10.10.10.1\",
    \"description\": \"DHCP range for rack A\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/remote-agents/voluptas/subnets'
payload = {
    "type": "ipv4",
    "subnet": "10.10.10.0",
    "mask": 24,
    "gateway": "10.10.10.1",
    "description": "DHCP range for rack A"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/remote-agents/voluptas/subnets';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'type' => 'ipv4',
            'subnet' => '10.10.10.0',
            'mask' => 24.0,
            'gateway' => '10.10.10.1',
            'description' => 'DHCP range for rack A',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 76,
        "type": "ipv4",
        "subnet": "97.159.239.127",
        "mask": 24,
        "gateway": "242.61.137.57"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/remote-agents/{id}/subnets

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the remote agent. Example: voluptas

Body Parameters

type   string     

Type of the subnet (IPv4). Example: ipv4

Must be one of:
  • ipv4
subnet   string     

Network subnet address. Example: 10.10.10.0

mask   number     

Subnet mask length. Must be at least 1. Must not be greater than 32. Example: 24

gateway   string     

Default gateway address. Example: 10.10.10.1

description   string  optional    

Optional subnet description. Must not be greater than 255 characters. Example: DHCP range for rack A

Update DHCP Subnet

requires authentication

Updates an existing DHCP subnet configuration.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/remote-agents/nihil/subnets/architecto" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"ipv4\",
    \"subnet\": \"10.10.10.0\",
    \"mask\": 24,
    \"gateway\": \"10.10.10.1\",
    \"description\": \"DHCP range for rack A\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/remote-agents/nihil/subnets/architecto'
payload = {
    "type": "ipv4",
    "subnet": "10.10.10.0",
    "mask": 24,
    "gateway": "10.10.10.1",
    "description": "DHCP range for rack A"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/remote-agents/nihil/subnets/architecto';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'type' => 'ipv4',
            'subnet' => '10.10.10.0',
            'mask' => 24.0,
            'gateway' => '10.10.10.1',
            'description' => 'DHCP range for rack A',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 77,
        "type": "ipv4",
        "subnet": "145.133.251.243",
        "mask": 24,
        "gateway": "91.36.196.129"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/remote-agents/{id}/subnets/{subnetId}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the remote agent. Example: nihil

subnetId   string     

Example: architecto

Body Parameters

type   string     

Type of the subnet (IPv4). Example: ipv4

Must be one of:
  • ipv4
subnet   string     

Network subnet address. Example: 10.10.10.0

mask   number     

Subnet mask length. Must be at least 1. Must not be greater than 32. Example: 24

gateway   string     

Default gateway address. Example: 10.10.10.1

description   string  optional    

Optional subnet description. Must not be greater than 255 characters. Example: DHCP range for rack A

Delete DHCP Subnet

requires authentication

Deletes a DHCP subnet assigned to a Remote Agent.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/remote-agents/nobis/subnets/corrupti" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/remote-agents/nobis/subnets/corrupti'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/remote-agents/nobis/subnets/corrupti';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/remote-agents/{id}/subnets/{subnetId}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the remote agent. Example: nobis

subnetId   string     

Example: corrupti

OS Installation

List ISO Images

requires authentication

Returns a paginated list of ISO images

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/isoimages?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/isoimages'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/isoimages';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 150,
            "name": "sed-iso",
            "iso_url": "https://crooks.com/illum-aperiam-dicta-animi-amet.html",
            "status": 2,
            "status_label": "Started",
            "created_at": "2026-09-04 09:49:54",
            "updated_at": "2026-09-04 09:49:54"
        },
        {
            "id": 151,
            "name": "harum-iso",
            "iso_url": "http://www.leffler.org/non-et-in-reiciendis-sint-vel.html",
            "status": 4,
            "status_label": "Error",
            "created_at": "2026-09-04 09:49:54",
            "updated_at": "2026-09-04 09:49:54"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/os/isoimages?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/os/isoimages",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/isoimages

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, iso_url, status. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, iso_url, status. Example: id

Show ISO Image

requires authentication

Returns detailed information about a specific ISO Image.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/isoimages/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/isoimages/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/isoimages/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 152,
        "name": "labore-iso",
        "iso_url": "http://reynolds.com/et-voluptas-placeat-ipsum-corporis-facere-qui-exercitationem",
        "status": 3,
        "status_label": "Finished",
        "created_at": "2026-09-04 09:49:54",
        "updated_at": "2026-09-04 09:49:54"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/isoimages/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the ISO image. Example: 1

Create ISO Image

requires authentication

Creates a new ISO image.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/os/isoimages" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Ubuntu Server ISO\",
    \"iso_url\": \"https:\\/\\/example.com\\/images\\/ubuntu.iso\",
    \"remoteApp\": [
        1
    ],
    \"availability\": \"public\",
    \"users\": [
        1
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/isoimages'
payload = {
    "name": "Ubuntu Server ISO",
    "iso_url": "https:\/\/example.com\/images\/ubuntu.iso",
    "remoteApp": [
        1
    ],
    "availability": "public",
    "users": [
        1
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/isoimages';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Ubuntu Server ISO',
            'iso_url' => 'https://example.com/images/ubuntu.iso',
            'remoteApp' => [
                1,
            ],
            'availability' => 'public',
            'users' => [
                1,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 153,
        "name": "perspiciatis-iso",
        "iso_url": "http://abshire.com/fugiat-sint-maiores-necessitatibus-commodi",
        "status": 4,
        "status_label": "Error",
        "created_at": "2026-09-04 09:49:54",
        "updated_at": "2026-09-04 09:49:54"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/os/isoimages

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The display name for the ISO image. Must not be greater than 255 characters. Example: Ubuntu Server ISO

iso_url   string     

Direct URL to the ISO file pointing to a valid .iso resource. Presigned URLs (e.g. AWS S3, Backblaze B2) and HTTP basic authentication URLs are supported. Must be a valid URL. Example: https://example.com/images/ubuntu.iso

remoteApp   integer[]  optional    

Array of Remote Agent Ids. Must match an existing stored value.

availability   string     

Specifies whether the ISO image will be public. Example: public

Must be one of:
  • public
  • forSpecifiedUsers
users   integer[]  optional    

Array of User IDs. Must match an existing stored value.

Update ISO Image

requires authentication

Updates the name of an existing ISO image.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/os/isoimages/3" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Ubuntu Server ISO\",
    \"remoteApp\": [
        1
    ],
    \"availability\": \"public\",
    \"users\": [
        1
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/isoimages/3'
payload = {
    "name": "Ubuntu Server ISO",
    "remoteApp": [
        1
    ],
    "availability": "public",
    "users": [
        1
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/isoimages/3';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Ubuntu Server ISO',
            'remoteApp' => [
                1,
            ],
            'availability' => 'public',
            'users' => [
                1,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 154,
        "name": "alias-iso",
        "iso_url": "http://hayes.com/perferendis-earum-cupiditate-quia-tempora-est-quo-eius",
        "status": 1,
        "status_label": "Waiting",
        "created_at": "2026-09-04 09:49:54",
        "updated_at": "2026-09-04 09:49:54"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/os/isoimages/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the ISO image to update. Example: 3

Body Parameters

name   string  optional    

The display name for the ISO image. Must not be greater than 255 characters. Example: Ubuntu Server ISO

remoteApp   integer[]  optional    

Array od Remote Agent Ids. Must match an existing stored value.

availability   string  optional    

Specifies whether the ISO image will be public. Example: public

Must be one of:
  • public
  • forSpecifiedUsers
users   integer[]  optional    

Array of User Ids. Must match an existing stored value.

Delete ISO Image

requires authentication

Deletes a specific ISO image.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/os/isoimages/3" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/isoimages/3'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/isoimages/3';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/os/isoimages/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the ISO image to delete. Example: 3

List OS Templates

requires authentication

Updated in 1.25.1
Returns a paginated list of OS templates.

Optionally, you can include a list of addons (based on template tags) by using the with_addons query parameter.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/templates?with_addons=1&per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/templates'
params = {
  'with_addons': '1',
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/templates';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'with_addons' => '1',
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 317,
            "template_id": 317,
            "name": "ad",
            "server_id": 785,
            "tags": [
                "quia",
                "temporibus",
                "in"
            ],
            "architecture": "arm",
            "cache_folder": "rerum",
            "mirror": "http://www.ledner.biz/",
            "edition": "ipsa",
            "iso_url": "http://robel.com/numquam-reprehenderit-aut-iure-velit-tempora-eveniet-assumenda",
            "tftp_url": "http://www.nienow.info/eveniet-reprehenderit-dolore-magnam-enim-et-voluptas",
            "license": "repellendus",
            "gpxe": "Quis est reiciendis repellendus eos.",
            "disk_layout": "Deserunt nihil ut reprehenderit excepturi ut sequi sed vitae.",
            "packages": "Vero tenetur aut dolorem voluptatem quo.",
            "post_installation": "Maxime voluptatem aut soluta totam et reiciendis.",
            "first_boot": "Accusamus autem exercitationem molestiae occaecati doloremque recusandae.",
            "extras": "Eaque et facere aliquam libero labore aperiam ipsa est.",
            "timezone": "Europe/Lisbon",
            "language": "lg",
            "family": "",
            "is_windows": false,
            "is_rescue": false,
            "servers": [
                {
                    "id": 785,
                    "app_id": 1394,
                    "name": "Dr. Melvina Satterfield",
                    "module": "Remote Module",
                    "configuration": {
                        "app": 1394,
                        "rebootmethod": "ipmi_easy",
                        "nameserver_1": null,
                        "nameserver_2": null,
                        "rescue_template": null,
                        "reinstall_template": null,
                        "bootloader": "vmware.kpxe"
                    },
                    "enabled": 0
                },
                {
                    "id": 786,
                    "app_id": 1395,
                    "name": "Ryan Tremblay",
                    "module": "Remote Module",
                    "configuration": {
                        "app": 1395,
                        "rebootmethod": "manual",
                        "nameserver_1": "133.75.128.14",
                        "nameserver_2": "181.19.67.64",
                        "rescue_template": null,
                        "reinstall_template": null,
                        "bootloader": null
                    },
                    "enabled": 1
                }
            ],
            "provisioning_profiles": []
        },
        {
            "id": 318,
            "template_id": 318,
            "name": "dolore",
            "server_id": 787,
            "tags": [
                "et",
                "eos",
                "architecto",
                "qui"
            ],
            "architecture": "arm",
            "cache_folder": "doloremque",
            "mirror": "http://www.beatty.org/",
            "edition": "magni",
            "iso_url": "http://www.medhurst.biz/quia-officia-iure-qui",
            "tftp_url": "http://www.leuschke.com/quo-quia-officiis-est",
            "license": "odit",
            "gpxe": "Culpa quo dolor autem.",
            "disk_layout": "Ipsum asperiores quo eum pariatur.",
            "packages": "Dolore cupiditate quos quia fuga.",
            "post_installation": "Distinctio sed quibusdam qui sit asperiores.",
            "first_boot": "Animi deleniti voluptates ex.",
            "extras": "Esse ullam optio eius dolorem aliquid totam.",
            "timezone": "Pacific/Niue",
            "language": "na",
            "family": "",
            "is_windows": false,
            "is_rescue": false,
            "servers": [
                {
                    "id": 787,
                    "app_id": 1396,
                    "name": "Prof. Eino Ryan",
                    "module": "Remote Module",
                    "configuration": {
                        "app": 1396,
                        "rebootmethod": "manual",
                        "nameserver_1": "139.165.76.227",
                        "nameserver_2": null,
                        "rescue_template": null,
                        "reinstall_template": null,
                        "bootloader": null
                    },
                    "enabled": 1
                },
                {
                    "id": 788,
                    "app_id": 1397,
                    "name": "Nola Crist",
                    "module": "Remote Module",
                    "configuration": {
                        "app": 1397,
                        "rebootmethod": "pdu",
                        "nameserver_1": "125.238.13.127",
                        "nameserver_2": "122.213.111.66",
                        "rescue_template": null,
                        "reinstall_template": null,
                        "bootloader": "ipxe1.0.0undionly.kkpxe"
                    },
                    "enabled": 0
                }
            ],
            "provisioning_profiles": []
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/os/templates?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/os/templates",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/templates

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

with_addons   boolean  optional    

Optional. If set to true, includes a list of addons for each template. Example: true

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, edition, architecture, family. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, edition, architecture, tags. Example: id

Show OS Template

requires authentication

Updated in 1.25.1
Returns detailed information about a specific template.

Optionally, you can include a list of addons (based on template tags) by using the with_addons query parameter.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/templates/1?with_addons=1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/templates/1'
params = {
  'with_addons': '1',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/templates/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'with_addons' => '1',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 319,
        "template_id": 319,
        "name": "nisi",
        "server_id": 789,
        "tags": [
            "inventore",
            "harum",
            "et",
            "aut"
        ],
        "architecture": "arm",
        "cache_folder": "labore",
        "mirror": "http://conn.com/odit-minus-est-perspiciatis",
        "edition": "eum",
        "iso_url": "http://boyle.org/perspiciatis-est-voluptatem-commodi-odit-veritatis",
        "tftp_url": "http://wolf.biz/animi-fugiat-iusto-voluptas-occaecati",
        "license": "ut",
        "gpxe": "Qui eum sint consequatur consectetur autem.",
        "disk_layout": "Et asperiores sed cumque pariatur ipsum facere.",
        "packages": "Dolor rem nemo quo enim molestiae voluptatum.",
        "post_installation": "Consequatur ipsum et cumque itaque dicta.",
        "first_boot": "Est ex consequuntur voluptatibus amet ipsum aliquam adipisci.",
        "extras": "Porro impedit magni possimus sequi adipisci omnis animi placeat.",
        "timezone": "Africa/Dar_es_Salaam",
        "language": "oc",
        "family": "",
        "is_windows": false,
        "is_rescue": false,
        "servers": [
            {
                "id": 789,
                "app_id": 1398,
                "name": "Dr. Houston Mraz",
                "module": "Remote Module",
                "configuration": {
                    "app": 1398,
                    "rebootmethod": "manual",
                    "nameserver_1": null,
                    "nameserver_2": "55.106.211.80",
                    "rescue_template": null,
                    "reinstall_template": null,
                    "bootloader": null
                },
                "enabled": 0
            },
            {
                "id": 790,
                "app_id": 1399,
                "name": "Theresa Schoen",
                "module": "Remote Module",
                "configuration": {
                    "app": 1399,
                    "rebootmethod": "ipmi_easy_uefi",
                    "nameserver_1": "239.217.206.164",
                    "nameserver_2": null,
                    "rescue_template": null,
                    "reinstall_template": null,
                    "bootloader": "undionly.kpxe"
                },
                "enabled": 1
            }
        ],
        "provisioning_profiles": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/templates/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the template. Example: 1

Query Parameters

with_addons   boolean  optional    

Optional. If set to true, includes a list of addons for each template. Example: true

Create OS Template

requires authentication

Updated in 1.25.1
Creates a new template with the provided details.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/os/templates" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Ubuntu 24\",
    \"server\": [
        1
    ],
    \"provisioning_profiles\": [
        3
    ],
    \"tags\": \"windows custom\",
    \"architecture\": \"amd64\",
    \"cache_folder\": \"debian_bookworm\",
    \"mirror\": \"http:\\/\\/ftp.debian.org\\/debian\",
    \"edition\": \"bookworm\",
    \"iso_url\": \"https:\\/\\/cdimage.debian.org\\/cdimage\\/unofficial\\/non-free\\/firmware\\/bookworm\\/current\\/firmware.cpio.gz\",
    \"extract_iso\": false,
    \"timezone\": \"America\\/Los_Angeles\",
    \"language\": \"en_US\",
    \"gpxe\": \"Example GPXE script\",
    \"disk_layout\": \"Example Disk Layout script\",
    \"packages\": \"Example Packages\",
    \"post_installation\": \"Example Post Installation script\",
    \"first_boot\": \"Example First Boot script\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/templates'
payload = {
    "name": "Ubuntu 24",
    "server": [
        1
    ],
    "provisioning_profiles": [
        3
    ],
    "tags": "windows custom",
    "architecture": "amd64",
    "cache_folder": "debian_bookworm",
    "mirror": "http:\/\/ftp.debian.org\/debian",
    "edition": "bookworm",
    "iso_url": "https:\/\/cdimage.debian.org\/cdimage\/unofficial\/non-free\/firmware\/bookworm\/current\/firmware.cpio.gz",
    "extract_iso": false,
    "timezone": "America\/Los_Angeles",
    "language": "en_US",
    "gpxe": "Example GPXE script",
    "disk_layout": "Example Disk Layout script",
    "packages": "Example Packages",
    "post_installation": "Example Post Installation script",
    "first_boot": "Example First Boot script"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/templates';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Ubuntu 24',
            'server' => [
                1,
            ],
            'provisioning_profiles' => [
                3,
            ],
            'tags' => 'windows custom',
            'architecture' => 'amd64',
            'cache_folder' => 'debian_bookworm',
            'mirror' => 'http://ftp.debian.org/debian',
            'edition' => 'bookworm',
            'iso_url' => 'https://cdimage.debian.org/cdimage/unofficial/non-free/firmware/bookworm/current/firmware.cpio.gz',
            'extract_iso' => false,
            'timezone' => 'America/Los_Angeles',
            'language' => 'en_US',
            'gpxe' => 'Example GPXE script',
            'disk_layout' => 'Example Disk Layout script',
            'packages' => 'Example Packages',
            'post_installation' => 'Example Post Installation script',
            'first_boot' => 'Example First Boot script',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 320,
        "template_id": 320,
        "name": "maxime",
        "server_id": 791,
        "tags": [
            "facere",
            "voluptas",
            "dolor",
            "ratione",
            "in",
            "qui"
        ],
        "architecture": "arm",
        "cache_folder": "velit",
        "mirror": "https://halvorson.com/molestiae-quae-omnis-vero.html",
        "edition": "omnis",
        "iso_url": "http://www.yost.com/id-qui-non-porro-provident-sint",
        "tftp_url": "http://hegmann.com/est-natus-incidunt-a-dolores-quaerat-aut",
        "license": "nesciunt",
        "gpxe": "Deserunt officiis voluptate facere dolore eum dolorem.",
        "disk_layout": "Explicabo ut ad magnam et.",
        "packages": "Amet beatae magnam consequatur occaecati enim aspernatur consectetur.",
        "post_installation": "Illo omnis quasi nostrum.",
        "first_boot": "Quia voluptatibus id enim aut repellat consequatur.",
        "extras": "Harum enim quas velit et quo vel.",
        "timezone": "Pacific/Easter",
        "language": "ro",
        "family": "",
        "is_windows": false,
        "is_rescue": false,
        "servers": [
            {
                "id": 791,
                "app_id": 1400,
                "name": "Emery Brown",
                "module": "Remote Module",
                "configuration": {
                    "app": 1400,
                    "rebootmethod": "pdu",
                    "nameserver_1": "165.47.221.151",
                    "nameserver_2": null,
                    "rescue_template": null,
                    "reinstall_template": null,
                    "bootloader": null
                },
                "enabled": 0
            },
            {
                "id": 792,
                "app_id": 1401,
                "name": "Betsy Turner",
                "module": "Remote Module",
                "configuration": {
                    "app": 1401,
                    "rebootmethod": "ipmi_easy_uefi",
                    "nameserver_1": "167.69.21.250",
                    "nameserver_2": null,
                    "rescue_template": null,
                    "reinstall_template": null,
                    "bootloader": "undionly.kpxe"
                },
                "enabled": 1
            }
        ],
        "provisioning_profiles": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/os/templates

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

Any name for the installation template. Must not be greater than 255 characters. Example: Ubuntu 24

server   integer[]  optional    

Provisioning server Id. Must match an existing stored value.

provisioning_profiles   integer[]  optional    

Provisioning profile ID. Must match an existing stored value.

tags   string  optional    

Tags defining the installation template. Separated by space. Example: windows custom

architecture   string  optional    

System architecture of the installation template. Example: amd64

cache_folder   string  optional    

The name of the cache directory which stores the installation files on the remote agent server. Example: debian_bookworm

mirror   string  optional    

Mirror containing the installation files. Must be a valid URL. Example: http://ftp.debian.org/debian

edition   string  optional    

Edition of the installation template. Example: bookworm

iso_url   string  optional    

ISO image URL. Required for some installation templates. Must be a valid URL. Example: https://cdimage.debian.org/cdimage/unofficial/non-free/firmware/bookworm/current/firmware.cpio.gz

extract_iso   boolean  optional    

Specifies whether the ISO image should be extracted after downloading. Example: false

timezone   string  optional    

The timezone of the target operating system. Must be a valid time zone, such as Africa/Accra. Must not be one of America/Coyhaique. Example: America/Los_Angeles

language   string  optional    

Language of the target operating system. Example: en_US

gpxe   string  optional    

Specifies the script to be executed during PXE boot. Example: Example GPXE script

disk_layout   string  optional    

Defines the partitioning method of the disk. This script depends on the specific distribution of the relational system. Example: Example Disk Layout script

packages   string  optional    

Specifies a list of system packages (each in a new line) that will be installed. Example: Example Packages

post_installation   string  optional    

Specifies the installation script that will be executed after the installation of the operating system. In the case of Linux systems, these are Bash language scripts. For Windows systems, they are PowerShell scripts. Example: Example Post Installation script

first_boot   string  optional    

Specifies the installation script that will be executed when the operating system first boots. Only for some systems such as Centos, Ubuntu or Debian. Example: Example First Boot script

Update OS Template

requires authentication

Updated in 1.25.1
Updates template with the provided details and id.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/os/templates/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Ubuntu 24\",
    \"server\": [
        1
    ],
    \"provisioning_profiles\": [
        3
    ],
    \"provisioning_addons\": [
        5
    ],
    \"tags\": \"windows custom\",
    \"architecture\": \"amd64\",
    \"cache_folder\": \"debian_bookworm\",
    \"mirror\": \"http:\\/\\/ftp.debian.org\\/debian\",
    \"edition\": \"bookworm\",
    \"iso_url\": \"https:\\/\\/cdimage.debian.org\\/cdimage\\/unofficial\\/non-free\\/firmware\\/bookworm\\/current\\/firmware.cpio.gz\",
    \"extract_iso\": false,
    \"timezone\": \"America\\/Los_Angeles\",
    \"language\": \"en_US\",
    \"gpxe\": \"Example GPXE script\",
    \"disk_layout\": \"Example Disk Layout script\",
    \"packages\": \"Example Packages\",
    \"post_installation\": \"Example Post Installation script\",
    \"first_boot\": \"Example First Boot script\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/templates/1'
payload = {
    "name": "Ubuntu 24",
    "server": [
        1
    ],
    "provisioning_profiles": [
        3
    ],
    "provisioning_addons": [
        5
    ],
    "tags": "windows custom",
    "architecture": "amd64",
    "cache_folder": "debian_bookworm",
    "mirror": "http:\/\/ftp.debian.org\/debian",
    "edition": "bookworm",
    "iso_url": "https:\/\/cdimage.debian.org\/cdimage\/unofficial\/non-free\/firmware\/bookworm\/current\/firmware.cpio.gz",
    "extract_iso": false,
    "timezone": "America\/Los_Angeles",
    "language": "en_US",
    "gpxe": "Example GPXE script",
    "disk_layout": "Example Disk Layout script",
    "packages": "Example Packages",
    "post_installation": "Example Post Installation script",
    "first_boot": "Example First Boot script"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/templates/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Ubuntu 24',
            'server' => [
                1,
            ],
            'provisioning_profiles' => [
                3,
            ],
            'provisioning_addons' => [
                5,
            ],
            'tags' => 'windows custom',
            'architecture' => 'amd64',
            'cache_folder' => 'debian_bookworm',
            'mirror' => 'http://ftp.debian.org/debian',
            'edition' => 'bookworm',
            'iso_url' => 'https://cdimage.debian.org/cdimage/unofficial/non-free/firmware/bookworm/current/firmware.cpio.gz',
            'extract_iso' => false,
            'timezone' => 'America/Los_Angeles',
            'language' => 'en_US',
            'gpxe' => 'Example GPXE script',
            'disk_layout' => 'Example Disk Layout script',
            'packages' => 'Example Packages',
            'post_installation' => 'Example Post Installation script',
            'first_boot' => 'Example First Boot script',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 321,
        "template_id": 321,
        "name": "aperiam",
        "server_id": 793,
        "tags": [
            "voluptates",
            "recusandae",
            "dolorem",
            "beatae",
            "eveniet"
        ],
        "architecture": "x64",
        "cache_folder": "reprehenderit",
        "mirror": "https://kovacek.com/tempore-ut-quos-commodi-perferendis.html",
        "edition": "enim",
        "iso_url": "http://schaefer.com/vitae-quod-consequuntur-est",
        "tftp_url": "http://rutherford.org/possimus-veniam-deleniti-cum-at-quas.html",
        "license": "ullam",
        "gpxe": "Error rem voluptatem dolor et.",
        "disk_layout": "Ut dolorem debitis rerum inventore ab et ipsa alias.",
        "packages": "Laboriosam error tempore magni provident aliquam qui.",
        "post_installation": "Deserunt voluptate sit nostrum ducimus est.",
        "first_boot": "Consequuntur labore aut dolores sit odio necessitatibus.",
        "extras": "Et id veniam asperiores occaecati deleniti ipsam.",
        "timezone": "Asia/Bangkok",
        "language": "cr",
        "family": "",
        "is_windows": false,
        "is_rescue": false,
        "servers": [
            {
                "id": 793,
                "app_id": 1402,
                "name": "Aiden Harvey",
                "module": "Remote Module",
                "configuration": {
                    "app": 1402,
                    "rebootmethod": "ipmi_easy",
                    "nameserver_1": null,
                    "nameserver_2": null,
                    "rescue_template": null,
                    "reinstall_template": null,
                    "bootloader": "ipxe1.0.0undionly.kkpxe"
                },
                "enabled": 1
            },
            {
                "id": 794,
                "app_id": 1403,
                "name": "Leslie Morar",
                "module": "Remote Module",
                "configuration": {
                    "app": 1403,
                    "rebootmethod": "ipmi_easy",
                    "nameserver_1": "251.114.154.95",
                    "nameserver_2": null,
                    "rescue_template": null,
                    "reinstall_template": null,
                    "bootloader": "ipxe1.0.0undionly.kkpxe"
                },
                "enabled": 0
            }
        ],
        "provisioning_profiles": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/os/templates/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the template. Example: 1

Body Parameters

name   string  optional    

Any name for the installation template. Must not be greater than 255 characters. Example: Ubuntu 24

server   integer[]  optional    

Provisioning server Id. Must match an existing stored value.

provisioning_profiles   integer[]  optional    

Provisioning profile ID. Must match an existing stored value.

provisioning_addons   integer[]  optional    

Provisioning addon ID. Must match an existing stored value.

tags   string  optional    

Tags defining the installation template. Separated by space. Example: windows custom

architecture   string  optional    

System architecture of the installation template. Example: amd64

cache_folder   string  optional    

The name of the cache directory which stores the installation files on the remote agent server. Example: debian_bookworm

mirror   string  optional    

Mirror containing the installation files. Must be a valid URL. Example: http://ftp.debian.org/debian

edition   string  optional    

Edition of the installation template. Example: bookworm

iso_url   string  optional    

ISO image URL. Required for some installation templates. Must be a valid URL. Example: https://cdimage.debian.org/cdimage/unofficial/non-free/firmware/bookworm/current/firmware.cpio.gz

extract_iso   boolean  optional    

Specifies whether the ISO image should be extracted after downloading. Example: false

timezone   string  optional    

The timezone of the target operating system. Example: America/Los_Angeles

language   string  optional    

Language of the target operating system. Example: en_US

gpxe   string  optional    

Specifies the script to be executed during PXE boot. Example: Example GPXE script

disk_layout   string  optional    

Defines the partitioning method of the disk. This script depends on the specific distribution of the relational system. Example: Example Disk Layout script

packages   string  optional    

Specifies a list of system packages (each in a new line) that will be installed. Example: Example Packages

post_installation   string  optional    

Specifies the installation script that will be executed after the installation of the operating system. In the case of Linux systems, these are Bash language scripts. For Windows systems, they are PowerShell scripts. Example: Example Post Installation script

first_boot   string  optional    

Specifies the installation script that will be executed when the operating system first boots. Only for some systems such as Centos, Ubuntu or Debian. Example: Example First Boot script

Delete OS Template

requires authentication

Deletes template with given id

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/os/templates/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/templates/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/templates/1';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/os/templates/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the template. Example: 1

List OS Addons

requires authentication

Returns a paginated list of OS addons.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/addons?template_id=13&per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/addons'
params = {
  'template_id': '13',
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/addons';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'template_id' => '13',
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 130,
            "server_id": 795,
            "name": "Prof. Florida Powlowski DDS",
            "description": "Rerum repellendus nemo corporis ad aut hic.",
            "type": "disklayout",
            "tag": "doloremque veniam",
            "tags": [
                "doloremque",
                "veniam"
            ],
            "data": "Molestiae assumenda amet est natus."
        },
        {
            "id": 131,
            "server_id": 796,
            "name": "Norval Cole IV",
            "description": "Ut sunt voluptatum molestiae sed non suscipit.",
            "type": "firstboot",
            "tag": "enim sint",
            "tags": [
                "enim",
                "sint"
            ],
            "data": "Itaque blanditiis harum et nam id natus."
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/os/addons?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/os/addons",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/addons

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

template_id   integer  optional    

Optional. If set returns filtered collection for provided OS Template id Example: 13

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, type. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, type, tag. Example: id

Show OS Addon

requires authentication

Returns detailed information about a specific addon.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/addons/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/addons/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/addons/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "id": 132,
    "server_id": 797,
    "name": "Matilda Brekke",
    "description": "Possimus ut molestiae ut nulla.",
    "type": "disklayout",
    "tag": "quisquam sed",
    "tags": [
        "quisquam",
        "sed"
    ],
    "data": "Qui eos et animi voluptates officiis."
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/addons/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the addon. Example: 1

Create OS Addon

requires authentication

Creates a new addon with the provided details.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/os/addons" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"cpanel\",
    \"tag\": \"libero\",
    \"type\": \"disklayout\",
    \"description\": \"Install cPanel\",
    \"data\": \"Example addon script\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/addons'
payload = {
    "name": "cpanel",
    "tag": "libero",
    "type": "disklayout",
    "description": "Install cPanel",
    "data": "Example addon script"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/addons';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'cpanel',
            'tag' => 'libero',
            'type' => 'disklayout',
            'description' => 'Install cPanel',
            'data' => 'Example addon script',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "id": 133,
    "server_id": 798,
    "name": "Ms. Yvette Schumm",
    "description": "Quis quis et sapiente iusto nemo quis eius tempore.",
    "type": "disklayout",
    "tag": "facere consectetur",
    "tags": [
        "facere",
        "consectetur"
    ],
    "data": "Illo omnis suscipit qui at tenetur."
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/os/addons

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

Any name for the installation addon. Must not be greater than 255 characters. Example: cpanel

tag   string  optional    

Example: libero

type   string     

Specifies the type of the installation addon. Example: disklayout

Must be one of:
  • disklayout
  • firstboot
  • postinstall
description   string  optional    

Any description for the installation addon. Example: Install cPanel

data   string  optional    

Specifies the script for the installation addon. Example: Example addon script

Update OS Addon

requires authentication

Updates addon with the provided details and id.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/os/addons/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"cpanel\",
    \"tag\": \"amet\",
    \"type\": \"disklayout\",
    \"description\": \"Install cPanel\",
    \"data\": \"Example addon script\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/addons/1'
payload = {
    "name": "cpanel",
    "tag": "amet",
    "type": "disklayout",
    "description": "Install cPanel",
    "data": "Example addon script"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/addons/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'cpanel',
            'tag' => 'amet',
            'type' => 'disklayout',
            'description' => 'Install cPanel',
            'data' => 'Example addon script',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "id": 134,
    "server_id": 799,
    "name": "Orlo Graham",
    "description": "Est adipisci iste minima quod consequatur adipisci sed.",
    "type": "disklayout",
    "tag": "et aperiam",
    "tags": [
        "et",
        "aperiam"
    ],
    "data": "Eveniet non nemo sunt adipisci."
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/os/addons/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the addon. Example: 1

Body Parameters

name   string  optional    

Any name for the installation addon. Must not be greater than 255 characters. Example: cpanel

tag   string  optional    

Example: amet

type   string  optional    

Specifies the type of the installation addon. Example: disklayout

Must be one of:
  • disklayout
  • firstboot
  • postinstall
description   string  optional    

Any description for the installation addon. Example: Install cPanel

data   string  optional    

Specifies the script for the installation addon. Example: Example addon script

Delete OS Addon

requires authentication

Deletes addon with given id

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/os/addons/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/addons/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/addons/1';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/os/addons/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the addon. Example: 1

Install OS on Device

requires authentication

Initiates OS installation on a device

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/os/1/install" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"template\": 12,
    \"hostname\": \"server01.example.com\",
    \"username\": \"admin\",
    \"password\": \"secret123\",
    \"root_password\": \"rootsecret\",
    \"disk_addon\": 1,
    \"extras\": [
        18
    ],
    \"ssh_keys\": [
        10
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/1/install'
payload = {
    "template": 12,
    "hostname": "server01.example.com",
    "username": "admin",
    "password": "secret123",
    "root_password": "rootsecret",
    "disk_addon": 1,
    "extras": [
        18
    ],
    "ssh_keys": [
        10
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/1/install';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'template' => 12,
            'hostname' => 'server01.example.com',
            'username' => 'admin',
            'password' => 'secret123',
            'root_password' => 'rootsecret',
            'disk_addon' => 1,
            'extras' => [
                18,
            ],
            'ssh_keys' => [
                10,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 246,
        "device_id": 2156,
        "template_id": 322,
        "server_id": 800,
        "message": "Quia cupiditate maxime dolorem qui illo.",
        "dhcp": 1,
        "configuration": [],
        "log": "",
        "created_at": "2026-09-04 09:49:55",
        "updated_at": "2026-09-04 09:49:55"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/os/{deviceId}/install

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

Body Parameters

template   integer     

ID or identifier of the OS template to install. Must match an existing stored value. Example: 12

hostname   string  optional    

Optional hostname for the new system. Example: server01.example.com

username   string     

Username for the new system. Example: admin

password   string     

Password for the user account. Example: secret123

root_password   string  optional    

Root password for the system (optional). Example: rootsecret

disk_addon   integer  optional    

Optional ID of an additional disk to use during installation. Must match an existing stored value. Example: 1

extras   integer[]  optional    

Must match an existing stored value.

ssh_keys   integer[]  optional    

Must match an existing stored value.

Cancel OS Installation

requires authentication

Attempts to cancel the operating system installation process

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/os/1/cancel" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/1/cancel'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/1/cancel';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/os/{deviceId}/cancel

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

OS Installation Information

requires authentication

Returns details about the current OS installation process

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/1/install/information" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/1/install/information'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/1/install/information';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 247,
        "device_id": 2157,
        "template_id": 323,
        "server_id": 803,
        "message": "Aut sed rerum dolores omnis non.",
        "dhcp": 1,
        "configuration": [],
        "log": "",
        "created_at": "2026-09-04 09:49:55",
        "updated_at": "2026-09-04 09:49:55"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/{deviceId}/install/information

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

Enable Rescue Mode

requires authentication

Initiates rescue mode for the device

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/os/1/rescue/enable" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/1/rescue/enable'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/1/rescue/enable';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 248,
        "device_id": 2158,
        "template_id": 324,
        "server_id": 806,
        "message": "Ratione laudantium dignissimos in quasi.",
        "dhcp": 1,
        "configuration": [],
        "log": "",
        "created_at": "2026-09-04 09:49:55",
        "updated_at": "2026-09-04 09:49:55"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/os/{deviceId}/rescue/enable

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

Rescue Mode Status

requires authentication

Returns the current rescue mode status

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/1/rescue/status" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/1/rescue/status'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/1/rescue/status';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "inRescueMode": false
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/{deviceId}/rescue/status

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

Show Device Configuration

requires authentication

Updated in 1.25.1
Returns device OS configuration.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/1/configuration" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/1/configuration'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/1/configuration';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "gateway": "192.168.56.1",
        "netmask": "255.255.255.0",
        "nameserver_1": "1.1.1.1",
        "nameserver_2": "8.8.8.8",
        "rebootmethod": "manual",
        "bootloader": "undionly.kpxe"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/{deviceId}/configuration

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

Update Device Configuration

requires authentication

Updated in 1.25.1
Updates device OS configuration with the provided details and id.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/os/1/configuration" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"gateway\": \"192.168.1.1\",
    \"netmask\": \"255.255.255.0\",
    \"nameserver_1\": \"8.8.8.8\",
    \"nameserver_2\": \"8.8.4.4\",
    \"rebootmethod\": \"ipmi_easy\",
    \"bootloader\": \"undionly.kpxe\",
    \"installation_lock\": \"1\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/1/configuration'
payload = {
    "gateway": "192.168.1.1",
    "netmask": "255.255.255.0",
    "nameserver_1": "8.8.8.8",
    "nameserver_2": "8.8.4.4",
    "rebootmethod": "ipmi_easy",
    "bootloader": "undionly.kpxe",
    "installation_lock": "1"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/1/configuration';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'gateway' => '192.168.1.1',
            'netmask' => '255.255.255.0',
            'nameserver_1' => '8.8.8.8',
            'nameserver_2' => '8.8.4.4',
            'rebootmethod' => 'ipmi_easy',
            'bootloader' => 'undionly.kpxe',
            'installation_lock' => '1',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "gateway": "192.168.56.1",
        "netmask": "255.255.255.0",
        "nameserver_1": "1.1.1.1",
        "nameserver_2": "8.8.8.8",
        "rebootmethod": "manual",
        "bootloader": "undionly.kpxe"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/os/{deviceId}/configuration

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

Body Parameters

gateway   string  optional    

Optional gateway IP address. Must be a valid IP address. Example: 192.168.1.1

netmask   string  optional    

Optional subnet mask, must be one of the allowed CIDR netmask values. Example: 255.255.255.0

Must be one of:
  • 128.0.0.0
  • 192.0.0.0
  • 224.0.0.0
  • 240.0.0.0
  • 248.0.0.0
  • 252.0.0.0
  • 254.0.0.0
  • 255.0.0.0
  • 255.128.0.0
  • 255.192.0.0
  • 255.224.0.0
  • 255.240.0.0
  • 255.248.0.0
  • 255.252.0.0
  • 255.254.0.0
  • 255.255.0.0
  • 255.255.128.0
  • 255.255.192.0
  • 255.255.224.0
  • 255.255.240.0
  • 255.255.248.0
  • 255.255.252.0
  • 255.255.254.0
  • 255.255.255.0
  • 255.255.255.128
  • 255.255.255.192
  • 255.255.255.224
  • 255.255.255.240
  • 255.255.255.248
  • 255.255.255.252
  • 255.255.255.254
  • 255.255.255.255
nameserver_1   string  optional    

Optional first nameserver address. Example: 8.8.8.8

nameserver_2   string  optional    

Optional second nameserver address. Example: 8.8.4.4

rebootmethod   string  optional    

Optional reboot method. Example: ipmi_easy

Must be one of:
  • ipmi_easy
  • ipmi_easy_uefi
  • pdu
  • manual
bootloader   string  optional    

Optional bootloader type. Example: undionly.kpxe

Must be one of:
  • ipxe1.0.0undionly.kkpxe
  • undionly.kpxe
  • vmware.kpxe
installation_lock   string  optional    

Installation lock state. 1 means locked, 0 means unlocked. Example: 1

Must be one of:
  • 0
  • 1

Find OS provisioning server

requires authentication

Returns detailed information about provisioning server

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/1/provisioning/server?find_by_type=device" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/1/provisioning/server'
params = {
  'find_by_type': 'device',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/1/provisioning/server';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'find_by_type' => 'device',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 809,
        "app_id": 1418,
        "name": "Dr. Jo Lowe",
        "module": "Remote Module",
        "configuration": {
            "app": 1418,
            "rebootmethod": "manual",
            "nameserver_1": null,
            "nameserver_2": null,
            "rescue_template": null,
            "reinstall_template": null,
            "bootloader": "undionly.kpxe"
        },
        "enabled": 1
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/{id}/provisioning/server

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the location or device. Example: 1

Query Parameters

find_by_type   string  optional    

Optional. One of location, device. If not set default to device. Example: device

List provisioning tasks

requires authentication

Returns a paginated list of provisioning tasks.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/provisioning/tasks?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/provisioning/tasks'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/provisioning/tasks';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 249,
            "device_id": 2159,
            "template_id": 325,
            "server_id": 810,
            "message": "Ut inventore numquam et.",
            "dhcp": 1,
            "configuration": [],
            "log": "",
            "created_at": "2026-09-04 09:49:56",
            "updated_at": "2026-09-04 09:49:56"
        },
        {
            "id": 250,
            "device_id": 2160,
            "template_id": 326,
            "server_id": 813,
            "message": "Enim eius incidunt vero et voluptatibus ea deleniti.",
            "dhcp": 1,
            "configuration": [],
            "log": "",
            "created_at": "2026-09-04 09:49:56",
            "updated_at": "2026-09-04 09:49:56"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/os/provisioning/tasks?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/os/provisioning/tasks",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/provisioning/tasks

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, device_id, server_id, template_id, message. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, device_id, server_id, template_id, message. Example: id

List provisioning history

requires authentication

Returns a paginated list of provisioning history.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/provisioning/history?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/provisioning/history'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/provisioning/history';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 145,
            "device_id": 2161,
            "server_id": 816,
            "template": "Dr. Wilmer Moen",
            "status": "",
            "log": "",
            "created_at": "2026-09-04 09:49:56",
            "updated_at": "2026-09-04 09:49:56"
        },
        {
            "id": 146,
            "device_id": 2162,
            "server_id": 817,
            "template": "Dexter Corwin",
            "status": "",
            "log": "",
            "created_at": "2026-09-04 09:49:57",
            "updated_at": "2026-09-04 09:49:57"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/os/provisioning/history?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/os/provisioning/history",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/provisioning/history

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, device_id, server_id, status. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, device_id, server_id, status, template. Example: id

List Provisioning Profiles

requires authentication

Returns a paginated list of provisioning profiles.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/provisioning-profiles?search_term=active%2Cpending&per_page=10&page=1&sort_by=id&sort_dir=asc&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/provisioning-profiles'
params = {
  'search_term': 'active,pending',
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/provisioning-profiles';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'search_term' => 'active,pending',
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 103,
            "uuid": "d2201a1e-b15a-3c86-91c6-0212cb6a5e9f",
            "name": "Postinstall earum",
            "description": "Cupiditate velit est quae.",
            "type": {
                "value": "postinstall",
                "label": "PostInstall (Bootstrap script)"
            },
            "version": "1.1",
            "predefined": false,
            "official": false,
            "installation_template": "postinstall_temporibus",
            "settings": [],
            "update_available": false,
            "latest_version": null,
            "created_at": "2026-09-04 09:49:57",
            "updated_at": "2026-09-04 09:49:57"
        },
        {
            "id": 104,
            "uuid": "8e131636-b868-30ab-9d2d-675c5f5c12b1",
            "name": "Firstboot sunt",
            "description": "Corrupti amet sit sit non voluptas nisi tempore harum.",
            "type": {
                "value": "firstboot",
                "label": "FirstBoot (Bootstrap script)"
            },
            "version": "1.1",
            "predefined": false,
            "official": false,
            "installation_template": "firstboot_est",
            "settings": [],
            "update_available": false,
            "latest_version": null,
            "created_at": "2026-09-04 09:49:57",
            "updated_at": "2026-09-04 09:49:57"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/os/provisioning-profiles?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/os/provisioning-profiles",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/provisioning-profiles

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, type, version, predefined. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, uuid, name, description, type, version. Example: id

Show Provisioning Profile

requires authentication

Returns detailed information about a specific provisioning profile.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/os/provisioning-profiles/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/provisioning-profiles/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/provisioning-profiles/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 105,
        "uuid": "58b7855d-454f-3aae-8130-84fc927386a2",
        "name": "Firstboot beatae",
        "description": "Nemo et perferendis quo sequi.",
        "type": {
            "value": "firstboot",
            "label": "FirstBoot (Bootstrap script)"
        },
        "version": "2.0",
        "predefined": false,
        "official": false,
        "installation_template": "firstboot_qui",
        "settings": [],
        "update_available": false,
        "latest_version": null,
        "created_at": "2026-09-04 09:49:57",
        "updated_at": "2026-09-04 09:49:57"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/os/provisioning-profiles/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the provisioning profile. Example: 1

Create Provisioning Profile

requires authentication

Creates a new provisioning profile.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/os/provisioning-profiles" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Basic Kickstart\",
    \"description\": \"Default kickstart profile for Linux installations.\",
    \"type\": \"kickstart\",
    \"version\": \"1.0\",
    \"installation_template\": \"firstboot_linux_ssh_network\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/provisioning-profiles'
payload = {
    "name": "Basic Kickstart",
    "description": "Default kickstart profile for Linux installations.",
    "type": "kickstart",
    "version": "1.0",
    "installation_template": "firstboot_linux_ssh_network"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/provisioning-profiles';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Basic Kickstart',
            'description' => 'Default kickstart profile for Linux installations.',
            'type' => 'kickstart',
            'version' => '1.0',
            'installation_template' => 'firstboot_linux_ssh_network',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 106,
        "uuid": "63ecc7a0-52b2-3dcc-8825-e97462648c55",
        "name": "Kickstart aut",
        "description": "Iure et quo at dolor omnis minima sequi voluptatibus.",
        "type": {
            "value": "kickstart",
            "label": "Kickstart (RHEL, Alma, Rocky)"
        },
        "version": "2.0",
        "predefined": false,
        "official": false,
        "installation_template": "kickstart_illum",
        "settings": [],
        "update_available": false,
        "latest_version": null,
        "created_at": "2026-09-04 09:49:57",
        "updated_at": "2026-09-04 09:49:57"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/os/provisioning-profiles

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

Name of the provisioning profile. Must not be greater than 255 characters. Example: Basic Kickstart

description   string  optional    

Optional description of the provisioning profile. Example: Default kickstart profile for Linux installations.

type   string     

Provisioning profile type. Example: kickstart

Must be one of:
  • kickstart
  • preseed
  • autoinstall
  • unattend
  • startnet
  • firstboot
  • postinstall
  • custom
version   string  optional    

Version of the provisioning profile. Must not be greater than 50 characters. Example: 1.0

installation_template   string  optional    

Executable provisioning code assigned to this profile and interpreted by the provisioning engine. This value identifies which execution logic should be run for the given profile (e.g. first boot, kickstart, unattend). Example: firstboot_linux_ssh_network

Update Provisioning Profile

requires authentication

Updates provisioning profile with the provided details.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/os/provisioning-profiles/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Basic Kickstart\",
    \"description\": \"Updated description.\",
    \"type\": \"kickstart\",
    \"version\": \"1.1\",
    \"installation_template\": \"firstboot_linux_ssh_network\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/provisioning-profiles/1'
payload = {
    "name": "Basic Kickstart",
    "description": "Updated description.",
    "type": "kickstart",
    "version": "1.1",
    "installation_template": "firstboot_linux_ssh_network"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/provisioning-profiles/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Basic Kickstart',
            'description' => 'Updated description.',
            'type' => 'kickstart',
            'version' => '1.1',
            'installation_template' => 'firstboot_linux_ssh_network',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/os/provisioning-profiles/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the provisioning profile. Example: 1

Body Parameters

name   string  optional    

Name of the provisioning profile. Must not be greater than 255 characters. Example: Basic Kickstart

description   string  optional    

Optional description of the provisioning profile. Example: Updated description.

type   string  optional    

Provisioning profile type. Example: kickstart

Must be one of:
  • kickstart
  • preseed
  • autoinstall
  • unattend
  • startnet
  • firstboot
  • postinstall
  • custom
version   string  optional    

Version of the provisioning profile. Must not be greater than 50 characters. Example: 1.1

installation_template   string  optional    

Executable provisioning code assigned to this profile and interpreted by the provisioning engine. This value identifies which execution logic should be run for the given profile (e.g. first boot, kickstart, unattend). Example: firstboot_linux_ssh_network

Delete Provisioning Profile

requires authentication

Deletes provisioning profile with given id.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/os/provisioning-profiles/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/os/provisioning-profiles/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/os/provisioning-profiles/1';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/os/provisioning-profiles/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the provisioning profile. Example: 1

IPMI

List Proxy Servers

requires authentication

Returns a paginated list of proxy servers.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers?with_sessions=1&per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers'
params = {
  'with_sessions': '1',
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'with_sessions' => '1',
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 164,
            "app_id": 1428,
            "name": "Marques Howell",
            "locations": [
                {
                    "id": 4972,
                    "app_id": null,
                    "name": "Corkery, Casper and Murazik",
                    "address": "857 Veum Lake Apt. 722\nWest Hayleehaven, MA 51057-6004",
                    "city": "Lake Presleymouth",
                    "state": "New Mexico",
                    "description": "Ad libero distinctio a qui est. Commodi inventore tempora provident quaerat eligendi perferendis quasi. Hic aspernatur voluptatibus distinctio et illum labore vel. Maxime impedit iste consequatur mollitia aut natus.",
                    "notes": "Ut corporis qui qui ullam velit vel impedit. At nulla voluptas non a sit et. Voluptatum ullam hic illo porro. Quod laborum unde aspernatur.",
                    "emergency": "0",
                    "phone": "(534) 577-7013",
                    "flag": "Germany.png",
                    "created_at": "2026-09-04 09:49:57",
                    "updated_at": "2026-09-04 09:49:57"
                },
                {
                    "id": 4973,
                    "app_id": null,
                    "name": "Koelpin-Nader",
                    "address": "9024 Pfeffer Freeway\nWest Cloyd, WY 91035",
                    "city": "Albahaven",
                    "state": "West Virginia",
                    "description": "Et aut eum laboriosam tempora asperiores. Et veritatis enim ad dolore quia ipsum. Animi libero et laboriosam iste qui asperiores. Aut voluptatibus qui ullam.",
                    "notes": "Tenetur vitae vero iste rerum sint ut illum nihil. Molestiae culpa illo eius similique. Sunt molestias dolor commodi in et autem.",
                    "emergency": "1",
                    "phone": "+17542505486",
                    "flag": "Canada.png",
                    "created_at": "2026-09-04 09:49:57",
                    "updated_at": "2026-09-04 09:49:57"
                }
            ],
            "configuration": []
        },
        {
            "id": 165,
            "app_id": 1429,
            "name": "Roy O'Kon",
            "locations": [
                {
                    "id": 4974,
                    "app_id": null,
                    "name": "Schamberger, Kuhic and McCullough",
                    "address": "9315 Yvonne Ridge Suite 082\nEast Robyn, MT 38847",
                    "city": "Vonside",
                    "state": "South Carolina",
                    "description": "Sit repellendus quod quis quo ut. Et est pariatur impedit velit non. Dignissimos vero aut enim qui sequi aut. Ut voluptatem enim nobis enim.",
                    "notes": "Dignissimos velit perferendis tenetur. Magnam soluta est quaerat. Pariatur aut id qui sit.",
                    "emergency": "1",
                    "phone": "1-872-987-9498",
                    "flag": "Canada.png",
                    "created_at": "2026-09-04 09:49:57",
                    "updated_at": "2026-09-04 09:49:57"
                },
                {
                    "id": 4975,
                    "app_id": null,
                    "name": "Cole-Torp",
                    "address": "8797 Cremin Canyon\nNew Unaville, SC 47405-0241",
                    "city": "East Friedrichberg",
                    "state": "Maine",
                    "description": "Voluptatem soluta nisi tempora non cupiditate ratione qui. Aliquid est explicabo dolorem ut doloribus omnis ducimus. Qui natus fugit eos qui voluptate fugit nihil.",
                    "notes": "Ab culpa ab totam possimus nemo ut reiciendis reprehenderit. Atque autem quis quas aliquid quam accusamus. Autem quia eos totam cum sunt ut. Dolore odio sit aut qui veritatis aut minima.",
                    "emergency": "1",
                    "phone": "318-770-1404",
                    "flag": "Germany.png",
                    "created_at": "2026-09-04 09:49:57",
                    "updated_at": "2026-09-04 09:49:57"
                }
            ],
            "configuration": []
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipmi/proxy/servers

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

with_sessions   boolean  optional    

Optional. If set to true, includes a list of sessions for each proxy server. Example: true

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, app_id, name. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, app_id, name. Example: id

Show Proxy Server

requires authentication

Returns detailed information about a specific proxy server.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers/1?with_sessions=1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers/1'
params = {
  'with_sessions': '1',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'with_sessions' => '1',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 166,
        "app_id": 1430,
        "name": "Abigail Weimann",
        "locations": [
            {
                "id": 4976,
                "app_id": null,
                "name": "Dach-Hamill",
                "address": "93181 Hiram Locks\nNorth Frederic, MS 91287",
                "city": "Lake Natalia",
                "state": "Massachusetts",
                "description": "Pariatur repellendus deleniti et molestias fugit culpa illo. Delectus modi consequatur est commodi aliquam libero. Quia dolorum suscipit natus aliquam voluptate. Qui nesciunt natus est unde iusto magni quibusdam.",
                "notes": "Placeat error libero delectus eum eos in. Veritatis quia modi in. Et hic consequatur consequatur neque et. Velit sequi et dolor iure. Officiis non ut consequatur.",
                "emergency": "1",
                "phone": "1-814-676-5975",
                "flag": "Canada.png",
                "created_at": "2026-09-04 09:49:57",
                "updated_at": "2026-09-04 09:49:57"
            },
            {
                "id": 4977,
                "app_id": null,
                "name": "Beier-Ratke",
                "address": "43783 Schoen Route Suite 697\nMacejkovicberg, AK 41959-9283",
                "city": "North Korbin",
                "state": "Nevada",
                "description": "Molestias debitis aut optio placeat. Temporibus expedita necessitatibus similique. Vel nemo et eveniet dolores sapiente similique eius. Rem quod cupiditate inventore minus animi magni officiis omnis. Eveniet minus distinctio alias distinctio.",
                "notes": "Rerum ut ut autem necessitatibus tenetur. Unde rerum sint maiores expedita debitis velit. Quisquam culpa in eos reprehenderit.",
                "emergency": "0",
                "phone": "+12232881229",
                "flag": "USA.png",
                "created_at": "2026-09-04 09:49:57",
                "updated_at": "2026-09-04 09:49:57"
            }
        ],
        "configuration": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipmi/proxy/servers/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the proxy server. Example: 1

Query Parameters

with_sessions   boolean  optional    

Optional. If set to true, includes a list of sessions. Example: true

Create Proxy Server

requires authentication

Creates a new proxy server with the provided details.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Main IPMI Proxy\",
    \"app_id\": 12,
    \"location\": [
        8
    ],
    \"proxy_type\": \"console\",
    \"java_version\": \"jdk1.8.0_121\",
    \"enable_firewall\": true,
    \"firewall_rules\": \"iptables -N ALLOW_ONLY\\n                              iptables -A OUTPUT -d {{:ipmi.ip}} -j ALLOW_ONLY\\n                              iptables -A ALLOW_ONLY -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT\\n                              iptables -A ALLOW_ONLY -p tcp --dport 80 -j ACCEPT\\n                              iptables -A ALLOW_ONLY -p tcp --dport 443 -j ACCEPT\\n                              iptables -A ALLOW_ONLY -p tcp --dport {{:ipmi.kvmport}} -j ACCEPT\\n                              iptables -A OUTPUT -j DROP\",
    \"disable_login_buttons\": false
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers'
payload = {
    "name": "Main IPMI Proxy",
    "app_id": 12,
    "location": [
        8
    ],
    "proxy_type": "console",
    "java_version": "jdk1.8.0_121",
    "enable_firewall": true,
    "firewall_rules": "iptables -N ALLOW_ONLY\n                              iptables -A OUTPUT -d {{:ipmi.ip}} -j ALLOW_ONLY\n                              iptables -A ALLOW_ONLY -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT\n                              iptables -A ALLOW_ONLY -p tcp --dport 80 -j ACCEPT\n                              iptables -A ALLOW_ONLY -p tcp --dport 443 -j ACCEPT\n                              iptables -A ALLOW_ONLY -p tcp --dport {{:ipmi.kvmport}} -j ACCEPT\n                              iptables -A OUTPUT -j DROP",
    "disable_login_buttons": false
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Main IPMI Proxy',
            'app_id' => 12,
            'location' => [
                8,
            ],
            'proxy_type' => 'console',
            'java_version' => 'jdk1.8.0_121',
            'enable_firewall' => true,
            'firewall_rules' => 'iptables -N ALLOW_ONLY'."\n"
                .'                              iptables -A OUTPUT -d {{:ipmi.ip}} -j ALLOW_ONLY'."\n"
                .'                              iptables -A ALLOW_ONLY -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT'."\n"
                .'                              iptables -A ALLOW_ONLY -p tcp --dport 80 -j ACCEPT'."\n"
                .'                              iptables -A ALLOW_ONLY -p tcp --dport 443 -j ACCEPT'."\n"
                .'                              iptables -A ALLOW_ONLY -p tcp --dport {{:ipmi.kvmport}} -j ACCEPT'."\n"
                .'                              iptables -A OUTPUT -j DROP',
            'disable_login_buttons' => false,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 167,
        "app_id": 1431,
        "name": "Margret Spencer",
        "locations": [
            {
                "id": 4978,
                "app_id": null,
                "name": "Watsica, Cummerata and Feest",
                "address": "1153 Austen Pine Suite 384\nChrisfort, MI 38137-1588",
                "city": "East Terrellburgh",
                "state": "Delaware",
                "description": "Voluptatem optio culpa ea quis. Enim eveniet aliquid corrupti temporibus minima. Consequuntur et ex quia asperiores ullam. Ut ut ducimus impedit consequuntur corporis ad rerum.",
                "notes": "Magnam vero voluptatem sit autem commodi. In deserunt numquam qui maiores sunt sint. Assumenda rerum voluptatem voluptatem qui est ullam necessitatibus non.",
                "emergency": "0",
                "phone": "1-253-669-0767",
                "flag": "USA.png",
                "created_at": "2026-09-04 09:49:58",
                "updated_at": "2026-09-04 09:49:58"
            },
            {
                "id": 4979,
                "app_id": null,
                "name": "Corkery PLC",
                "address": "73820 Amaya Shoals\nEast Christophemouth, MS 79429",
                "city": "South Stanleymouth",
                "state": "Maryland",
                "description": "Ut accusamus distinctio impedit voluptatem quisquam dicta. Modi et ipsa omnis vel illo corporis rem. Et omnis molestiae non dolorem. Dolor et repellat voluptatem quisquam omnis.",
                "notes": "Aliquid accusamus enim eveniet. Atque inventore atque sint aut quis veritatis. Dolores sapiente quisquam doloribus recusandae sapiente.",
                "emergency": "1",
                "phone": "(814) 687-9834",
                "flag": "Germany.png",
                "created_at": "2026-09-04 09:49:58",
                "updated_at": "2026-09-04 09:49:58"
            }
        ],
        "configuration": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ipmi/proxy/servers

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

Remote agent we want to use. Must not be greater than 255 characters. Example: Main IPMI Proxy

app_id   integer     

Select a remote application ID. Must match an existing stored value. Example: 12

location   integer[]  optional    

Must match an existing stored value.

proxy_type   string  optional    

You can select the action that will be performed after starting the proxy. Example: console

Must be one of:
  • console
  • panel
  • panel-debug
java_version   string  optional    

You can specify the Java version that will be used in the noVNC session for Docker. Example: jdk1.8.0_121

Must be one of:
  • jdk1.8.0_121
  • jdk1.7.0_80
  • jre1.8.0_251
  • OpenWebStart
enable_firewall   boolean  optional    

Firewall is used to restrict access to websites. Enable this option to set up firewall rules. Example: true

firewall_rules   string  optional    

A script with firewall rules is automatically generated.
"{{:ipmi.ip}}" and "{{:ipmi.kvmport}}" will be replaced with the server IPMI IP Address and IPMI KVM Remote Port.
Edit the script to add your rules. Example: iptables -N ALLOW_ONLY iptables -A OUTPUT -d {{:ipmi.ip}} -j ALLOW_ONLY iptables -A ALLOW_ONLY -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT iptables -A ALLOW_ONLY -p tcp --dport 80 -j ACCEPT iptables -A ALLOW_ONLY -p tcp --dport 443 -j ACCEPT iptables -A ALLOW_ONLY -p tcp --dport {{:ipmi.kvmport}} -j ACCEPT iptables -A OUTPUT -j DROP

disable_login_buttons   boolean  optional    

Login buttons are used to send login and password to the manufacturer panel form. Example: false

Update Proxy Server

requires authentication

Updates proxy server with the provided details and id.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Main IPMI Proxy\",
    \"app_id\": 12,
    \"location\": [
        5
    ],
    \"proxy_type\": \"console\",
    \"java_version\": \"jdk1.8.0_121\",
    \"enable_firewall\": true,
    \"firewall_rules\": \"iptables -N ALLOW_ONLY\\n                              iptables -A OUTPUT -d {{:ipmi.ip}} -j ALLOW_ONLY\\n                              iptables -A ALLOW_ONLY -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT\\n                              iptables -A ALLOW_ONLY -p tcp --dport 80 -j ACCEPT\\n                              iptables -A ALLOW_ONLY -p tcp --dport 443 -j ACCEPT\\n                              iptables -A ALLOW_ONLY -p tcp --dport {{:ipmi.kvmport}} -j ACCEPT\\n                              iptables -A OUTPUT -j DROP\",
    \"disable_login_buttons\": false
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers/1'
payload = {
    "name": "Main IPMI Proxy",
    "app_id": 12,
    "location": [
        5
    ],
    "proxy_type": "console",
    "java_version": "jdk1.8.0_121",
    "enable_firewall": true,
    "firewall_rules": "iptables -N ALLOW_ONLY\n                              iptables -A OUTPUT -d {{:ipmi.ip}} -j ALLOW_ONLY\n                              iptables -A ALLOW_ONLY -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT\n                              iptables -A ALLOW_ONLY -p tcp --dport 80 -j ACCEPT\n                              iptables -A ALLOW_ONLY -p tcp --dport 443 -j ACCEPT\n                              iptables -A ALLOW_ONLY -p tcp --dport {{:ipmi.kvmport}} -j ACCEPT\n                              iptables -A OUTPUT -j DROP",
    "disable_login_buttons": false
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Main IPMI Proxy',
            'app_id' => 12,
            'location' => [
                5,
            ],
            'proxy_type' => 'console',
            'java_version' => 'jdk1.8.0_121',
            'enable_firewall' => true,
            'firewall_rules' => 'iptables -N ALLOW_ONLY'."\n"
                .'                              iptables -A OUTPUT -d {{:ipmi.ip}} -j ALLOW_ONLY'."\n"
                .'                              iptables -A ALLOW_ONLY -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT'."\n"
                .'                              iptables -A ALLOW_ONLY -p tcp --dport 80 -j ACCEPT'."\n"
                .'                              iptables -A ALLOW_ONLY -p tcp --dport 443 -j ACCEPT'."\n"
                .'                              iptables -A ALLOW_ONLY -p tcp --dport {{:ipmi.kvmport}} -j ACCEPT'."\n"
                .'                              iptables -A OUTPUT -j DROP',
            'disable_login_buttons' => false,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 168,
        "app_id": 1432,
        "name": "Zena Schumm DDS",
        "locations": [
            {
                "id": 4980,
                "app_id": null,
                "name": "Kshlerin, Hansen and Gottlieb",
                "address": "189 Towne Greens Apt. 560\nAudratown, GA 39372",
                "city": "West Terrence",
                "state": "Indiana",
                "description": "Et fuga ut et cumque tenetur. Debitis omnis qui omnis quisquam corporis. Ut nemo tempore sed optio. Ut esse aliquid maiores suscipit hic quasi vero.",
                "notes": "Quae dolores ratione libero nam eum. Repellendus nisi ipsum beatae earum maiores in. Autem odio quaerat eligendi praesentium nobis.",
                "emergency": "0",
                "phone": "914.605.3693",
                "flag": "Germany.png",
                "created_at": "2026-09-04 09:49:58",
                "updated_at": "2026-09-04 09:49:58"
            },
            {
                "id": 4981,
                "app_id": null,
                "name": "Brown Inc",
                "address": "70916 Yoshiko Shoal Apt. 222\nAlexandroborough, NV 98250",
                "city": "Lake Reba",
                "state": "Maryland",
                "description": "Sed autem ut impedit eos. Iste a laborum et aut voluptatum quis. Et omnis corrupti asperiores error.",
                "notes": "Vel dolore a labore aut odio ducimus provident. Veritatis molestias vitae quia laboriosam. Sit omnis aliquid exercitationem et est aut. Est enim dicta fugiat molestias necessitatibus exercitationem.",
                "emergency": "0",
                "phone": "1-701-714-8698",
                "flag": "Germany.png",
                "created_at": "2026-09-04 09:49:58",
                "updated_at": "2026-09-04 09:49:58"
            }
        ],
        "configuration": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/ipmi/proxy/servers/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the proxy server. Example: 1

Body Parameters

name   string  optional    

Remote agent we want to use. Must not be greater than 255 characters. Example: Main IPMI Proxy

app_id   integer  optional    

Select a remote application ID. Must match an existing stored value. Example: 12

location   integer[]  optional    

Must match an existing stored value.

proxy_type   string  optional    

You can select the action that will be performed after starting the proxy. Example: console

Must be one of:
  • console
  • panel
  • panel-debug
java_version   string  optional    

You can specify the Java version that will be used in the noVNC session for Docker. Example: jdk1.8.0_121

Must be one of:
  • jdk1.8.0_121
  • jdk1.7.0_80
  • jre1.8.0_251
  • OpenWebStart
enable_firewall   boolean  optional    

Firewall is used to restrict access to websites. Enable this option to set up firewall rules. Example: true

firewall_rules   string  optional    

A script with firewall rules is automatically generated.
"{{:ipmi.ip}}" and "{{:ipmi.kvmport}}" will be replaced with the server IPMI IP Address and IPMI KVM Remote Port.
Edit the script to add your rules. Example: iptables -N ALLOW_ONLY iptables -A OUTPUT -d {{:ipmi.ip}} -j ALLOW_ONLY iptables -A ALLOW_ONLY -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT iptables -A ALLOW_ONLY -p tcp --dport 80 -j ACCEPT iptables -A ALLOW_ONLY -p tcp --dport 443 -j ACCEPT iptables -A ALLOW_ONLY -p tcp --dport {{:ipmi.kvmport}} -j ACCEPT iptables -A OUTPUT -j DROP

disable_login_buttons   boolean  optional    

Login buttons are used to send login and password to the manufacturer panel form. Example: false

Delete Proxy Server

requires authentication

Deletes proxy server with given id

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/servers/1';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/ipmi/proxy/servers/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the addon. Example: 1

List Proxy Sessions

requires authentication

Returns a paginated list of proxy sessions.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipmi/proxy/sessions?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/sessions'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/sessions';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 179,
            "device_id": 2164,
            "ipmi_proxy_id": 169,
            "url": "https://192.168.203.150/client/console/19105/JhXYC4th/9e3a9c561daff738eed1f0dc4a12b69e3397ea43",
            "status": 1,
            "message": "Dolores ut nemo autem.",
            "log": null
        },
        {
            "id": 180,
            "device_id": 2165,
            "ipmi_proxy_id": 170,
            "url": "https://192.168.203.150/client/console/28081/naSpJsXb/a07b8b6b2006c28acb9ef1d94fcc4f5733a58a04",
            "status": 1,
            "message": "Incidunt quas labore nihil laborum.",
            "log": null
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipmi/proxy/sessions?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/ipmi/proxy/sessions",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipmi/proxy/sessions

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, device_id, ipmi_proxy_id. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, device_id, ipmi_proxy_id. Example: id

Show Proxy Session

requires authentication

Returns detailed information about a specific proxy session.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipmi/proxy/sessions/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/sessions/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/sessions/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 181,
        "device_id": 2166,
        "ipmi_proxy_id": 171,
        "url": "https://192.168.203.150/client/console/7961/xVD83YP0/b21ed3ccb55547deaa3ba34b264884f52072c307",
        "status": 1,
        "message": "Sapiente saepe tempora debitis omnis accusamus eos.",
        "log": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipmi/proxy/sessions/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the proxy session. Example: 1

Delete Proxy Session

requires authentication

Deletes proxy session with given id

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/ipmi/proxy/sessions/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/sessions/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/proxy/sessions/1';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/ipmi/proxy/sessions/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the proxy session. Example: 1

Start noVNC Session

requires authentication

Initiates a remote IPMI proxy session to the BMC of the device. The proxy allows web-based access to the BMC for remote management tasks like KVM, virtual media, or BIOS configuration.

If a session cannot be established, an error with logs may be returned for debugging purposes.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ipmi/1/novnc-connect" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/1/novnc-connect'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/1/novnc-connect';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 182,
        "device_id": 2167,
        "ipmi_proxy_id": 172,
        "url": "https://192.168.203.150/client/console/27463/yXSaUTGd/f0e38d4fe1fe450a6476304aeef105468b83749b",
        "status": 1,
        "message": "Quae occaecati nihil rem asperiores.",
        "log": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ipmi/{deviceId}/novnc-connect

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

IPMI Power Status

requires authentication

Checking IPMI power status of the device.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ipmi/1/power-status" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/1/power-status'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/1/power-status';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "status": "running"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ipmi/{deviceId}/power-status

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

BMC Cold Reset

requires authentication

Sends a cold reset command to the BMC (Baseboard Management Controller) of the device. This action forces a full reboot of the BMC, which may temporarily interrupt device management features.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ipmi/1/bmc-reset-cold" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/1/bmc-reset-cold'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/1/bmc-reset-cold';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ipmi/{deviceId}/bmc-reset-cold

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

IPMI Force Boot

requires authentication

Added in 1.25.1
Sets the boot flag that the device BMC should provide to the system firmware on boot. Accepted values: force_pxe, force_disk, force_safe, force_diag, force_cdrom, force_bios.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ipmi/1/force-boot" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"force_pxe\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/1/force-boot'
payload = {
    "type": "force_pxe"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/1/force-boot';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'type' => 'force_pxe',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ipmi/{deviceId}/force-boot

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

Body Parameters

type   string     

Boot flag to set on the device BMC. Example: force_pxe

Must be one of:
  • force_pxe
  • force_disk
  • force_safe
  • force_diag
  • force_cdrom
  • force_bios

IPMI Boot Status

requires authentication

Added in 1.25.1
Returns current chassis boot flags reported by the BMC.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipmi/1/boot-status" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipmi/1/boot-status'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipmi/1/boot-status';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipmi/{deviceId}/boot-status

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

deviceId   integer     

The ID of the device. Example: 1

IP Address Management

List of Subnets

requires authentication

Returns a paginated list of subnets

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipam/subnets?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=mask" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'mask',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'mask',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 198,
            "pool": "36.206.100.0",
            "mask": 24,
            "type": "ipv4",
            "status": "available",
            "ns1": null,
            "ns2": null,
            "gateway": null,
            "is_master_pool": 0,
            "description": "Dolorem incidunt sit est illo amet illo nemo.",
            "assignment": false,
            "tenants": [],
            "children": [],
            "parent": null,
            "vlan": null,
            "created_at": "2026-09-04 09:49:59",
            "updated_at": "2026-09-04 09:49:59"
        },
        {
            "id": 199,
            "pool": "182.13.31.0",
            "mask": 24,
            "type": "ipv4",
            "status": "available",
            "ns1": null,
            "ns2": null,
            "gateway": null,
            "is_master_pool": 0,
            "description": "Sit facere est repellat occaecati placeat.",
            "assignment": false,
            "tenants": [],
            "children": [],
            "parent": null,
            "vlan": null,
            "created_at": "2026-09-04 09:49:59",
            "updated_at": "2026-09-04 09:49:59"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/subnets?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/ipam/subnets",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipam/subnets

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, pool, mask, description, type, status, parent_id, vlan_id. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: mask, description, type, status, parent_id, vlan_id. Example: mask

Show Subnet

requires authentication

Returns detailed information about a specific subnet.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipam/subnets/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 200,
        "pool": "55.107.127.0",
        "mask": 24,
        "type": "ipv4",
        "status": "available",
        "ns1": null,
        "ns2": null,
        "gateway": null,
        "is_master_pool": 0,
        "description": "Sapiente repellendus numquam ipsam aut eius aut.",
        "assignment": false,
        "excluded_ranges": [],
        "tenants": [],
        "children": [],
        "parent": null,
        "vlan": null,
        "ip_addresses": {
            "assigned_ips": [],
            "available_ranges": [
                {
                    "start": "55.107.127.1",
                    "end": "55.107.127.254"
                }
            ]
        },
        "addressing": {
            "network_address": "55.107.127.0",
            "network_mask": "255.255.255.0",
            "wildcard_mask": "0.0.0.255",
            "broadcast_address": "55.107.127.255",
            "first_available_ip": "55.107.127.1",
            "utilization_percentage": 0,
            "available_ips": 254,
            "assigned_ips": 0,
            "free_ips": 254
        },
        "created_at": "2026-09-04 09:49:59",
        "updated_at": "2026-09-04 09:49:59"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipam/subnets/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the subnet. Example: 1

Create Subnet

requires authentication

Creates a new subnet with the provided details.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ipam/subnets" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"pool\": \"192.168.56.100\",
    \"mask\": 32,
    \"type\": \"ipv4\",
    \"description\": \"This is the description\",
    \"status\": \"available\",
    \"is_master_pool\": 1,
    \"parent_id\": 1,
    \"vlan_id\": 2,
    \"tenant_type\": \"Modules\\\\Addons\\\\IPManager\\\\Model\\\\IpamDevice\",
    \"tenant_ids\": [
        1
    ],
    \"assignment\": [
        \"location_1\"
    ],
    \"excluded_ranges\": [
        \"192.168.1.10-192.168.1.20\"
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets'
payload = {
    "pool": "192.168.56.100",
    "mask": 32,
    "type": "ipv4",
    "description": "This is the description",
    "status": "available",
    "is_master_pool": 1,
    "parent_id": 1,
    "vlan_id": 2,
    "tenant_type": "Modules\\Addons\\IPManager\\Model\\IpamDevice",
    "tenant_ids": [
        1
    ],
    "assignment": [
        "location_1"
    ],
    "excluded_ranges": [
        "192.168.1.10-192.168.1.20"
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'pool' => '192.168.56.100',
            'mask' => 32,
            'type' => 'ipv4',
            'description' => 'This is the description',
            'status' => 'available',
            'is_master_pool' => 1,
            'parent_id' => 1,
            'vlan_id' => 2,
            'tenant_type' => 'Modules\\Addons\\IPManager\\Model\\IpamDevice',
            'tenant_ids' => [
                1,
            ],
            'assignment' => [
                'location_1',
            ],
            'excluded_ranges' => [
                '192.168.1.10-192.168.1.20',
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 201,
        "pool": "152.15.93.0",
        "mask": 24,
        "type": "ipv4",
        "status": "available",
        "ns1": null,
        "ns2": null,
        "gateway": null,
        "is_master_pool": 0,
        "description": "Ipsum et illum qui corrupti qui ut rerum itaque.",
        "assignment": false,
        "excluded_ranges": [],
        "tenants": [],
        "children": [],
        "parent": null,
        "vlan": null,
        "ip_addresses": {
            "assigned_ips": [],
            "available_ranges": [
                {
                    "start": "152.15.93.1",
                    "end": "152.15.93.254"
                }
            ]
        },
        "addressing": {
            "network_address": "152.15.93.0",
            "network_mask": "255.255.255.0",
            "wildcard_mask": "0.0.0.255",
            "broadcast_address": "152.15.93.255",
            "first_available_ip": "152.15.93.1",
            "utilization_percentage": 0,
            "available_ips": 254,
            "assigned_ips": 0,
            "free_ips": 254
        },
        "created_at": "2026-09-04 09:49:59",
        "updated_at": "2026-09-04 09:49:59"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ipam/subnets

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

pool   string     

The pool of the subnet. Must be a valid IP address. Example: 192.168.56.100

mask   integer     

The mask of the subnet (Integer between 1-32 for ipv4 or 1-128 for ipv6). Must be between 0 and 128. Example: 32

type   string     

The type of the subnet. Example: ipv4

Must be one of:
  • ipv4
  • ipv6
description   string  optional    

The description of the subnet. Example: This is the description

status   string  optional    

The status of the subnet. Example: available

Must be one of:
  • available
  • active
  • disabled
  • reserved
is_master_pool   integer  optional    

Leave empty if it is not a master pool. Must be between 0 and 1. Example: 1

parent_id   integer  optional    

The parent ID for which subnet should be created. Example: 1

vlan_id   integer  optional    

The VLAN ID that should be assigned to the subnet. Example: 2

tenant_type   string  optional    

The tenant type of the tenant ids. Example: Modules\Addons\IPManager\Model\IpamDevice

Must be one of:
  • Modules\Addons\IPManager\Model\IpamDevice
  • Modules\Addons\IPManager\Model\IpamUser
tenant_ids   integer[]  optional    

The tenants that should be assigned to subnet. Tenant type must be provided for tenant ids to be assigned correctly.

assignment   string[]  optional    

Optionally restrict the subnet to specific infrastructure locations (e.g., location_{locationid}, floor{floorid}, rack{rack_id}). Leave this field empty to apply the subnet globally across all sites.

excluded_ranges   string[]  optional    

A single excluded IP, range, or CIDR.

Update Subnet

requires authentication

Updates subnet with the provided details and id.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/ipam/subnets/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"description\": \"This is the description\",
    \"status\": \"available\",
    \"is_master_pool\": 1,
    \"parent_id\": 1,
    \"vlan_id\": 2,
    \"tenant_type\": \"Modules\\\\Addons\\\\IPManager\\\\Model\\\\IpamDevice\",
    \"tenant_ids\": [
        1
    ],
    \"assignment\": [
        \"location_1\"
    ],
    \"excluded_ranges\": [
        \"192.168.1.10-192.168.1.20\"
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets/1'
payload = {
    "description": "This is the description",
    "status": "available",
    "is_master_pool": 1,
    "parent_id": 1,
    "vlan_id": 2,
    "tenant_type": "Modules\\Addons\\IPManager\\Model\\IpamDevice",
    "tenant_ids": [
        1
    ],
    "assignment": [
        "location_1"
    ],
    "excluded_ranges": [
        "192.168.1.10-192.168.1.20"
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'description' => 'This is the description',
            'status' => 'available',
            'is_master_pool' => 1,
            'parent_id' => 1,
            'vlan_id' => 2,
            'tenant_type' => 'Modules\\Addons\\IPManager\\Model\\IpamDevice',
            'tenant_ids' => [
                1,
            ],
            'assignment' => [
                'location_1',
            ],
            'excluded_ranges' => [
                '192.168.1.10-192.168.1.20',
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 202,
        "pool": "154.162.97.0",
        "mask": 24,
        "type": "ipv4",
        "status": "available",
        "ns1": null,
        "ns2": null,
        "gateway": null,
        "is_master_pool": 0,
        "description": "Cum debitis est quae consectetur aut voluptatem dolor.",
        "assignment": false,
        "excluded_ranges": [],
        "tenants": [],
        "children": [],
        "parent": null,
        "vlan": null,
        "ip_addresses": {
            "assigned_ips": [],
            "available_ranges": [
                {
                    "start": "154.162.97.1",
                    "end": "154.162.97.254"
                }
            ]
        },
        "addressing": {
            "network_address": "154.162.97.0",
            "network_mask": "255.255.255.0",
            "wildcard_mask": "0.0.0.255",
            "broadcast_address": "154.162.97.255",
            "first_available_ip": "154.162.97.1",
            "utilization_percentage": 0,
            "available_ips": 254,
            "assigned_ips": 0,
            "free_ips": 254
        },
        "created_at": "2026-09-04 09:49:59",
        "updated_at": "2026-09-04 09:49:59"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/ipam/subnets/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the subnet. Example: 1

Body Parameters

description   string  optional    

The description of the subnet. Example: This is the description

status   string  optional    

The status of the subnet. Example: available

Must be one of:
  • available
  • active
  • disabled
  • reserved
is_master_pool   integer  optional    

Leave empty if it is not a master pool. Must be between 0 and 1. Example: 1

parent_id   integer  optional    

The parent subnet ID. Use 0 or null to move the subnet to the root level. Must be at least 0. Example: 1

vlan_id   integer  optional    

The VLAN ID that should be assigned to the subnet. Example: 2

tenant_type   string  optional    

The tenant type of the tenant ids. Example: Modules\Addons\IPManager\Model\IpamDevice

Must be one of:
  • Modules\Addons\IPManager\Model\IpamDevice
  • Modules\Addons\IPManager\Model\IpamUser
tenant_ids   integer[]  optional    

The tenants that should be assigned to subnet. Tenant type must be provided for tenant ids to be assigned correctly.

assignment   string[]  optional    

Optionally restrict the subnet to specific infrastructure locations (e.g., location_{locationid}, floor{floorid}, rack{rack_id}). Leave this field empty to apply the subnet globally across all sites.

excluded_ranges   string[]  optional    

A single excluded IP, range, or CIDR.

Split Subnet

requires authentication

Splits subnet with given id.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ipam/subnets/1/split" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"selected_mask\": 32
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets/1/split'
payload = {
    "selected_mask": 32
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets/1/split';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'selected_mask' => 32,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 203,
        "pool": "6.239.72.0",
        "mask": 24,
        "type": "ipv4",
        "status": "available",
        "ns1": null,
        "ns2": null,
        "gateway": null,
        "is_master_pool": 0,
        "description": "Aut rem consequatur velit ab consequatur.",
        "assignment": false,
        "excluded_ranges": [],
        "tenants": [],
        "children": [],
        "parent": null,
        "vlan": null,
        "ip_addresses": {
            "assigned_ips": [],
            "available_ranges": [
                {
                    "start": "6.239.72.1",
                    "end": "6.239.72.254"
                }
            ]
        },
        "addressing": {
            "network_address": "6.239.72.0",
            "network_mask": "255.255.255.0",
            "wildcard_mask": "0.0.0.255",
            "broadcast_address": "6.239.72.255",
            "first_available_ip": "6.239.72.1",
            "utilization_percentage": 0,
            "available_ips": 254,
            "assigned_ips": 0,
            "free_ips": 254
        },
        "created_at": "2026-09-04 09:49:59",
        "updated_at": "2026-09-04 09:49:59"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ipam/subnets/{id}/split

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the subnet. Example: 1

Body Parameters

selected_mask   integer     

The mask of the subnets created after split greater than parent subnet (Integer between 1-32 for ipv4 or 1-128 for ipv6). Must be between 0 and 128. Example: 32

Delete Subnet

requires authentication

Deletes subnet with given id

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/ipam/subnets/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/subnets/1';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/ipam/subnets/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the subnet. Example: 1

List User Subnets

requires authentication

Returns a paginated list of subnets for user

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipam/user/1/subnets?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=mask" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/user/1/subnets'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'mask',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/user/1/subnets';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'mask',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 204,
            "pool": "94.165.191.0",
            "mask": 24,
            "type": "ipv4",
            "status": "available",
            "ns1": null,
            "ns2": null,
            "gateway": null,
            "is_master_pool": 0,
            "description": "Sit facere et ea ipsam.",
            "assignment": false,
            "tenants": [],
            "children": [],
            "parent": null,
            "vlan": null,
            "created_at": "2026-09-04 09:49:59",
            "updated_at": "2026-09-04 09:49:59"
        },
        {
            "id": 205,
            "pool": "249.162.135.0",
            "mask": 24,
            "type": "ipv4",
            "status": "available",
            "ns1": null,
            "ns2": null,
            "gateway": null,
            "is_master_pool": 0,
            "description": "Corrupti dolore dolorum et.",
            "assignment": false,
            "tenants": [],
            "children": [],
            "parent": null,
            "vlan": null,
            "created_at": "2026-09-04 09:49:59",
            "updated_at": "2026-09-04 09:49:59"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/user/{id}/subnets?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/ipam/user/{id}/subnets",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipam/user/{id}/subnets

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the user. Example: 1

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, pool, mask, description, type, status, parent_id, vlan_id. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: mask, description, type, status, parent_id, vlan_id. Example: mask

List Device Subnets

requires authentication

Returns a paginated list of subnets for device

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipam/device/1/subnets?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=mask" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/device/1/subnets'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'mask',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/device/1/subnets';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'mask',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 206,
            "pool": "231.20.165.0",
            "mask": 24,
            "type": "ipv4",
            "status": "available",
            "ns1": null,
            "ns2": null,
            "gateway": null,
            "is_master_pool": 0,
            "description": "Hic culpa dignissimos dolor perferendis accusamus sed eligendi enim.",
            "assignment": false,
            "tenants": [],
            "children": [],
            "parent": null,
            "vlan": null,
            "created_at": "2026-09-04 09:49:59",
            "updated_at": "2026-09-04 09:49:59"
        },
        {
            "id": 207,
            "pool": "152.40.158.0",
            "mask": 24,
            "type": "ipv4",
            "status": "available",
            "ns1": null,
            "ns2": null,
            "gateway": null,
            "is_master_pool": 0,
            "description": "Accusamus reiciendis tempore beatae iste in.",
            "assignment": false,
            "tenants": [],
            "children": [],
            "parent": null,
            "vlan": null,
            "created_at": "2026-09-04 09:49:59",
            "updated_at": "2026-09-04 09:49:59"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/device/{id}/subnets?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/ipam/device/{id}/subnets",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipam/device/{id}/subnets

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 1

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, pool, mask, description, type, status, parent_id, vlan_id. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: mask, description, type, status, parent_id, vlan_id. Example: mask

Assign Subnets to Device

requires authentication

Assigns Subnets to Device

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ipam/device/1/subnets/assign" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"subnets\": [
        1
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/device/1/subnets/assign'
payload = {
    "subnets": [
        1
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/device/1/subnets/assign';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'subnets' => [
                1,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2168,
        "label": "possimus",
        "model": "quae",
        "product_id": 0,
        "model_id": 2506,
        "parent_id": 0,
        "type_id": 3060,
        "user_id": 9225,
        "order_id": 960,
        "location_id": 5007,
        "rack_id": 960,
        "blade_id": 0,
        "os_installation": 0,
        "colocation_id": 0,
        "provisioning_id": 0,
        "manufacturer": "Erdman-Turcotte",
        "description": "Fuga harum tempora qui.",
        "comments": null,
        "status": "available",
        "device_status": "running",
        "service_status": "activated",
        "function": null,
        "serialnumber1": "SN657PX",
        "serialnumber2": null,
        "service_tag": "ST419ZT",
        "location": "Watsica and Sons",
        "metadata": [],
        "locked": 0,
        "last_discovered": "Never",
        "discovery_time": 0,
        "last_polled": "Never",
        "poller_disabled": 0,
        "poller_time": 0,
        "last_hour_traffic": 0,
        "last_day_traffic": 0,
        "last_week_traffic": 0,
        "last_month_traffic": 0,
        "current_month_traffic": 0,
        "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
        "device_traffic": null,
        "subnets": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ipam/device/{id}/subnets/assign

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 1

Body Parameters

subnets   integer[]  optional    

The array of subnets.

Unassign Subnets to Device

requires authentication

Unassigns Subnets to Device

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ipam/device/1/subnets/unassign" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"subnets\": [
        1
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/device/1/subnets/unassign'
payload = {
    "subnets": [
        1
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/device/1/subnets/unassign';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'subnets' => [
                1,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2169,
        "label": "repellat",
        "model": "at",
        "product_id": 0,
        "model_id": 2507,
        "parent_id": 0,
        "type_id": 3062,
        "user_id": 9232,
        "order_id": 961,
        "location_id": 5011,
        "rack_id": 961,
        "blade_id": 0,
        "os_installation": 0,
        "colocation_id": 0,
        "provisioning_id": 0,
        "manufacturer": "Rempel Group",
        "description": "Omnis accusamus sed dolor quaerat nesciunt in.",
        "comments": null,
        "status": "available",
        "device_status": "running",
        "service_status": "activated",
        "function": null,
        "serialnumber1": "SN631XD",
        "serialnumber2": null,
        "service_tag": "ST468LC",
        "location": "Conn, Kautzer and Corwin",
        "metadata": [],
        "locked": 0,
        "last_discovered": "Never",
        "discovery_time": 0,
        "last_polled": "Never",
        "poller_disabled": 0,
        "poller_time": 0,
        "last_hour_traffic": 0,
        "last_day_traffic": 0,
        "last_week_traffic": 0,
        "last_month_traffic": 0,
        "current_month_traffic": 0,
        "labeledRackWithPosition": "<span class=\"edc-badge edc-badge-muted\">Unassigned</span>",
        "device_traffic": null,
        "subnets": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ipam/device/{id}/subnets/unassign

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 1

Body Parameters

subnets   integer[]  optional    

The array of subnets.

List of IP addresses

requires authentication

This endpoint returns a paginated collection of IP addresses

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipam/ips?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=value" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/ips'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'value',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/ips';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'value',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 265,
            "item_id": 38,
            "device_label": "#38 web-prod-01 (PowerEdge R640)",
            "value": "200.94.209.231",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4",
            "gateway": "200.94.209.1",
            "mask": 24,
            "subnet_mask": "255.255.255.0",
            "cidr": "200.94.209.0/24",
            "subnet": {
                "id": 12,
                "pool": "200.94.209.0",
                "mask": 24,
                "gateway": "200.94.209.1",
                "subnet_mask": "255.255.255.0",
                "cidr": "200.94.209.0/24"
            },
            "vlan": {
                "id": 7,
                "name": "Production",
                "vlan_id": 100
            }
        },
        {
            "id": 307,
            "item_id": 44,
            "value": "146.224.170.224",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 314,
            "item_id": 45,
            "value": "139.235.236.138",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 328,
            "item_id": 47,
            "value": "207.243.68.21",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 335,
            "item_id": 48,
            "value": "46.236.68.242",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 342,
            "item_id": 49,
            "value": "166.73.24.58",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 356,
            "item_id": 51,
            "value": "160.24.83.37",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 363,
            "item_id": 52,
            "value": "80.24.122.22",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 370,
            "item_id": 53,
            "value": "174.251.45.79",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 377,
            "item_id": 54,
            "value": "155.150.252.1",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        }
    ],
    "links": {
        "first": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=1",
        "last": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=16",
        "prev": null,
        "next": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 16,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=2",
                "label": "2",
                "page": 2,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=3",
                "label": "3",
                "page": 3,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=4",
                "label": "4",
                "page": 4,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=5",
                "label": "5",
                "page": 5,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=6",
                "label": "6",
                "page": 6,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=7",
                "label": "7",
                "page": 7,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=8",
                "label": "8",
                "page": 8,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=9",
                "label": "9",
                "page": 9,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=10",
                "label": "10",
                "page": 10,
                "active": false
            },
            {
                "url": null,
                "label": "...",
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=15",
                "label": "15",
                "page": 15,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=16",
                "label": "16",
                "page": 16,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=2",
                "label": "Next &raquo;",
                "page": 2,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/ipam/ips",
        "per_page": 10,
        "to": 10,
        "total": 151,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipam/ips

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, item_id, value, description, type, ip_type. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: value, description, type, ip_type. Example: value

Update IP address description

requires authentication

Updates the description of an IP address entity

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/ipam/ips/456" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"description\": \"Primary IP for web server\",
    \"ip_address\": \"192.168.56.1\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/ips/456'
payload = {
    "description": "Primary IP for web server",
    "ip_address": "192.168.56.1"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/ips/456';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'description' => 'Primary IP for web server',
            'ip_address' => '192.168.56.1',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/ipam/ips/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the IP address entity. Example: 456

Body Parameters

description   string  optional    

Description or label for the IP address. Example: Primary IP for web server

ip_address   string     

IP Address for which description will be updated. Example: 192.168.56.1

List of VLANs

requires authentication

This endpoint returns a paginated collection of VLANs

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipam/vlans?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=vlan_vlan" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/vlans'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'vlan_vlan',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/vlans';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'vlan_vlan',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 104,
            "device_id": null,
            "vlan_vlan": 1147,
            "vlan_name": "neque rem",
            "description": "Totam aut alias similique vero.",
            "vlan_type": "provisioning",
            "vlan_status": "depreciated",
            "device": null
        },
        {
            "id": 105,
            "device_id": null,
            "vlan_vlan": 2538,
            "vlan_name": "sed dolor",
            "description": "Voluptatem velit qui et natus.",
            "vlan_type": "provisioning",
            "vlan_status": "depreciated",
            "device": null
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/vlans?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/ipam/vlans",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipam/vlans

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, vlan_vlan, vlan_name, vlan_type, vlan_status, description, device_id. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: vlan_vlan, vlan_name, vlan_type, vlan_status, description, device_id. Example: vlan_vlan

Show VLAN

requires authentication

Returns detailed information about a specific VLAN.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/ipam/vlans/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/vlans/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/vlans/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 106,
        "device_id": null,
        "vlan_vlan": 2565,
        "vlan_name": "eum sint",
        "description": "Perferendis aut est vero a autem pariatur.",
        "vlan_type": "standard",
        "vlan_status": "depreciated",
        "device": null,
        "ports": []
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/ipam/vlans/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the vlan. Example: 1

Create VLAN

requires authentication

Creates a new vlan with the provided details.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/ipam/vlans" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"device_id\": 1,
    \"vlan_vlan\": 1001,
    \"vlan_name\": \"VLAN 1001\",
    \"vlan_type\": \"standard\",
    \"status\": \"active\",
    \"description\": \"This is the description of the vlan.\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/vlans'
payload = {
    "device_id": 1,
    "vlan_vlan": 1001,
    "vlan_name": "VLAN 1001",
    "vlan_type": "standard",
    "status": "active",
    "description": "This is the description of the vlan."
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/vlans';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'device_id' => 1,
            'vlan_vlan' => 1001,
            'vlan_name' => 'VLAN 1001',
            'vlan_type' => 'standard',
            'status' => 'active',
            'description' => 'This is the description of the vlan.',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 107,
        "device_id": null,
        "vlan_vlan": 1897,
        "vlan_name": "molestiae qui",
        "description": "Doloremque accusamus quasi ad laborum qui accusantium possimus quis.",
        "vlan_type": "provisioning",
        "vlan_status": "active",
        "device": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/ipam/vlans

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

device_id   integer     

Device Id for which vlan should be created. Example: 1

vlan_vlan   integer     

The id of the vlan. Example: 1001

vlan_name   string     

The name of the vlan. Example: VLAN 1001

vlan_type   string  optional    

The type of the vlan. Example: standard

Must be one of:
  • standard
  • provisioning
status   string  optional    

The status of the vlan. Example: active

Must be one of:
  • active
  • reserved
  • depreciated
description   string  optional    

The description of the vlan. Example: This is the description of the vlan.

Update VLAN

requires authentication

Updates vlan with the provided details and id.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/ipam/vlans/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"vlan_type\": \"standard\",
    \"status\": \"active\",
    \"description\": \"This is the description of the vlan.\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/vlans/1'
payload = {
    "vlan_type": "standard",
    "status": "active",
    "description": "This is the description of the vlan."
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/vlans/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'vlan_type' => 'standard',
            'status' => 'active',
            'description' => 'This is the description of the vlan.',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 108,
        "device_id": null,
        "vlan_vlan": 1894,
        "vlan_name": "repellendus recusandae",
        "description": "Qui distinctio tenetur quis ullam enim quis.",
        "vlan_type": "provisioning",
        "vlan_status": "active",
        "device": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/ipam/vlans/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the vlan. Example: 1

Body Parameters

vlan_type   string  optional    

The type of the vlan. Example: standard

Must be one of:
  • standard
  • provisioning
status   string  optional    

The status of the vlan. Example: active

Must be one of:
  • active
  • reserved
  • depreciated
description   string  optional    

The description of the vlan. Example: This is the description of the vlan.

Delete VLAN

requires authentication

Deletes vlan with given id

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/ipam/vlans/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/ipam/vlans/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/ipam/vlans/1';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/ipam/vlans/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the vlan. Example: 1

Usage Collector

List of Limits For Device

requires authentication

Returns a paginated list of limits for devices with configured limits

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/usage-collector/limits?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/usage-collector/limits'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/usage-collector/limits';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 111,
            "label": "4U",
            "model": "Generic",
            "device_status": "running",
            "location": "Rzeszow",
            "metadata": [],
            "configurations": [
                {
                    "id": 2,
                    "driver": "PowerUsage",
                    "enabled": false,
                    "config": {
                        "total": "12",
                        "interval_start_day": "first day of this month",
                        "enable_notifications": "0",
                        "time_unit": "5",
                        "warning_notification_treshold": "110"
                    },
                    "created_at": "2025-08-20 12:18:41",
                    "updated_at": "2025-08-20 12:18:41"
                },
                {
                    "id": 3,
                    "driver": "TrafficAggregation",
                    "enabled": false,
                    "config": {
                        "bandwidth": "1000",
                        "bandwidth_unit": "MB",
                        "bandwidth_in": "200",
                        "bandwidth_in_unit": "MB",
                        "bandwidth_out": "300",
                        "bandwidth_out_unit": "TB",
                        "percentile": null,
                        "disable_traffic_aggregation_ports": "0",
                        "interval_start_day": "first day of this month",
                        "enable_notifications": "0",
                        "time_unit": "5",
                        "warning_notification_treshold": "110"
                    },
                    "created_at": "2025-08-20 12:24:26",
                    "updated_at": "2025-08-20 12:24:26"
                }
            ]
        },
        {
            "id": 198,
            "label": "Test Server",
            "model": "Generic",
            "device_status": null,
            "location": "Rzeszow",
            "metadata": [],
            "configurations": [
                {
                    "id": 5,
                    "driver": "TrafficAggregation",
                    "enabled": true,
                    "config": {
                        "bandwidth": 0,
                        "bandwidth_unit": "GB",
                        "bandwidth_in": 0,
                        "bandwidth_in_unit": "GB",
                        "bandwidth_out": 0,
                        "bandwidth_out_unit": "GB",
                        "percentile": 0,
                        "interval_start_day": "first day of this month"
                    },
                    "created_at": "2025-10-16 09:29:47",
                    "updated_at": "2025-10-16 09:30:49"
                }
            ]
        },
        {
            "id": 41,
            "label": "label6",
            "model": "Generic",
            "device_status": "running",
            "location": "New York",
            "metadata": [],
            "configurations": [
                {
                    "id": 6,
                    "driver": "TrafficAggregation",
                    "enabled": true,
                    "config": {
                        "bandwidth": "1",
                        "bandwidth_unit": "GB",
                        "bandwidth_in": "0.1",
                        "bandwidth_in_unit": "GB",
                        "bandwidth_out": "0.1",
                        "bandwidth_out_unit": "GB",
                        "percentile": "10",
                        "interval_start_day": "first day of this month"
                    },
                    "created_at": "2025-10-16 09:34:08",
                    "updated_at": "2025-10-20 12:45:22"
                }
            ]
        },
        {
            "id": 81,
            "label": "test",
            "model": "Generic",
            "device_status": "running",
            "location": "Rzeszow",
            "metadata": [],
            "configurations": [
                {
                    "id": 7,
                    "driver": "TrafficAggregation",
                    "enabled": true,
                    "config": {
                        "bandwidth": 0,
                        "bandwidth_unit": "GB",
                        "bandwidth_in": 0,
                        "bandwidth_in_unit": "GB",
                        "bandwidth_out": 0,
                        "bandwidth_out_unit": "GB",
                        "percentile": 0,
                        "interval_start_day": "first day of this month"
                    },
                    "created_at": "2025-10-16 10:07:01",
                    "updated_at": "2025-10-16 10:07:01"
                }
            ]
        }
    ],
    "links": {
        "first": "https://your-easydcim.com/api/v3/admin/usage-collector/limits?page=1",
        "last": "https://your-easydcim.com/api/v3/admin/usage-collector/limits?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/usage-collector/limits?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/usage-collector/limits",
        "per_page": 10,
        "to": 4,
        "total": 4,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/usage-collector/limits

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, label, location_id, type_id, model_id. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, label, location_id, type_id, model_id. Example: id

Show of Limits For Device

requires authentication

Returns limits for device

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/usage-collector/1/limits" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/usage-collector/1/limits'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/usage-collector/1/limits';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 111,
        "label": "4U",
        "model": "Generic",
        "device_status": "running",
        "location": "Rzeszow",
        "metadata": [],
        "configurations": [
            {
                "id": 2,
                "driver": "PowerUsage",
                "enabled": false,
                "config": {
                    "total": "12",
                    "interval_start_day": "first day of this month",
                    "enable_notifications": "0",
                    "time_unit": "5",
                    "warning_notification_treshold": "110"
                },
                "created_at": "2025-08-20 12:18:41",
                "updated_at": "2025-08-20 12:18:41"
            },
            {
                "id": 3,
                "driver": "TrafficAggregation",
                "enabled": false,
                "config": {
                    "bandwidth": "1000",
                    "bandwidth_unit": "MB",
                    "bandwidth_in": "200",
                    "bandwidth_in_unit": "MB",
                    "bandwidth_out": "300",
                    "bandwidth_out_unit": "TB",
                    "percentile": null,
                    "disable_traffic_aggregation_ports": "0",
                    "interval_start_day": "first day of this month",
                    "enable_notifications": "0",
                    "time_unit": "5",
                    "warning_notification_treshold": "110"
                },
                "created_at": "2025-08-20 12:24:26",
                "updated_at": "2025-08-20 12:24:26"
            }
        ]
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/usage-collector/{id}/limits

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 1

Update Limits For Device

requires authentication

Returns limits for device

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/usage-collector/1/limits" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"limit_type\": \"TrafficAggregation\",
    \"config\": {
        \"bandwidth\": 100,
        \"bandwidth_unit\": \"GB\",
        \"bandwidth_in\": 100,
        \"bandwidth_in_unit\": \"MB\",
        \"bandwidth_out\": 100,
        \"bandwidth_out_unit\": \"TB\",
        \"percentile\": null,
        \"disable_traffic_aggregation_ports\": false,
        \"interval_start_day\": \"first day of this month\",
        \"enable_notifications\": false,
        \"time_unit\": 60,
        \"warning_notification_treshold\": 110
    }
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/usage-collector/1/limits'
payload = {
    "limit_type": "TrafficAggregation",
    "config": {
        "bandwidth": 100,
        "bandwidth_unit": "GB",
        "bandwidth_in": 100,
        "bandwidth_in_unit": "MB",
        "bandwidth_out": 100,
        "bandwidth_out_unit": "TB",
        "percentile": null,
        "disable_traffic_aggregation_ports": false,
        "interval_start_day": "first day of this month",
        "enable_notifications": false,
        "time_unit": 60,
        "warning_notification_treshold": 110
    }
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/usage-collector/1/limits';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'limit_type' => 'TrafficAggregation',
            'config' => [
                'bandwidth' => 100,
                'bandwidth_unit' => 'GB',
                'bandwidth_in' => 100,
                'bandwidth_in_unit' => 'MB',
                'bandwidth_out' => 100,
                'bandwidth_out_unit' => 'TB',
                'percentile' => null,
                'disable_traffic_aggregation_ports' => false,
                'interval_start_day' => 'first day of this month',
                'enable_notifications' => false,
                'time_unit' => 60,
                'warning_notification_treshold' => 110,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 111,
        "label": "4U",
        "model": "Generic",
        "device_status": "running",
        "location": "Rzeszow",
        "metadata": [],
        "configurations": [
            {
                "id": 2,
                "driver": "PowerUsage",
                "enabled": false,
                "config": {
                    "total": "12",
                    "interval_start_day": "first day of this month",
                    "enable_notifications": "0",
                    "time_unit": "5",
                    "warning_notification_treshold": "110"
                },
                "created_at": "2025-08-20 12:18:41",
                "updated_at": "2025-08-20 12:18:41"
            },
            {
                "id": 3,
                "driver": "TrafficAggregation",
                "enabled": false,
                "config": {
                    "bandwidth": "1000",
                    "bandwidth_unit": "MB",
                    "bandwidth_in": "200",
                    "bandwidth_in_unit": "MB",
                    "bandwidth_out": "300",
                    "bandwidth_out_unit": "TB",
                    "percentile": null,
                    "disable_traffic_aggregation_ports": "0",
                    "interval_start_day": "first day of this month",
                    "enable_notifications": "0",
                    "time_unit": "5",
                    "warning_notification_treshold": "110"
                },
                "created_at": "2025-08-20 12:24:26",
                "updated_at": "2025-08-20 12:24:26"
            }
        ]
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/usage-collector/{id}/limits

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 1

Body Parameters

limit_type   string     

Limit Type for which configuration should be updated. TrafficAggregation for item types: Server, Blade, Colocation, PDU, Switch, Router, Firewall, PowerUsage for item types: PDU, Colocation and ServerPowerUsage for item types: Server, Blade. Example: TrafficAggregation

Must be one of:
  • PowerUsage
  • ServerPowerUsage
  • TrafficAggregation
config   object     

Configuration properties to be updated.

Delete Limits For Device

requires authentication

Returns limits for device

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/usage-collector/1/limits" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"limit_type\": \"TrafficAggregation\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/usage-collector/1/limits'
payload = {
    "limit_type": "TrafficAggregation"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/usage-collector/1/limits';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'limit_type' => 'TrafficAggregation',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 111,
        "label": "4U",
        "model": "Generic",
        "device_status": "running",
        "location": "Rzeszow",
        "metadata": [],
        "configurations": [
            {
                "id": 2,
                "driver": "PowerUsage",
                "enabled": false,
                "config": {
                    "total": "12",
                    "interval_start_day": "first day of this month",
                    "enable_notifications": "0",
                    "time_unit": "5",
                    "warning_notification_treshold": "110"
                },
                "created_at": "2025-08-20 12:18:41",
                "updated_at": "2025-08-20 12:18:41"
            },
            {
                "id": 3,
                "driver": "TrafficAggregation",
                "enabled": false,
                "config": {
                    "bandwidth": "1000",
                    "bandwidth_unit": "MB",
                    "bandwidth_in": "200",
                    "bandwidth_in_unit": "MB",
                    "bandwidth_out": "300",
                    "bandwidth_out_unit": "TB",
                    "percentile": null,
                    "disable_traffic_aggregation_ports": "0",
                    "interval_start_day": "first day of this month",
                    "enable_notifications": "0",
                    "time_unit": "5",
                    "warning_notification_treshold": "110"
                },
                "created_at": "2025-08-20 12:24:26",
                "updated_at": "2025-08-20 12:24:26"
            }
        ]
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/usage-collector/{id}/limits

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the device. Example: 1

Body Parameters

limit_type   string     

Limit Type for which configuration should be updated. TrafficAggregation for item types: Server, Blade, Colocation, PDU, Switch, Router, Firewall, PowerUsage for item types: PDU, Colocation and ServerPowerUsage for item types: Server, Blade. Example: TrafficAggregation

Must be one of:
  • PowerUsage
  • ServerPowerUsage
  • TrafficAggregation

DNS Management

List rDNS records

requires authentication

This endpoint returns a paginated list of reverse DNS (rDNS) entries

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/dns-manager/rdns?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/dns-manager/rdns'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/dns-manager/rdns';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 99,
            "device_id": 2172,
            "user_id": 9261,
            "server_id": 147,
            "ip": "247.7.80.240",
            "from": "parisian.com",
            "name": "pagac.net",
            "ttl": "3600",
            "created_at": "2026-09-04 09:50:01",
            "updated_at": "2026-09-04 09:50:01"
        },
        {
            "id": 100,
            "device_id": 2173,
            "user_id": 9269,
            "server_id": 148,
            "ip": "44.47.94.245",
            "from": "dietrich.com",
            "name": "hoeger.com",
            "ttl": "3600",
            "created_at": "2026-09-04 09:50:02",
            "updated_at": "2026-09-04 09:50:02"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/dns-manager/rdns?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/dns-manager/rdns",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/dns-manager/rdns

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, device_id, user_id, server_id, ip, from, name, ttl. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, device_id, user_id, server_id, ip, from, name. Example: id

Create rDNS record

requires authentication

Stores a new reverse DNS (rDNS) entry

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/dns-manager/rdns" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"ip\": \"192.168.1.1\",
    \"rdata\": \"example.mydomain.com\",
    \"device_id\": 1,
    \"ttl\": 3600
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/dns-manager/rdns'
payload = {
    "ip": "192.168.1.1",
    "rdata": "example.mydomain.com",
    "device_id": 1,
    "ttl": 3600
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/dns-manager/rdns';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'ip' => '192.168.1.1',
            'rdata' => 'example.mydomain.com',
            'device_id' => 1,
            'ttl' => 3600,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 101,
        "device_id": 2174,
        "user_id": 9277,
        "server_id": 149,
        "ip": "254.0.51.207",
        "from": "murray.com",
        "name": "franecki.com",
        "ttl": "3600",
        "created_at": "2026-09-04 09:50:02",
        "updated_at": "2026-09-04 09:50:02"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/dns-manager/rdns

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

ip   string     

The IP address to associate with the reverse DNS record. Must be a valid IP address. Example: 192.168.1.1

rdata   string     

The domain name (PTR) that should resolve for the IP. Example: example.mydomain.com

device_id   integer     

The ID of the device this record is associated with. Must match an existing stored value. Example: 1

ttl   integer  optional    

Optional TTL (Time To Live) value for the record in seconds. Must be at least 60. Example: 3600

Update rDNS record

requires authentication

Updates an existing reverse DNS (rDNS) record.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/dns-manager/rdns/456" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"rdata\": \"updated.example.net\",
    \"ttl\": 3600
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/dns-manager/rdns/456'
payload = {
    "rdata": "updated.example.net",
    "ttl": 3600
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/dns-manager/rdns/456';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'rdata' => 'updated.example.net',
            'ttl' => 3600,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 102,
        "device_id": 2175,
        "user_id": 9285,
        "server_id": 150,
        "ip": "135.189.44.249",
        "from": "rath.com",
        "name": "weimann.com",
        "ttl": "3600",
        "created_at": "2026-09-04 09:50:03",
        "updated_at": "2026-09-04 09:50:03"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/dns-manager/rdns/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the rDNS record. Example: 456

Body Parameters

rdata   string     

The domain name (PTR) to update for this record. Example: updated.example.net

ttl   integer  optional    

Optional TTL (Time To Live) value in seconds. Must be at least 60. Example: 3600

Delete rDNS record

requires authentication

Deletes a reverse DNS (rDNS) record.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/dns-manager/rdns/456" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/dns-manager/rdns/456'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/dns-manager/rdns/456';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/dns-manager/rdns/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the rDNS record. Example: 456

List Zones

requires authentication

This endpoint returns a paginated list of zones

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/dns-manager/zones?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 49,
            "device_id": 2176,
            "server_id": 151,
            "ip": "33.147.212.174",
            "name": "cummings.com",
            "created_at": "2026-09-04 09:50:03",
            "updated_at": "2026-09-04 09:50:03"
        },
        {
            "id": 50,
            "device_id": 2177,
            "server_id": 152,
            "ip": "111.167.33.102",
            "name": "gottlieb.info",
            "created_at": "2026-09-04 09:50:03",
            "updated_at": "2026-09-04 09:50:03"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/dns-manager/zones?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/dns-manager/zones",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/dns-manager/zones

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, device_id, server_id, ip, name. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, device_id, server_id, ip, name. Example: id

Create Zone

requires authentication

Stores a new zone

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/dns-manager/zones" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"ip\": \"192.168.1.1\",
    \"name\": \"example.mydomain.com\",
    \"device_id\": 1,
    \"server_id\": 1
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones'
payload = {
    "ip": "192.168.1.1",
    "name": "example.mydomain.com",
    "device_id": 1,
    "server_id": 1
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'ip' => '192.168.1.1',
            'name' => 'example.mydomain.com',
            'device_id' => 1,
            'server_id' => 1,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 51,
        "device_id": 2178,
        "server_id": 153,
        "ip": "131.58.6.48",
        "name": "mclaughlin.com",
        "created_at": "2026-09-04 09:50:04",
        "updated_at": "2026-09-04 09:50:04"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/dns-manager/zones

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

ip   string     

The IP address of the zone. Must be a valid IP address. Example: 192.168.1.1

name   string     

Domain name of the zone. Must match the regex /^(?!:\/\/)([a-zA-Z0-9-_]+.)+[a-zA-Z]{2,}$/i. Example: example.mydomain.com

device_id   integer     

The ID of the device this record is associated with. Example: 1

server_id   integer     

The server id of connection used for creating zone. Example: 1

Delete Zone

requires authentication

Deletes a zone record.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/dns-manager/zones/13" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones/13'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones/13';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/dns-manager/zones/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the zone. Example: 13

Get Zone Records

requires authentication

This endpoint returns a zone records with zone information for given id

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/dns-manager/zones/11/records" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones/11/records'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones/11/records';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 1,
        "device_id": 38,
        "server_id": 3,
        "ip": null,
        "name": "1.168.192.in-addr.arpa",
        "records": [
            {
                "line": "4",
                "name": "1.168.192.in-addr.arpa.",
                "type": "SOA",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "mname": "ns1.55-33-166-35.cprapid.com",
                    "rname": "test.com",
                    "serial": "2025090900",
                    "refresh": "3600",
                    "retry": "1800",
                    "expire": "1209600",
                    "minimum": "86400"
                }
            },
            {
                "line": "10",
                "name": "1.168.192.in-addr.arpa.",
                "type": "NS",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "nsdname": "ns1.55-33-166-35.cprapid.com"
                }
            },
            {
                "line": "11",
                "name": "1.168.192.in-addr.arpa.",
                "type": "NS",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "nsdname": "ns2.55-33-166-35.cprapid.com"
                }
            },
            {
                "line": "12",
                "name": "1.168.192.in-addr.arpa.",
                "type": "A",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "address": "55.33.166.35"
                }
            },
            {
                "line": "13",
                "name": "1.168.192.in-addr.arpa.",
                "type": "MX",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "preference": "0",
                    "exchange": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "14",
                "name": "mail.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "15",
                "name": "www.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "16",
                "name": "ftp.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "17",
                "name": "0.1.168.192.in-addr.arpa.",
                "type": "PTR",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "ptrdname": "test.com"
                }
            },
            {
                "line": "18",
                "name": "test.1.168.192.in-addr.arpa.",
                "type": "A",
                "class": "IN",
                "ttl": "3600",
                "rdlength": null,
                "rdata": {
                    "address": "10.10.10.1"
                }
            }
        ],
        "created_at": "2025-02-28 13:32:26",
        "updated_at": "2025-02-28 13:32:26"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/dns-manager/zones/{id}/records

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the zone. Example: 11

Add Zone Record

requires authentication

This endpoint allow to create zone record.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/dns-manager/zones/11/records/create" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"www\",
    \"type\": \"A\",
    \"ttl\": 3600,
    \"fields\": {
        \"A\": {
            \"address\": \"192.0.2.1\"
        },
        \"AAAA\": {
            \"address\": \"2001:db8::1\"
        },
        \"AFSDB\": {
            \"subtype\": 1,
            \"hostname\": \"host.example.com\"
        },
        \"CNAME\": {
            \"cname\": \"example.com\"
        },
        \"DEF\": {
            \"value\": \"Some value\"
        },
        \"DNAME\": {
            \"target\": \"example.com\"
        },
        \"DS\": {
            \"keytag\": 12345,
            \"algorithm\": 8,
            \"digesttype\": 1,
            \"digest\": \"49FD46E6C4B45C55D4AC\"
        },
        \"HINFO\": {
            \"cpu\": \"Intel\",
            \"os\": \"Linux\"
        },
        \"ISDN\": {
            \"isdnaddress\": \"+1-555-1234567\",
            \"sa\": \"123\"
        },
        \"LOC\": {
            \"version\": 0,
            \"size\": 1,
            \"horiz_pre\": 100,
            \"vert_pre\": 10,
            \"latitude\": \"52 22 23.0 N\",
            \"longitude\": \"4 53 32.0 E\",
            \"altitude\": 5
        },
        \"MB\": {
            \"madname\": \"mail.example.com\"
        },
        \"MD\": {
            \"madname\": \"mail.example.com\"
        },
        \"MF\": {
            \"madname\": \"forwarder.example.com\"
        },
        \"MG\": {
            \"mgmname\": \"member.example.com\"
        },
        \"MINFO\": {
            \"rmailbx\": \"responsible.example.com\",
            \"emailbx\": \"[email protected]\"
        },
        \"MR\": {
            \"newname\": \"newmail.example.com\"
        },
        \"MX\": {
            \"preference\": 10,
            \"exchange\": \"mail.example.com\"
        },
        \"NAPTR\": {
            \"order\": 100,
            \"preference\": 10,
            \"flags\": \"U\",
            \"services\": \"E2U+sip\",
            \"regexp\": \"!^.*$!sip:[email protected]!\",
            \"replacement\": \"example.com\"
        },
        \"NS\": {
            \"nsdname\": \"ns1.example.com\"
        },
        \"PTR\": {
            \"ptrdname\": \"host.example.com\"
        },
        \"RP\": {
            \"mbox\": \"admin.example.com\",
            \"txtdname\": \"info.example.com\"
        },
        \"SOA\": {
            \"mname\": \"ns1.example.com\",
            \"rname\": \"admin.example.com\",
            \"serial\": 2025090901,
            \"refresh\": 3600,
            \"retry\": 1800,
            \"expire\": 604800,
            \"minimum\": 86400
        },
        \"SPF\": {
            \"txtdata\": \"\\\"v=spf1 include:example.com ~all\\\"\"
        },
        \"SRV\": {
            \"priority\": 10,
            \"weight\": 5,
            \"port\": 5060,
            \"target\": \"sip.example.com\"
        },
        \"TXT\": {
            \"txtdata\": \"\\\"v=spf1 include:example.com ~all\\\"\"
        },
        \"WKS\": {
            \"address\": \"192.0.2.1\",
            \"protocol\": 6,
            \"bitmap\": \"0101010100000000\"
        },
        \"X25\": {
            \"psdnaddress\": \"1234567890\"
        }
    }
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones/11/records/create'
payload = {
    "name": "www",
    "type": "A",
    "ttl": 3600,
    "fields": {
        "A": {
            "address": "192.0.2.1"
        },
        "AAAA": {
            "address": "2001:db8::1"
        },
        "AFSDB": {
            "subtype": 1,
            "hostname": "host.example.com"
        },
        "CNAME": {
            "cname": "example.com"
        },
        "DEF": {
            "value": "Some value"
        },
        "DNAME": {
            "target": "example.com"
        },
        "DS": {
            "keytag": 12345,
            "algorithm": 8,
            "digesttype": 1,
            "digest": "49FD46E6C4B45C55D4AC"
        },
        "HINFO": {
            "cpu": "Intel",
            "os": "Linux"
        },
        "ISDN": {
            "isdnaddress": "+1-555-1234567",
            "sa": "123"
        },
        "LOC": {
            "version": 0,
            "size": 1,
            "horiz_pre": 100,
            "vert_pre": 10,
            "latitude": "52 22 23.0 N",
            "longitude": "4 53 32.0 E",
            "altitude": 5
        },
        "MB": {
            "madname": "mail.example.com"
        },
        "MD": {
            "madname": "mail.example.com"
        },
        "MF": {
            "madname": "forwarder.example.com"
        },
        "MG": {
            "mgmname": "member.example.com"
        },
        "MINFO": {
            "rmailbx": "responsible.example.com",
            "emailbx": "[email protected]"
        },
        "MR": {
            "newname": "newmail.example.com"
        },
        "MX": {
            "preference": 10,
            "exchange": "mail.example.com"
        },
        "NAPTR": {
            "order": 100,
            "preference": 10,
            "flags": "U",
            "services": "E2U+sip",
            "regexp": "!^.*$!sip:[email protected]!",
            "replacement": "example.com"
        },
        "NS": {
            "nsdname": "ns1.example.com"
        },
        "PTR": {
            "ptrdname": "host.example.com"
        },
        "RP": {
            "mbox": "admin.example.com",
            "txtdname": "info.example.com"
        },
        "SOA": {
            "mname": "ns1.example.com",
            "rname": "admin.example.com",
            "serial": 2025090901,
            "refresh": 3600,
            "retry": 1800,
            "expire": 604800,
            "minimum": 86400
        },
        "SPF": {
            "txtdata": "\"v=spf1 include:example.com ~all\""
        },
        "SRV": {
            "priority": 10,
            "weight": 5,
            "port": 5060,
            "target": "sip.example.com"
        },
        "TXT": {
            "txtdata": "\"v=spf1 include:example.com ~all\""
        },
        "WKS": {
            "address": "192.0.2.1",
            "protocol": 6,
            "bitmap": "0101010100000000"
        },
        "X25": {
            "psdnaddress": "1234567890"
        }
    }
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones/11/records/create';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'www',
            'type' => 'A',
            'ttl' => 3600,
            'fields' => [
                'A' => [
                    'address' => '192.0.2.1',
                ],
                'AAAA' => [
                    'address' => '2001:db8::1',
                ],
                'AFSDB' => [
                    'subtype' => 1,
                    'hostname' => 'host.example.com',
                ],
                'CNAME' => [
                    'cname' => 'example.com',
                ],
                'DEF' => [
                    'value' => 'Some value',
                ],
                'DNAME' => [
                    'target' => 'example.com',
                ],
                'DS' => [
                    'keytag' => 12345,
                    'algorithm' => 8,
                    'digesttype' => 1,
                    'digest' => '49FD46E6C4B45C55D4AC',
                ],
                'HINFO' => [
                    'cpu' => 'Intel',
                    'os' => 'Linux',
                ],
                'ISDN' => [
                    'isdnaddress' => '+1-555-1234567',
                    'sa' => '123',
                ],
                'LOC' => [
                    'version' => 0,
                    'size' => 1.0,
                    'horiz_pre' => 100.0,
                    'vert_pre' => 10.0,
                    'latitude' => '52 22 23.0 N',
                    'longitude' => '4 53 32.0 E',
                    'altitude' => 5.0,
                ],
                'MB' => [
                    'madname' => 'mail.example.com',
                ],
                'MD' => [
                    'madname' => 'mail.example.com',
                ],
                'MF' => [
                    'madname' => 'forwarder.example.com',
                ],
                'MG' => [
                    'mgmname' => 'member.example.com',
                ],
                'MINFO' => [
                    'rmailbx' => 'responsible.example.com',
                    'emailbx' => '[email protected]',
                ],
                'MR' => [
                    'newname' => 'newmail.example.com',
                ],
                'MX' => [
                    'preference' => 10,
                    'exchange' => 'mail.example.com',
                ],
                'NAPTR' => [
                    'order' => 100,
                    'preference' => 10,
                    'flags' => 'U',
                    'services' => 'E2U+sip',
                    'regexp' => '!^.*$!sip:[email protected]!',
                    'replacement' => 'example.com',
                ],
                'NS' => [
                    'nsdname' => 'ns1.example.com',
                ],
                'PTR' => [
                    'ptrdname' => 'host.example.com',
                ],
                'RP' => [
                    'mbox' => 'admin.example.com',
                    'txtdname' => 'info.example.com',
                ],
                'SOA' => [
                    'mname' => 'ns1.example.com',
                    'rname' => 'admin.example.com',
                    'serial' => 2025090901,
                    'refresh' => 3600,
                    'retry' => 1800,
                    'expire' => 604800,
                    'minimum' => 86400,
                ],
                'SPF' => [
                    'txtdata' => '"v=spf1 include:example.com ~all"',
                ],
                'SRV' => [
                    'priority' => 10,
                    'weight' => 5,
                    'port' => 5060,
                    'target' => 'sip.example.com',
                ],
                'TXT' => [
                    'txtdata' => '"v=spf1 include:example.com ~all"',
                ],
                'WKS' => [
                    'address' => '192.0.2.1',
                    'protocol' => 6,
                    'bitmap' => '0101010100000000',
                ],
                'X25' => [
                    'psdnaddress' => '1234567890',
                ],
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 1,
        "device_id": 38,
        "server_id": 3,
        "ip": null,
        "name": "1.168.192.in-addr.arpa",
        "records": [
            {
                "line": "4",
                "name": "1.168.192.in-addr.arpa.",
                "type": "SOA",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "mname": "ns1.55-33-166-35.cprapid.com",
                    "rname": "test.com",
                    "serial": "2025090900",
                    "refresh": "3600",
                    "retry": "1800",
                    "expire": "1209600",
                    "minimum": "86400"
                }
            },
            {
                "line": "10",
                "name": "1.168.192.in-addr.arpa.",
                "type": "NS",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "nsdname": "ns1.55-33-166-35.cprapid.com"
                }
            },
            {
                "line": "11",
                "name": "1.168.192.in-addr.arpa.",
                "type": "NS",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "nsdname": "ns2.55-33-166-35.cprapid.com"
                }
            },
            {
                "line": "12",
                "name": "1.168.192.in-addr.arpa.",
                "type": "A",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "address": "55.33.166.35"
                }
            },
            {
                "line": "13",
                "name": "1.168.192.in-addr.arpa.",
                "type": "MX",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "preference": "0",
                    "exchange": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "14",
                "name": "mail.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "15",
                "name": "www.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "16",
                "name": "ftp.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "17",
                "name": "0.1.168.192.in-addr.arpa.",
                "type": "PTR",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "ptrdname": "test.com"
                }
            },
            {
                "line": "18",
                "name": "test.1.168.192.in-addr.arpa.",
                "type": "A",
                "class": "IN",
                "ttl": "3600",
                "rdlength": null,
                "rdata": {
                    "address": "10.10.10.1"
                }
            }
        ],
        "created_at": "2025-02-28 13:32:26",
        "updated_at": "2025-02-28 13:32:26"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/dns-manager/zones/{id}/records/create

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the zone. Example: 11

Body Parameters

name   string     

The hostname or record name. Example: www

type   string     

DNS record type. Example: A

Must be one of:
  • A
  • AAAA
  • AFSDB
  • CNAME
  • DEF
  • DNAME
  • DS
  • HINFO
  • ISDN
  • LOC
  • MB
  • MD
  • MF
  • MG
  • MINFO
  • MR
  • MX
  • NAPTR
  • NS
  • PTR
  • RP
  • SOA
  • SPF
  • SRV
  • TXT
  • WKS
  • X25
ttl   integer  optional    

Time-to-live in seconds (minimum 60). Must be at least 60. Example: 3600

fields   object     

Required object for provided type. Object type one from (A, AAAA, AFSDB, CNAME, DEF, DNAME, DS, HINFO, ISDN, LOC, MB, MD, MF, MG, MINFO, MR, MX, NAPTR, NS, PTR, RP, SOA, SPF, SRV, TXT, WKS, X25).

A   object  optional    
address   string  optional    

A 32-bit IPv4 address (required if type=A). This field is required when type is A. Example: 192.0.2.1

AAAA   object  optional    
address   string  optional    

A 128-bit IPv6 address (required if type=AAAA). This field is required when type is AAAA. Example: 2001:db8::1

AFSDB   object  optional    
subtype   string  optional    

AFSDB subtype, either 1 (DFS) or 2 (DCE). This field is required when type is AFSDB. Example: 1

Must be one of:
  • 1
  • 2
hostname   string  optional    

Hostname associated with the AFSDB record. This field is required when type is AFSDB. Example: host.example.com

CNAME   object  optional    
cname   string  optional    

Canonical domain name for the alias. The owner name is the alias. This field is required when type is CNAME. Example: example.com

DEF   object  optional    
value   string  optional    

The value for the DEF record. This field is required when type is DEF. Example: Some value

DNAME   object  optional    
target   string  optional    

Target domain name to which the owner domain is aliased. This field is required when type is DNAME. Example: example.com

DS   object  optional    
keytag   integer  optional    

Key tag of the DNSKEY record this DS record refers to. This field is required when type is DS. Example: 12345

algorithm   integer  optional    

Algorithm number used by the DNSKEY. This field is required when type is DS. Example: 8

digesttype   integer  optional    

Digest type used to create the digest. This field is required when type is DS. Example: 1

digest   string  optional    

Digest of the referenced DNSKEY record. This field is required when type is DS. Example: 49FD46E6C4B45C55D4AC

HINFO   object  optional    
cpu   string  optional    

CPU type of the host machine. This field is required when type is HINFO. Example: Intel

os   string  optional    

Operating system type of the host machine. This field is required when type is HINFO. Example: Linux

ISDN   object  optional    
isdnaddress   string  optional    

ISDN address for the record (e.g., telephone number). This field is required when type is ISDN. Example: +1-555-1234567

sa   string  optional    

Subaddress associated with the ISDN address (optional). Example: 123

LOC   object  optional    
version   integer  optional    

LOC record version (optional, usually 0). Example: 0

size   number  optional    

Diameter of the sphere representing the location (optional). Example: 1

horiz_pre   number  optional    

Horizontal precision in meters (optional). Example: 100

vert_pre   number  optional    

Vertical precision in meters (optional). Example: 10

latitude   string  optional    

Latitude of the location (required if type=LOC). This field is required when type is LOC. Example: 52 22 23.0 N

longitude   string  optional    

Longitude of the location (required if type=LOC). This field is required when type is LOC. Example: 4 53 32.0 E

altitude   number  optional    

Altitude of the location in meters (optional). Example: 5

MB   object  optional    
madname   string  optional    

Domain name of the host which has the specified mailbox. This field is required when type is MB. Example: mail.example.com

MD   object  optional    
madname   string  optional    

Domain name of the host which has a mail agent for the domain. This field is required when type is MD. Example: mail.example.com

MF   object  optional    
madname   string  optional    

Domain name of the host which has a mail agent for forwarding mail to the domain. This field is required when type is MF. Example: forwarder.example.com

MG   object  optional    
mgmname   string  optional    

Domain name of the mailbox which is a member of the mail group. This field is required when type is MG. Example: member.example.com

MINFO   object  optional    
rmailbx   string  optional    

Mailbox responsible for the mailing list or mailbox. This field is required when type is MINFO. Example: responsible.example.com

emailbx   string  optional    

Mailbox to receive error messages related to the mailing list or mailbox. This field is required when type is MINFO. Example: [email protected]

MR   object  optional    
newname   string  optional    

Mailbox which is the proper rename of the specified mailbox. This field is required when type is MR. Example: newmail.example.com

MX   object  optional    
preference   integer  optional    

Preference value for the mail exchange; lower values are preferred. This field is required when type is MX. Must be at least 0. Must not be greater than 65535. Example: 10

exchange   string  optional    

Domain name of the host willing to act as a mail exchange for the owner. This field is required when type is MX. Example: mail.example.com

NAPTR   object  optional    
order   integer  optional    

Order in which the NAPTR record is processed. This field is required when type is NAPTR. Must be at least 0. Example: 100

preference   integer  optional    

Preference for records with the same order; lower values are preferred. This field is required when type is NAPTR. Must be at least 0. Example: 10

flags   string  optional    

Flags controlling the rewriting and interpretation of the record. This field is required when type is NAPTR. Example: U

services   string  optional    

Services available via this NAPTR record (e.g., E2U+sip). This field is required when type is NAPTR. Example: E2U+sip

regexp   string  optional    

Regular expression used to rewrite the original string (optional). Example: !^.*$!sip:[email protected]!

replacement   string  optional    

Replacement domain name if the regexp is not used. This field is required when type is NAPTR. Example: example.com

NS   object  optional    
nsdname   string  optional    

Domain name of the host which should be authoritative for the domain. This field is required when type is NS. Example: ns1.example.com

PTR   object  optional    
ptrdname   string  optional    

Domain name that the PTR record points to in the DNS namespace. This field is required when type is PTR. Example: host.example.com

RP   object  optional    
mbox   string  optional    

Mailbox responsible for the domain or owner. This field is required when type is RP. Example: admin.example.com

txtdname   string  optional    

Domain name containing additional text information. This field is required when type is RP. Example: info.example.com

SOA   object  optional    
mname   string  optional    

Primary name server for the zone. This field is required when type is SOA. Example: ns1.example.com

rname   string  optional    

Mailbox of the person responsible for the zone. This field is required when type is SOA. Example: admin.example.com

serial   integer  optional    

Serial number of the zone; incremented on changes. This field is required when type is SOA. Must be at least 0. Example: 2025090901

refresh   integer  optional    

Time interval before the zone should be refreshed (seconds). This field is required when type is SOA. Must be at least 0. Example: 3600

retry   integer  optional    

Time interval before a failed refresh should be retried (seconds). This field is required when type is SOA. Must be at least 0. Example: 1800

expire   integer  optional    

Time interval before the zone is no longer authoritative (seconds). This field is required when type is SOA. Must be at least 0. Example: 604800

minimum   integer  optional    

Minimum TTL for records in this zone (seconds). This field is required when type is SOA. Must be at least 0. Example: 86400

SPF   object  optional    
txtdata   string  optional    

SPF record data specifying allowed sending hosts for the domain. This field is required when type is SPF. Example: "v=spf1 include:example.com ~all"

SRV   object  optional    
priority   integer  optional    

Priority of the target host; lower values are preferred. This field is required when type is SRV. Must be at least 0. Example: 10

weight   integer  optional    

Relative weight for records with the same priority. This field is required when type is SRV. Must be at least 0. Example: 5

port   integer  optional    

Port on which the service is running (0-65535). This field is required when type is SRV. Must be at least 0. Must not be greater than 65535. Example: 5060

target   string  optional    

Domain name of the target host providing the service. This field is required when type is SRV. Example: sip.example.com

TXT   object  optional    
txtdata   string  optional    

Text data for the TXT record; one or more character strings. This field is required when type is TXT. Example: "v=spf1 include:example.com ~all"

WKS   object  optional    
address   string  optional    

32-bit IPv4 address. This field is required when type is WKS. Example: 192.0.2.1

protocol   integer  optional    

8-bit IP protocol number. This field is required when type is WKS. Must be at least 0. Must not be greater than 255. Example: 6

bitmap   string  optional    

Variable length bitmap; must be a multiple of 8 bits. This field is required when type is WKS. Example: 0101010100000000

X25   object  optional    
psdnaddress   string  optional    

Public Switched Data Network (PSDN) address. This field is required when type is X25. Example: 1234567890

Delete Zone Record

requires authentication

This endpoint deletes zone record.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/dns-manager/zones/5/records/delete" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"line\": 1,
    \"type\": \"A\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones/5/records/delete'
payload = {
    "line": 1,
    "type": "A"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones/5/records/delete';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'line' => 1,
            'type' => 'A',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 1,
        "device_id": 38,
        "server_id": 3,
        "ip": null,
        "name": "1.168.192.in-addr.arpa",
        "records": [
            {
                "line": "4",
                "name": "1.168.192.in-addr.arpa.",
                "type": "SOA",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "mname": "ns1.55-33-166-35.cprapid.com",
                    "rname": "test.com",
                    "serial": "2025090900",
                    "refresh": "3600",
                    "retry": "1800",
                    "expire": "1209600",
                    "minimum": "86400"
                }
            },
            {
                "line": "10",
                "name": "1.168.192.in-addr.arpa.",
                "type": "NS",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "nsdname": "ns1.55-33-166-35.cprapid.com"
                }
            },
            {
                "line": "11",
                "name": "1.168.192.in-addr.arpa.",
                "type": "NS",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "nsdname": "ns2.55-33-166-35.cprapid.com"
                }
            },
            {
                "line": "12",
                "name": "1.168.192.in-addr.arpa.",
                "type": "A",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "address": "55.33.166.35"
                }
            },
            {
                "line": "13",
                "name": "1.168.192.in-addr.arpa.",
                "type": "MX",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "preference": "0",
                    "exchange": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "14",
                "name": "mail.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "15",
                "name": "www.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "16",
                "name": "ftp.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "17",
                "name": "0.1.168.192.in-addr.arpa.",
                "type": "PTR",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "ptrdname": "test.com"
                }
            },
            {
                "line": "18",
                "name": "test.1.168.192.in-addr.arpa.",
                "type": "A",
                "class": "IN",
                "ttl": "3600",
                "rdlength": null,
                "rdata": {
                    "address": "10.10.10.1"
                }
            }
        ],
        "created_at": "2025-02-28 13:32:26",
        "updated_at": "2025-02-28 13:32:26"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/dns-manager/zones/{id}/records/delete

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the zone. Example: 5

Body Parameters

line   integer     

The line id of zone record. Example: 1

type   string     

DNS record type. Example: A

Must be one of:
  • A
  • AAAA
  • AFSDB
  • CNAME
  • DEF
  • DNAME
  • DS
  • HINFO
  • ISDN
  • LOC
  • MB
  • MD
  • MF
  • MG
  • MINFO
  • MR
  • MX
  • NAPTR
  • NS
  • PTR
  • RP
  • SOA
  • SPF
  • SRV
  • TXT
  • WKS
  • X25

Update Zone Record

requires authentication

This endpoint allow to edit zone record.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/dns-manager/zones/11/records/update" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"line\": 1,
    \"name\": \"www\",
    \"type\": \"A\",
    \"ttl\": 3600,
    \"fields\": {
        \"A\": {
            \"address\": \"192.0.2.1\"
        },
        \"AAAA\": {
            \"address\": \"2001:db8::1\"
        },
        \"AFSDB\": {
            \"subtype\": 1,
            \"hostname\": \"host.example.com\"
        },
        \"CNAME\": {
            \"cname\": \"example.com\"
        },
        \"DEF\": {
            \"value\": \"Some value\"
        },
        \"DNAME\": {
            \"target\": \"example.com\"
        },
        \"DS\": {
            \"keytag\": 12345,
            \"algorithm\": 8,
            \"digesttype\": 1,
            \"digest\": \"49FD46E6C4B45C55D4AC\"
        },
        \"HINFO\": {
            \"cpu\": \"Intel\",
            \"os\": \"Linux\"
        },
        \"ISDN\": {
            \"isdnaddress\": \"+1-555-1234567\",
            \"sa\": \"123\"
        },
        \"LOC\": {
            \"version\": 0,
            \"size\": 1,
            \"horiz_pre\": 100,
            \"vert_pre\": 10,
            \"latitude\": \"52 22 23.0 N\",
            \"longitude\": \"4 53 32.0 E\",
            \"altitude\": 5
        },
        \"MB\": {
            \"madname\": \"mail.example.com\"
        },
        \"MD\": {
            \"madname\": \"mail.example.com\"
        },
        \"MF\": {
            \"madname\": \"forwarder.example.com\"
        },
        \"MG\": {
            \"mgmname\": \"member.example.com\"
        },
        \"MINFO\": {
            \"rmailbx\": \"responsible.example.com\",
            \"emailbx\": \"[email protected]\"
        },
        \"MR\": {
            \"newname\": \"newmail.example.com\"
        },
        \"MX\": {
            \"preference\": 10,
            \"exchange\": \"mail.example.com\"
        },
        \"NAPTR\": {
            \"order\": 100,
            \"preference\": 10,
            \"flags\": \"U\",
            \"services\": \"E2U+sip\",
            \"regexp\": \"!^.*$!sip:[email protected]!\",
            \"replacement\": \"example.com\"
        },
        \"NS\": {
            \"nsdname\": \"ns1.example.com\"
        },
        \"PTR\": {
            \"ptrdname\": \"host.example.com\"
        },
        \"RP\": {
            \"mbox\": \"admin.example.com\",
            \"txtdname\": \"info.example.com\"
        },
        \"SOA\": {
            \"mname\": \"ns1.example.com\",
            \"rname\": \"admin.example.com\",
            \"serial\": 2025090901,
            \"refresh\": 3600,
            \"retry\": 1800,
            \"expire\": 604800,
            \"minimum\": 86400
        },
        \"SPF\": {
            \"txtdata\": \"\\\"v=spf1 include:example.com ~all\\\"\"
        },
        \"SRV\": {
            \"priority\": 10,
            \"weight\": 5,
            \"port\": 5060,
            \"target\": \"sip.example.com\"
        },
        \"TXT\": {
            \"txtdata\": \"\\\"v=spf1 include:example.com ~all\\\"\"
        },
        \"WKS\": {
            \"address\": \"192.0.2.1\",
            \"protocol\": 6,
            \"bitmap\": \"0101010100000000\"
        },
        \"X25\": {
            \"psdnaddress\": \"1234567890\"
        }
    }
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones/11/records/update'
payload = {
    "line": 1,
    "name": "www",
    "type": "A",
    "ttl": 3600,
    "fields": {
        "A": {
            "address": "192.0.2.1"
        },
        "AAAA": {
            "address": "2001:db8::1"
        },
        "AFSDB": {
            "subtype": 1,
            "hostname": "host.example.com"
        },
        "CNAME": {
            "cname": "example.com"
        },
        "DEF": {
            "value": "Some value"
        },
        "DNAME": {
            "target": "example.com"
        },
        "DS": {
            "keytag": 12345,
            "algorithm": 8,
            "digesttype": 1,
            "digest": "49FD46E6C4B45C55D4AC"
        },
        "HINFO": {
            "cpu": "Intel",
            "os": "Linux"
        },
        "ISDN": {
            "isdnaddress": "+1-555-1234567",
            "sa": "123"
        },
        "LOC": {
            "version": 0,
            "size": 1,
            "horiz_pre": 100,
            "vert_pre": 10,
            "latitude": "52 22 23.0 N",
            "longitude": "4 53 32.0 E",
            "altitude": 5
        },
        "MB": {
            "madname": "mail.example.com"
        },
        "MD": {
            "madname": "mail.example.com"
        },
        "MF": {
            "madname": "forwarder.example.com"
        },
        "MG": {
            "mgmname": "member.example.com"
        },
        "MINFO": {
            "rmailbx": "responsible.example.com",
            "emailbx": "[email protected]"
        },
        "MR": {
            "newname": "newmail.example.com"
        },
        "MX": {
            "preference": 10,
            "exchange": "mail.example.com"
        },
        "NAPTR": {
            "order": 100,
            "preference": 10,
            "flags": "U",
            "services": "E2U+sip",
            "regexp": "!^.*$!sip:[email protected]!",
            "replacement": "example.com"
        },
        "NS": {
            "nsdname": "ns1.example.com"
        },
        "PTR": {
            "ptrdname": "host.example.com"
        },
        "RP": {
            "mbox": "admin.example.com",
            "txtdname": "info.example.com"
        },
        "SOA": {
            "mname": "ns1.example.com",
            "rname": "admin.example.com",
            "serial": 2025090901,
            "refresh": 3600,
            "retry": 1800,
            "expire": 604800,
            "minimum": 86400
        },
        "SPF": {
            "txtdata": "\"v=spf1 include:example.com ~all\""
        },
        "SRV": {
            "priority": 10,
            "weight": 5,
            "port": 5060,
            "target": "sip.example.com"
        },
        "TXT": {
            "txtdata": "\"v=spf1 include:example.com ~all\""
        },
        "WKS": {
            "address": "192.0.2.1",
            "protocol": 6,
            "bitmap": "0101010100000000"
        },
        "X25": {
            "psdnaddress": "1234567890"
        }
    }
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/dns-manager/zones/11/records/update';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'line' => 1,
            'name' => 'www',
            'type' => 'A',
            'ttl' => 3600,
            'fields' => [
                'A' => [
                    'address' => '192.0.2.1',
                ],
                'AAAA' => [
                    'address' => '2001:db8::1',
                ],
                'AFSDB' => [
                    'subtype' => 1,
                    'hostname' => 'host.example.com',
                ],
                'CNAME' => [
                    'cname' => 'example.com',
                ],
                'DEF' => [
                    'value' => 'Some value',
                ],
                'DNAME' => [
                    'target' => 'example.com',
                ],
                'DS' => [
                    'keytag' => 12345,
                    'algorithm' => 8,
                    'digesttype' => 1,
                    'digest' => '49FD46E6C4B45C55D4AC',
                ],
                'HINFO' => [
                    'cpu' => 'Intel',
                    'os' => 'Linux',
                ],
                'ISDN' => [
                    'isdnaddress' => '+1-555-1234567',
                    'sa' => '123',
                ],
                'LOC' => [
                    'version' => 0,
                    'size' => 1.0,
                    'horiz_pre' => 100.0,
                    'vert_pre' => 10.0,
                    'latitude' => '52 22 23.0 N',
                    'longitude' => '4 53 32.0 E',
                    'altitude' => 5.0,
                ],
                'MB' => [
                    'madname' => 'mail.example.com',
                ],
                'MD' => [
                    'madname' => 'mail.example.com',
                ],
                'MF' => [
                    'madname' => 'forwarder.example.com',
                ],
                'MG' => [
                    'mgmname' => 'member.example.com',
                ],
                'MINFO' => [
                    'rmailbx' => 'responsible.example.com',
                    'emailbx' => '[email protected]',
                ],
                'MR' => [
                    'newname' => 'newmail.example.com',
                ],
                'MX' => [
                    'preference' => 10,
                    'exchange' => 'mail.example.com',
                ],
                'NAPTR' => [
                    'order' => 100,
                    'preference' => 10,
                    'flags' => 'U',
                    'services' => 'E2U+sip',
                    'regexp' => '!^.*$!sip:[email protected]!',
                    'replacement' => 'example.com',
                ],
                'NS' => [
                    'nsdname' => 'ns1.example.com',
                ],
                'PTR' => [
                    'ptrdname' => 'host.example.com',
                ],
                'RP' => [
                    'mbox' => 'admin.example.com',
                    'txtdname' => 'info.example.com',
                ],
                'SOA' => [
                    'mname' => 'ns1.example.com',
                    'rname' => 'admin.example.com',
                    'serial' => 2025090901,
                    'refresh' => 3600,
                    'retry' => 1800,
                    'expire' => 604800,
                    'minimum' => 86400,
                ],
                'SPF' => [
                    'txtdata' => '"v=spf1 include:example.com ~all"',
                ],
                'SRV' => [
                    'priority' => 10,
                    'weight' => 5,
                    'port' => 5060,
                    'target' => 'sip.example.com',
                ],
                'TXT' => [
                    'txtdata' => '"v=spf1 include:example.com ~all"',
                ],
                'WKS' => [
                    'address' => '192.0.2.1',
                    'protocol' => 6,
                    'bitmap' => '0101010100000000',
                ],
                'X25' => [
                    'psdnaddress' => '1234567890',
                ],
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 1,
        "device_id": 38,
        "server_id": 3,
        "ip": null,
        "name": "1.168.192.in-addr.arpa",
        "records": [
            {
                "line": "4",
                "name": "1.168.192.in-addr.arpa.",
                "type": "SOA",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "mname": "ns1.55-33-166-35.cprapid.com",
                    "rname": "test.com",
                    "serial": "2025090900",
                    "refresh": "3600",
                    "retry": "1800",
                    "expire": "1209600",
                    "minimum": "86400"
                }
            },
            {
                "line": "10",
                "name": "1.168.192.in-addr.arpa.",
                "type": "NS",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "nsdname": "ns1.55-33-166-35.cprapid.com"
                }
            },
            {
                "line": "11",
                "name": "1.168.192.in-addr.arpa.",
                "type": "NS",
                "class": "IN",
                "ttl": "86400",
                "rdlength": null,
                "rdata": {
                    "nsdname": "ns2.55-33-166-35.cprapid.com"
                }
            },
            {
                "line": "12",
                "name": "1.168.192.in-addr.arpa.",
                "type": "A",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "address": "55.33.166.35"
                }
            },
            {
                "line": "13",
                "name": "1.168.192.in-addr.arpa.",
                "type": "MX",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "preference": "0",
                    "exchange": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "14",
                "name": "mail.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "15",
                "name": "www.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "16",
                "name": "ftp.1.168.192.in-addr.arpa.",
                "type": "CNAME",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "cname": "1.168.192.in-addr.arpa"
                }
            },
            {
                "line": "17",
                "name": "0.1.168.192.in-addr.arpa.",
                "type": "PTR",
                "class": "IN",
                "ttl": "14400",
                "rdlength": null,
                "rdata": {
                    "ptrdname": "test.com"
                }
            },
            {
                "line": "18",
                "name": "test.1.168.192.in-addr.arpa.",
                "type": "A",
                "class": "IN",
                "ttl": "3600",
                "rdlength": null,
                "rdata": {
                    "address": "10.10.10.1"
                }
            }
        ],
        "created_at": "2025-02-28 13:32:26",
        "updated_at": "2025-02-28 13:32:26"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/dns-manager/zones/{id}/records/update

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the zone. Example: 11

Body Parameters

line   integer     

The line id of zone record. Example: 1

name   string     

The hostname or record name. Example: www

type   string     

DNS record type. Example: A

Must be one of:
  • A
  • AAAA
  • AFSDB
  • CNAME
  • DEF
  • DNAME
  • DS
  • HINFO
  • ISDN
  • LOC
  • MB
  • MD
  • MF
  • MG
  • MINFO
  • MR
  • MX
  • NAPTR
  • NS
  • PTR
  • RP
  • SOA
  • SPF
  • SRV
  • TXT
  • WKS
  • X25
ttl   integer  optional    

Time-to-live in seconds (minimum 60). Must be at least 60. Example: 3600

fields   object     

Required object for provided type. Object type one from (A, AAAA, AFSDB, CNAME, DEF, DNAME, DS, HINFO, ISDN, LOC, MB, MD, MF, MG, MINFO, MR, MX, NAPTR, NS, PTR, RP, SOA, SPF, SRV, TXT, WKS, X25).

A   object  optional    
address   string  optional    

A 32-bit IPv4 address (required if type=A). This field is required when type is A. Example: 192.0.2.1

AAAA   object  optional    
address   string  optional    

A 128-bit IPv6 address (required if type=AAAA). This field is required when type is AAAA. Example: 2001:db8::1

AFSDB   object  optional    
subtype   string  optional    

AFSDB subtype, either 1 (DFS) or 2 (DCE). This field is required when type is AFSDB. Example: 1

Must be one of:
  • 1
  • 2
hostname   string  optional    

Hostname associated with the AFSDB record. This field is required when type is AFSDB. Example: host.example.com

CNAME   object  optional    
cname   string  optional    

Canonical domain name for the alias. The owner name is the alias. This field is required when type is CNAME. Example: example.com

DEF   object  optional    
value   string  optional    

The value for the DEF record. This field is required when type is DEF. Example: Some value

DNAME   object  optional    
target   string  optional    

Target domain name to which the owner domain is aliased. This field is required when type is DNAME. Example: example.com

DS   object  optional    
keytag   integer  optional    

Key tag of the DNSKEY record this DS record refers to. This field is required when type is DS. Example: 12345

algorithm   integer  optional    

Algorithm number used by the DNSKEY. This field is required when type is DS. Example: 8

digesttype   integer  optional    

Digest type used to create the digest. This field is required when type is DS. Example: 1

digest   string  optional    

Digest of the referenced DNSKEY record. This field is required when type is DS. Example: 49FD46E6C4B45C55D4AC

HINFO   object  optional    
cpu   string  optional    

CPU type of the host machine. This field is required when type is HINFO. Example: Intel

os   string  optional    

Operating system type of the host machine. This field is required when type is HINFO. Example: Linux

ISDN   object  optional    
isdnaddress   string  optional    

ISDN address for the record (e.g., telephone number). This field is required when type is ISDN. Example: +1-555-1234567

sa   string  optional    

Subaddress associated with the ISDN address (optional). Example: 123

LOC   object  optional    
version   integer  optional    

LOC record version (optional, usually 0). Example: 0

size   number  optional    

Diameter of the sphere representing the location (optional). Example: 1

horiz_pre   number  optional    

Horizontal precision in meters (optional). Example: 100

vert_pre   number  optional    

Vertical precision in meters (optional). Example: 10

latitude   string  optional    

Latitude of the location (required if type=LOC). This field is required when type is LOC. Example: 52 22 23.0 N

longitude   string  optional    

Longitude of the location (required if type=LOC). This field is required when type is LOC. Example: 4 53 32.0 E

altitude   number  optional    

Altitude of the location in meters (optional). Example: 5

MB   object  optional    
madname   string  optional    

Domain name of the host which has the specified mailbox. This field is required when type is MB. Example: mail.example.com

MD   object  optional    
madname   string  optional    

Domain name of the host which has a mail agent for the domain. This field is required when type is MD. Example: mail.example.com

MF   object  optional    
madname   string  optional    

Domain name of the host which has a mail agent for forwarding mail to the domain. This field is required when type is MF. Example: forwarder.example.com

MG   object  optional    
mgmname   string  optional    

Domain name of the mailbox which is a member of the mail group. This field is required when type is MG. Example: member.example.com

MINFO   object  optional    
rmailbx   string  optional    

Mailbox responsible for the mailing list or mailbox. This field is required when type is MINFO. Example: responsible.example.com

emailbx   string  optional    

Mailbox to receive error messages related to the mailing list or mailbox. This field is required when type is MINFO. Example: [email protected]

MR   object  optional    
newname   string  optional    

Mailbox which is the proper rename of the specified mailbox. This field is required when type is MR. Example: newmail.example.com

MX   object  optional    
preference   integer  optional    

Preference value for the mail exchange; lower values are preferred. This field is required when type is MX. Must be at least 0. Must not be greater than 65535. Example: 10

exchange   string  optional    

Domain name of the host willing to act as a mail exchange for the owner. This field is required when type is MX. Example: mail.example.com

NAPTR   object  optional    
order   integer  optional    

Order in which the NAPTR record is processed. This field is required when type is NAPTR. Must be at least 0. Example: 100

preference   integer  optional    

Preference for records with the same order; lower values are preferred. This field is required when type is NAPTR. Must be at least 0. Example: 10

flags   string  optional    

Flags controlling the rewriting and interpretation of the record. This field is required when type is NAPTR. Example: U

services   string  optional    

Services available via this NAPTR record (e.g., E2U+sip). This field is required when type is NAPTR. Example: E2U+sip

regexp   string  optional    

Regular expression used to rewrite the original string (optional). Example: !^.*$!sip:[email protected]!

replacement   string  optional    

Replacement domain name if the regexp is not used. This field is required when type is NAPTR. Example: example.com

NS   object  optional    
nsdname   string  optional    

Domain name of the host which should be authoritative for the domain. This field is required when type is NS. Example: ns1.example.com

PTR   object  optional    
ptrdname   string  optional    

Domain name that the PTR record points to in the DNS namespace. This field is required when type is PTR. Example: host.example.com

RP   object  optional    
mbox   string  optional    

Mailbox responsible for the domain or owner. This field is required when type is RP. Example: admin.example.com

txtdname   string  optional    

Domain name containing additional text information. This field is required when type is RP. Example: info.example.com

SOA   object  optional    
mname   string  optional    

Primary name server for the zone. This field is required when type is SOA. Example: ns1.example.com

rname   string  optional    

Mailbox of the person responsible for the zone. This field is required when type is SOA. Example: admin.example.com

serial   integer  optional    

Serial number of the zone; incremented on changes. This field is required when type is SOA. Must be at least 0. Example: 2025090901

refresh   integer  optional    

Time interval before the zone should be refreshed (seconds). This field is required when type is SOA. Must be at least 0. Example: 3600

retry   integer  optional    

Time interval before a failed refresh should be retried (seconds). This field is required when type is SOA. Must be at least 0. Example: 1800

expire   integer  optional    

Time interval before the zone is no longer authoritative (seconds). This field is required when type is SOA. Must be at least 0. Example: 604800

minimum   integer  optional    

Minimum TTL for records in this zone (seconds). This field is required when type is SOA. Must be at least 0. Example: 86400

SPF   object  optional    
txtdata   string  optional    

SPF record data specifying allowed sending hosts for the domain. This field is required when type is SPF. Example: "v=spf1 include:example.com ~all"

SRV   object  optional    
priority   integer  optional    

Priority of the target host; lower values are preferred. This field is required when type is SRV. Must be at least 0. Example: 10

weight   integer  optional    

Relative weight for records with the same priority. This field is required when type is SRV. Must be at least 0. Example: 5

port   integer  optional    

Port on which the service is running (0-65535). This field is required when type is SRV. Must be at least 0. Must not be greater than 65535. Example: 5060

target   string  optional    

Domain name of the target host providing the service. This field is required when type is SRV. Example: sip.example.com

TXT   object  optional    
txtdata   string  optional    

Text data for the TXT record; one or more character strings. This field is required when type is TXT. Example: "v=spf1 include:example.com ~all"

WKS   object  optional    
address   string  optional    

32-bit IPv4 address. This field is required when type is WKS. Example: 192.0.2.1

protocol   integer  optional    

8-bit IP protocol number. This field is required when type is WKS. Must be at least 0. Must not be greater than 255. Example: 6

bitmap   string  optional    

Variable length bitmap; must be a multiple of 8 bits. This field is required when type is WKS. Example: 0101010100000000

X25   object  optional    
psdnaddress   string  optional    

Public Switched Data Network (PSDN) address. This field is required when type is X25. Example: 1234567890

Tags

List Tags

requires authentication

Returns a paginated list of tags.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/tags?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/tags'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/tags';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 90,
            "name": "tempore",
            "color": "#597578",
            "type": "App\\Models\\User",
            "created_at": "2026-09-04 09:50:04",
            "updated_at": "2026-09-04 09:50:04"
        },
        {
            "id": 91,
            "name": "ullam",
            "color": "#c78fe4",
            "type": "App\\Models\\User",
            "created_at": "2026-09-04 09:50:04",
            "updated_at": "2026-09-04 09:50:04"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/tags?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/tags",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/tags

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, type. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, type. Example: id

Show tag

requires authentication

Display detailed information about a single tag by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/admin/tags/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/tags/1'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/tags/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 92,
        "name": "rerum",
        "color": "#ce4e12",
        "type": "App\\Models\\User",
        "assignedTo": [],
        "created_at": "2026-09-04 09:50:04",
        "updated_at": "2026-09-04 09:50:04"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

GET api/v3/admin/tags/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the tag. Example: 1

Create tag

requires authentication

Store a new tag in the system using validated request data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/tags" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Server\",
    \"color\": \"#FA6900\",
    \"type\": \"App\\\\Models\\\\Item\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/tags'
payload = {
    "name": "Server",
    "color": "#FA6900",
    "type": "App\\Models\\Item"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/tags';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Server',
            'color' => '#FA6900',
            'type' => 'App\\Models\\Item',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 93,
        "name": "dolore",
        "color": "#b6bafc",
        "type": "App\\Models\\User",
        "assignedTo": [],
        "created_at": "2026-09-04 09:50:04",
        "updated_at": "2026-09-04 09:50:04"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/tags

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The name of the tag. Example: Server

color   string     

The color of the tag. Example: #FA6900

type   string     

The type of the tag. Example: App\Models\Item

Must be one of:
  • App\Models\Colocation
  • App\Models\Device
  • App\Models\Item
  • App\Models\ItemPort
  • App\Models\ItemSensor
  • App\Models\ItemVlan
  • App\Models\Order
  • App\Models\User
  • Modules\Addons\IPManager\Model\IpamSubnet

Update tag

requires authentication

Updates the specified tag with provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/admin/tags/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Server\",
    \"color\": \"#FA6900\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/tags/1'
payload = {
    "name": "Server",
    "color": "#FA6900"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/tags/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Server',
            'color' => '#FA6900',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 94,
        "name": "consequuntur",
        "color": "#5cea29",
        "type": "App\\Models\\User",
        "assignedTo": [],
        "created_at": "2026-09-04 09:50:04",
        "updated_at": "2026-09-04 09:50:04"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

PUT api/v3/admin/tags/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the tag. Example: 1

Body Parameters

name   string  optional    

The name of the tag. Example: Server

color   string  optional    

The color of the tag. Example: #FA6900

Delete tag

requires authentication

Removes the specified tag from the system.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/admin/tags/5" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/tags/5'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/tags/5';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

DELETE api/v3/admin/tags/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the tag. Example: 5

Assign multiple tags to specified entity

requires authentication

Assigns multiple tags to specified entity

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/tags/assign" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"entity_id\": 1,
    \"entity_type\": \"App\\\\Models\\\\Item\",
    \"tags\": [
        1
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/tags/assign'
payload = {
    "entity_id": 1,
    "entity_type": "App\\Models\\Item",
    "tags": [
        1
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/tags/assign';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'entity_id' => 1,
            'entity_type' => 'App\\Models\\Item',
            'tags' => [
                1,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 38,
        "tags": [
            {
                "id": 3,
                "name": "For Sale",
                "color": "#c70000",
                "type": "App\\Models\\Device"
            }
        ]
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/tags/assign

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

entity_id   integer     

The id of the entity. Example: 1

entity_type   string     

The type of the tag. Example: App\Models\Item

Must be one of:
  • App\Models\Colocation
  • App\Models\Device
  • App\Models\Item
  • App\Models\ItemPort
  • App\Models\ItemSensor
  • App\Models\ItemVlan
  • App\Models\Order
  • App\Models\User
  • Modules\Addons\IPManager\Model\IpamSubnet
tags   integer[]  optional    

Array of tags ids. Must match an existing stored value.

Unassign multiple tags from specified entity

requires authentication

Unassigns multiple tags from specified entity

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/admin/tags/unassign" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"entity_id\": 1,
    \"entity_type\": \"App\\\\Models\\\\Item\",
    \"tags\": [
        1
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/admin/tags/unassign'
payload = {
    "entity_id": 1,
    "entity_type": "App\\Models\\Item",
    "tags": [
        1
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/admin/tags/unassign';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'entity_id' => 1,
            'entity_type' => 'App\\Models\\Item',
            'tags' => [
                1,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 38,
        "tags": [
            {
                "id": 3,
                "name": "For Sale",
                "color": "#c70000",
                "type": "App\\Models\\Device"
            }
        ]
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/admin/tags/unassign

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

entity_id   integer     

The id of the entity. Example: 1

entity_type   string     

The type of the tag. Example: App\Models\Item

Must be one of:
  • App\Models\Colocation
  • App\Models\Device
  • App\Models\Item
  • App\Models\ItemPort
  • App\Models\ItemSensor
  • App\Models\ItemVlan
  • App\Models\Order
  • App\Models\User
  • Modules\Addons\IPManager\Model\IpamSubnet
tags   integer[]  optional    

Array of tags ids. Must match an existing stored value.

Authorization Endpoints

Login

This endpoint allows a user to authenticate and receive an access token.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/login" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"[email protected]\",
    \"password\": \"secret123\",
    \"device_name\": \"iPhone 13\",
    \"token_ttl\": 0
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/login'
payload = {
    "email": "[email protected]",
    "password": "secret123",
    "device_name": "iPhone 13",
    "token_ttl": 0
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/login';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'email' => '[email protected]',
            'password' => 'secret123',
            'device_name' => 'iPhone 13',
            'token_ttl' => 0,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 112,
        "name": "iPhone 13",
        "last_used_at": "-",
        "expires_at": "-",
        "token": "112|TT67ipL9gve55ujQNiVpI4CtK4OOW5F6rkzCdPV15cdccbc0",
        "created_at": "2025-10-21 15:47:12"
    }
}
 

Example response (403):


{
    "success": false,
    "status": "error",
    "message": "Your account is not active or has been banned."
}
 

Example response (422):


{
    "success": false,
    "status": "error",
    "message": "Data validation has failed. Please correct the errors and try again.",
    "errors": {
        "email": [
            "The provided email address is incorrect."
        ],
        "password": [
            "The provided password is incorrect."
        ]
    }
}
 

Request   

POST api/v3/login

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

The user's email address. Must be a valid email address. Example: [email protected]

password   string     

The user's password. Example: secret123

device_name   string     

A name for the device making the request. Example: iPhone 13

token_ttl   integer  optional    

Optional custom token lifetime in minutes. Use 0 for non-expiring token. Defaults to 1440 (1 day). Must be at least 0. Example: 0

Remind Password

Sends a password reset link to the provided email address, if it exists in the system.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/password/remind" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"[email protected]\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/password/remind'
payload = {
    "email": "[email protected]"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/password/remind';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'email' => '[email protected]',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "Success! An email has been sent to your inbox.",
    "data": null
}
 

Example response (403):


{
    "success": false,
    "status": "error",
    "message": "Your account is not active or has been banned."
}
 

Example response (404):


{
    "success": false,
    "status": "error",
    "message": "The provided email address is incorrect."
}
 

Example response (500):


{
    "success": false,
    "status": "error",
    "message": "Unable to send email. Please contact your administrator."
}
 

Request   

POST api/v3/password/remind

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

The email address associated with the user's account. Must be a valid email address. Must not be greater than 255 characters. Example: [email protected]

Restore Password

Resets a user's password using a valid reset token.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/password/restore" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"token\": \"123456abcdef\",
    \"password\": \"NewSecureP@ss123\",
    \"password_confirmation\": \"NewSecureP@ss123\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/password/restore'
payload = {
    "token": "123456abcdef",
    "password": "NewSecureP@ss123",
    "password_confirmation": "NewSecureP@ss123"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/password/restore';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'token' => '123456abcdef',
            'password' => 'NewSecureP@ss123',
            'password_confirmation' => 'NewSecureP@ss123',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "Your password has been updated successfully.",
    "data": null
}
 

Example response (422):


{
    "success": false,
    "status": "error",
    "message": "Your token is incorrect or this account does not exist."
}
 

Request   

POST api/v3/password/restore

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

token   string     

The password reset token received by email. Example: 123456abcdef

password   string     

The new password (must be confirmed). Must be at least 5 characters. Example: NewSecureP@ss123

password_confirmation   string     

Must match the password field. Must be at least 5 characters. Example: NewSecureP@ss123

Activate User Account

Activates a user account based on the provided activation token.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/activate/9bdf52c2-2e13-4f9c-a53d-2b3f45ea9c20" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/activate/9bdf52c2-2e13-4f9c-a53d-2b3f45ea9c20'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/activate/9bdf52c2-2e13-4f9c-a53d-2b3f45ea9c20';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "Your account has been activated. You may now log in.",
    "data": null
}
 

Example response (400):


{
    "success": false,
    "status": "error",
    "message": "Activation failed. Please contact support or try again."
}
 

Request   

GET api/v3/activate/{token}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

token   string     

The unique activation token sent by email. Example: 9bdf52c2-2e13-4f9c-a53d-2b3f45ea9c20

List Active SSO Providers

Returns all enabled SSO providers available for the CLIENT scope.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/oauth/providers" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/oauth/providers'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/oauth/providers';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "slug": "GitHubClientArea"
        },
        {
            "slug": "GoogleClientArea"
        },
        {
            "slug": "CustomClientArea"
        }
    ]
}
 

Request   

GET api/v3/oauth/providers

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

OAuth2 Redirect

Returns provider authorization URL for the given provider slug.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/oauth/redirect" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"provider\": \"Google\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/oauth/redirect'
payload = {
    "provider": "Google"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/oauth/redirect';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'provider' => 'Google',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "url": "https://provider.url.com",
        "provider": "GitHubClientArea",
        "state": "enabled"
    }
}
 

Example response (404):


{
    "success": false,
    "status": "error",
    "message": "Invalid or unsupported authentication provider."
}
 

Example response (422):


{
    "success": false,
    "status": "error",
    "message": "Incorrect OAuth provider configuration."
}
 

Example response (500):


{
    "success": false,
    "status": "error",
    "message": "An error occurred while creating the authorization URL."
}
 

Request   

POST api/v3/oauth/redirect

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

provider   string     

Provider slug (e.g. "Google", "Github", "CustomClientArea"). Must not be greater than 64 characters. Example: Google

OAuth2 Exchange

Exchanges the authorization code from the frontend for an API access token.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/oauth/callback" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"provider\": \"Google\",
    \"code\": \"4\\/0AfJohXKXYZ...\",
    \"state\": \"abc123xyz\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/oauth/callback'
payload = {
    "provider": "Google",
    "code": "4\/0AfJohXKXYZ...",
    "state": "abc123xyz"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/oauth/callback';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'provider' => 'Google',
            'code' => '4/0AfJohXKXYZ...',
            'state' => 'abc123xyz',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 112,
        "name": "iPhone 13",
        "last_used_at": "-",
        "expires_at": "-",
        "token": "112|TT67ipL9gve55ujQNiVpI4CtK4OOW5F6rkzCdPV15cdccbc0",
        "created_at": "2025-10-21 15:47:12"
    }
}
 

Example response (400):


{
    "success": false,
    "status": "error",
    "message": "Unable to retrieve user email from the provider."
}
 

Example response (403):


{
    "success": false,
    "status": "error",
    "message": "The user account [email protected] is not active."
}
 

Example response (404):


{
    "success": false,
    "status": "error",
    "message": "Invalid or unsupported authentication provider."
}
 

Example response (404):


{
    "success": false,
    "status": "error",
    "message": "Unable to find user with email address: [email protected]."
}
 

Example response (500):


{
    "success": false,
    "status": "error",
    "message": "OAuth exchange failed"
}
 

Request   

POST api/v3/oauth/callback

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

provider   string     

The OAuth provider slug (e.g. "Google", "Github", "CustomClientArea"). Must not be greater than 64 characters. Example: Google

code   string     

Authorization code received from the provider. Example: 4/0AfJohXKXYZ...

state   string     

State parameter for CSRF protection, must match the one stored in session. Example: abc123xyz

Logout

requires authentication

Revoke the current access token to log out the authenticated user.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/logout" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/logout'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/logout';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": null
}
 

Request   

POST api/v3/logout

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Client Endpoints

System

Get Translations

Returns all language translations for the specified locale.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/system/translations/en" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/system/translations/en'
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/system/translations/en';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "lang_error_toast_heading": "An error occurred!",
        "lang_success_toast_heading": "Success!",
        "log_in": "Log in",
        "log_out": "Log out",
        "tab": {
            "summary": "Summary",
            "detailed_information": "Detailed Information",
            "graphs": "Graphs",
            "traffic_statistics": "Traffic Statistics",
            "power_usage": "Power Usage",
            "reverse_dns": "Reverse DNS",
            "ip_management": "IP Address Management",
            "outlets": "Outlets"
        },
        "title": {
            "impersonating_as_client": "Logging in as client...",
            "activating_user": "Activating Account...",
            "oauth_callback": "Connecting Account..."
        },
        "messages": {
            "impersonating_description": "Please wait while we securely log you in as the selected client. This process may take a few seconds.",
            "activating_user_description": "Please wait while we activate your account. This will only take a moment.",
            "oauth_callback_description": "Please wait while we securely connect your account. This process may take a few seconds."
        },
        "section_title": {
            "bandwidth": "Bandwidth",
            "power_usage": "Power Usage",
            "outlets": "Outlets",
            "detailed_information": "Detailed Information",
            "device_parts": "Device Parts",
            "graphs": "Graphs",
            "ip_addresses_management": "IP Addresses Management",
            "power_usage_statistic": "Power Usage Statistics",
            "bandwidth_intervals": "Bandwidth Intervals",
            "network_ports": "Network Ports",
            "ping_status": "Ping & Status",
            "name": "Name"
        },
        "boxes": {
            "bandwith_in": "Inbound Bandwidth",
            "bandwith_out": "Outbound Bandwidth",
            "bandwith_total": "Total Bandwidth"
        },
        "table_headers": {
            "base": "Base",
            "ipmi_settings": "IPMI Settings",
            "system": "System",
            "ssh_settings": "SSH Settings",
            "snmp_settings": "SNMP Settings",
            "type": "Type",
            "name": "Name",
            "label": "Label",
            "device": "Device",
            "last_hour_traffic": "Last Hour Traffic",
            "last_day_traffic": "Last Day Traffic",
            "last_month_traffic": "Last Month Traffic",
            "interval": "Interval",
            "bandwidth_in": "Inbound Bandwidth",
            "bandwidth_out": "Outbound Bandwidth",
            "bandwidth_total": "Total Bandwidth",
            "fingerprint": "Fingerprint",
            "status": "Status",
            "actions": "Actions",
            "id": "ID",
            "number": "Number",
            "power_usage": "Power Usage",
            "ip_address": "IP Address",
            "rdata": "RDATA",
            "hostname": "Hostname",
            "created": "Created",
            "description": "Description",
            "iso_url": "ISO URL"
        },
        "interval_table": {
            "last_1hour": "Last 1 Hour",
            "last_6hours": "Last 6 Hours",
            "last_1day": "Last 1 Day",
            "last_2days": "Last 2 Days",
            "last_1week": "Last 1 Week",
            "last_1month": "Last 1 Month",
            "last_6months": "Last 6 Months",
            "last_1year": "Last 1 Year",
            "current_month": "Current Month"
        },
        "power_usage_table": {
            "average_daily_usage": "Average Daily Usage",
            "average_weekly_usage": "Average Weekly Usage",
            "average_monthly_usage": "Average Monthly Usage",
            "previous_month_average_usage": "Previous Month Average Usage"
        },
        "chart": {
            "inbound_total": "Traffic IN",
            "outbound_total": "Traffic OUT",
            "total_bound_bits": "Traffic IN & OUT",
            "95_percentile": "95th Percentile",
            "power_usage": "Power Usage"
        },
        "stats": {
            "power_daily_usage": "Daily Usage",
            "power_weekly_usage": "Weekly Usage",
            "power_monthly_usage": "Monthly Usage",
            "power_previous_month_usage": "Previous Month"
        },
        "panel_branding": {
            "title": "Panel Branding",
            "allowed_formats": "SVG, PNG or JPG",
            "click_to_upload": "Click to upload",
            "change_logo": "Change Logo",
            "change_favicon": "Change Favicon",
            "choose_color_scheme": "Choose Color Scheme",
            "action_saved": "Save Changes",
            "action_restore": "Restore Defaults"
        },
        "login_page": {
            "login_title": "Login",
            "register": "Register",
            "impersonating_as_client": "Loading Client Panel Dashboard...",
            "reset_password_title": "Reset Your Password",
            "reset_password_desc": "Forgot your password? Enter your email address below to begin the reset process.",
            "message_sent_title": "Message Sent",
            "message_sent_desc": "We have sent a message to your email address with a link to reset your password."
        },
        "dropdown": {
            "server_actions": "Server Actions",
            "power_control": "Power Control"
        },
        "status": {
            "active": "Active"
        },
        "nav": {
            "your_services": "Your Services",
            "iso_images": "ISO Images",
            "ssh_keys": "SSH Keys",
            "my_account": "My Account",
            "sign_out": "Sign Out"
        },
        "banner": {
            "services_title": "Your Services",
            "services_desc": "A list of all services assigned to your account.",
            "iso_images_title": "ISO Images",
            "iso_images_desc": "A list of all ISO Images created in your account.",
            "ssh_keys_title": "SSH Keys",
            "ssh_keys_desc": "A list of all SSH Keys created in your account.",
            "my_account_title": "My Account",
            "my_account_desc": "Summary of your account details and settings"
        },
        "inputs": {
            "first_name_title": "First Name",
            "first_name_placeholder": "First Name Placeholder",
            "last_name_title": "Last Name",
            "last_name_placeholder": "Last Name Placeholder",
            "company_name_title": "Company Name",
            "company_name_placeholder": "Company Name Placeholder",
            "email_address_title": "Email Address",
            "email_address_placeholder": "Email Address Placeholder",
            "languages_title": "Language",
            "languages_placeholder": "Language Placeholder",
            "timezones_title": "Timezone",
            "timezones_placeholder": "Timezone Placeholder",
            "current_password_title": "Current Password",
            "current_password_placeholder": "Current Password Placeholder",
            "new_password_title": "New Password",
            "new_password_placeholder": "New Password Placeholder",
            "confirm_new_password_title": "Confirm New Password",
            "confirm_new_password_placeholder": "Confirm New Password Placeholder",
            "generated_code_title": "Generated Code",
            "generated_code_placeholder": "Generated Code Placeholder",
            "template_title": "Template",
            "template_placeholder": "Template Placeholder",
            "hostname_title": "Hostname",
            "hostname_placeholder": "Hostname Placeholder",
            "username_title": "Username",
            "username_placeholder": "Username Placeholder",
            "root_password_title": "Root Password",
            "root_password_placeholder": "Root Password Placeholder",
            "password_title": "Password",
            "password_placeholder": "Password Placeholder",
            "ssh_keys_title": "SSH Keys",
            "ssh_keys_placeholder": "SSH Keys Placeholder",
            "disk_layout_title": "Disk Layout",
            "disk_layout_placeholder": "Disk Layout Placeholder",
            "extras_title": "Extras",
            "extras_placeholder": "Extras Placeholder",
            "remember_me_title": "Remember Me"
        },
        "general": {
            "all": "all",
            "save_changes": "Save Changes",
            "cancel": "Cancel",
            "confirm": "Confirm",
            "unknown": "Unknown",
            "unassigned": "Unassigned",
            "not_found_or_unauthorized": "The requested entity does not exist or does not belong to you.",
            "pdu_required": "PDU Management extension must be enabled to perform this action.",
            "manage": "Manage"
        },
        "auth": {
            "missing_bearer_token": "Missing bearer token.",
            "unauthorized_admin_access_only": "Unauthorized. Admin access only.",
            "invalid_email": "The provided email address is incorrect.",
            "email_send_error": "Unable to send email. Please contact your administrator.",
            "email_send_success": "Success! An email has been sent to your inbox.",
            "invalid_token": "Your token is incorrect or this account does not exist.",
            "validation_error": "Password reset failed due to validation errors.",
            "password_reset_success": "Your password has been updated successfully.",
            "activation_success": "Your account has been activated. You may now log in.",
            "activation_failed": "Activation failed. Please contact support or try again.",
            "user_not_found": "User not found.",
            "invalid_password": "The provided password is incorrect.",
            "your_account_is_inactive": "Your account is not active or has been banned.",
            "invalid_bearer_token": "Invalid bearer token.",
            "impersonated_user_not_found": "Impersonated user not found.",
            "impersonated_user_inactive": "Impersonated user account is inactive.",
            "only_admin_can_impersonate": "Only admin users are allowed to impersonate other users.",
            "missing_impersonate_ability": "Your access token does not have permission to impersonate other users.",
            "oauth_invalid_provider": "Invalid or unsupported authentication provider.",
            "oauth_incorrect_configuration": "Incorrect OAuth provider configuration.",
            "oauth_authorization_error": "An error occurred while creating the authorization URL: :error",
            "oauth_exchange_error": "OAuth exchange failed: :error",
            "oauth_missing_email": "Unable to retrieve user email from the provider.",
            "oauth_user_not_found": "Unable to find user with email address: :email.",
            "oauth_user_inactive": "The user account :email is not active.",
            "oauth_invalid_provider_response": "Invalid or unsupported authentication provider response.",
            "oauth_redirect_failed": "Failed to start OAuth login. Please try again later.",
            "oauth_connecting": "Connecting your account...",
            "oauth_missing_parameters": "Missing authorization parameters.",
            "oauth_invalid_state": "Invalid state parameter.",
            "oauth_authentication_failed": "Authentication failed. Please try again.",
            "oauth_exchange_failed": "OAuth exchange failed. Please try again later.",
            "login_with_GitHubClientArea": "Sign in with GitHub",
            "login_with_GoogleClientArea": "Sign in with Google",
            "login_with_CustomClientArea": "Sign in with OAuth Provider"
        },
        "service": {
            "not_found_or_unauthorized": "The requested service does not exist, is inactive, or does not belong to you.",
            "power_action_error": "An error occurred while attempting to perform the :action action on the server.",
            "outlet_action_error": "An error occurred while attempting to perform the :action action on the outlet."
        },
        "2fa": {
            "already_enabled": "Two-factor authentication is already enabled.",
            "configuration_error": "There was an error while verifying the two-factor configuration.",
            "verification_failed": "Invalid code. Two-factor authentication failed.",
            "you_have_been_signed_in_using_backup_code_please_verify_your_two_factor_configuration": "You have signed in using a backup code. Please verify your two-factor configuration.",
            "please_provide_the_valid_password_for_your_account": "Please provide the valid password for your account.",
            "no_valid_backup_code_specified_into_configuration": "No valid backup code is stored in your configuration.",
            "invalid_or_empty_backup_code": "The backup code provided is invalid or has not been entered.",
            "enabled_successfully": "Two-factor authentication has been enabled successfully.",
            "disabled_successfully": "Two-factor authentication has been disabled successfully.",
            "enable_modal": {
                "title": "Two-Factor Authentication",
                "desc": "Please use an authenticator app, such as Google Authenticator, to scan the QR code below.",
                "backup_code_desc": "The backup code is needed to access your account in the event you cannot complete two-factor authentication. Backup codes are valid once only."
            },
            "disable_modal": {
                "title": "Disable Two-Factor Authentication",
                "desc": "To disable two-factor authentication, please confirm your current account password.",
                "input_title": "Current Password"
            },
            "2fa_title": "Two-Factor Authentication",
            "2fa_code_desc": "To confirm your identity, please enter the six-digit authentication code from your app.",
            "2fa_backup_code_desc": "If you do not have access to the app, please enter a backup code below.",
            "input_title": "Authentication code",
            "input_placeholder": "Enter your 6-digit code",
            "or": "or",
            "use_backup_code": "Use Backup Code",
            "use_standard_code": "Use Authentication Code"
        },
        "login_backup_code": {
            "input_title": "Backup code",
            "input_placeholder": "Enter your backup code"
        },
        "actions": {
            "boot": "Boot",
            "reboot": "Reboot",
            "shutdown": "Shutdown",
            "boot_modal_title": "Boot Server",
            "boot_modal_desc": "Are you sure you want to boot this server?",
            "shutdown_modal_title": "Shutdown Server",
            "shutdown_modal_desc": "Are you sure you want to shut down this server?",
            "reboot_modal_title": "Reboot Server",
            "reboot_modal_desc": "Are you sure you want to reboot this server?",
            "cold_reset_modal_title": "Cold Reset BMC",
            "cold_reset_modal_desc": "This will force a cold reset of the BMC. Are you sure?",
            "rescue_mode_enable_title": "Enable Rescue Mode",
            "rescue_mode_enable_desc": "Do you really want to reboot the device in rescue mode?",
            "rescue_mode_enable_desc1": "If you confirm your request, your server will go into rescue mode and will reboot immediately. You will then receive an email containing the information required to log in to your server.",
            "rescue_mode_enable_desc2": "Downtime due to reboot: approximately 5 minutes.",
            "rescue_mode_disable_title": "Disable Rescue Mode",
            "rescue_mode_disable_desc": "This will boot the server into its normal OS. Proceed?",
            "osreinstall_modal_title": "Reinstall Operating System",
            "outletOn": "Outlet On",
            "outletOff": "Outlet Off",
            "outletReboot": "Outlet Reboot"
        },
        "service_widget": {
            "service": "Service",
            "ip_address": "IP Adress",
            "location": "Location",
            "rack": "Rack",
            "label": "Label",
            "device_status": "Device Status",
            "mac_address": "MAC Address",
            "uptime": "UpTime",
            "operating_system": "Operating System"
        },
        "graphs": {
            "aggregate_traffic": "Aggregate Traffic",
            "ping_response": "Ping Response",
            "status": "Status Graphs",
            "average_loads": "Average Loads For Device",
            "power_usage": "Server Power Usage"
        },
        "vnc_console": {
            "modal_title": "noVNC KVM Console",
            "connecting_desc": "We’re establishing the console connection for you. This may take a moment, please wait.",
            "failed_desc": "The console connection has been established successfully! Please click the button below to open the console.",
            "connected_desc": "Failed to establish the console connection. Please try again or contact support if the problem persists.",
            "action_open": "Open Console",
            "action_try_again": "Try Again",
            "insert_username": "Insert Username",
            "insert_password": "Insert Password",
            "close_session": "Close Session",
            "console_status": "Console Status",
            "loading_desc": "We are loading the console. This may take a moment, please wait.",
            "error_message": "The connection has been lost! Please try to reconnect using the button below. If you continue to experience issues, contact the support team."
        },
        "404": {
            "title": "Something's missing.",
            "desc": "The resource you are looking for does not exist or has been removed.",
            "back_to_services": "Back to Service List",
            "back_to_login": "Back to Login"
        }
    }
}
 

Request   

GET api/v3/client/system/translations/{locale}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

locale   string     

The language code (e.g. "en", "pl"). Example: en

Show System Configuration

requires authentication

Returns basic system configuration.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/system-settings" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/system-settings'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/system-settings';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "company_name": "EasyDCIM",
        "default_client_area_language": "en",
        "languages": {
            "en": "English",
            "de": "German",
            "es": "Spanish"
        },
        "timezones": {
            "": "Select something...",
            "0": "Africa/Abidjan",
            "1": "Africa/Accra",
            "2": "Africa/Addis_Ababa",
            "3": "Africa/Algiers",
            "4": "Africa/Asmara",
            "5": "Africa/Bamako",
            "6": "Africa/Bangui",
            "7": "Africa/Banjul",
            "8": "Africa/Bissau",
            "9": "Africa/Blantyre",
            "10": "Africa/Brazzaville",
            "11": "Africa/Bujumbura",
            "12": "Africa/Cairo",
            "13": "Africa/Casablanca",
            "14": "Africa/Ceuta",
            "15": "Africa/Conakry",
            "16": "Africa/Dakar",
            "17": "Africa/Dar_es_Salaam",
            "18": "Africa/Djibouti",
            "19": "Africa/Douala",
            "20": "Africa/El_Aaiun",
            "21": "Africa/Freetown",
            "22": "Africa/Gaborone",
            "23": "Africa/Harare",
            "24": "Africa/Johannesburg",
            "25": "Africa/Juba",
            "26": "Africa/Kampala",
            "27": "Africa/Khartoum",
            "28": "Africa/Kigali",
            "29": "Africa/Kinshasa",
            "30": "Africa/Lagos",
            "31": "Africa/Libreville",
            "32": "Africa/Lome",
            "33": "Africa/Luanda",
            "34": "Africa/Lubumbashi",
            "35": "Africa/Lusaka",
            "36": "Africa/Malabo",
            "37": "Africa/Maputo",
            "38": "Africa/Maseru",
            "39": "Africa/Mbabane",
            "40": "Africa/Mogadishu",
            "41": "Africa/Monrovia",
            "42": "Africa/Nairobi",
            "43": "Africa/Ndjamena",
            "44": "Africa/Niamey",
            "45": "Africa/Nouakchott",
            "46": "Africa/Ouagadougou",
            "47": "Africa/Porto-Novo",
            "48": "Africa/Sao_Tome",
            "49": "Africa/Tripoli",
            "50": "Africa/Tunis",
            "51": "Africa/Windhoek",
            "52": "America/Adak",
            "53": "America/Anchorage",
            "54": "America/Anguilla",
            "55": "America/Antigua",
            "56": "America/Araguaina",
            "57": "America/Argentina/Buenos_Aires",
            "58": "America/Argentina/Catamarca",
            "59": "America/Argentina/Cordoba",
            "60": "America/Argentina/Jujuy",
            "61": "America/Argentina/La_Rioja",
            "62": "America/Argentina/Mendoza",
            "63": "America/Argentina/Rio_Gallegos",
            "64": "America/Argentina/Salta",
            "65": "America/Argentina/San_Juan",
            "66": "America/Argentina/San_Luis",
            "67": "America/Argentina/Tucuman",
            "68": "America/Argentina/Ushuaia",
            "69": "America/Aruba",
            "70": "America/Asuncion",
            "71": "America/Atikokan",
            "72": "America/Bahia",
            "73": "America/Bahia_Banderas",
            "74": "America/Barbados",
            "75": "America/Belem",
            "76": "America/Belize",
            "77": "America/Blanc-Sablon",
            "78": "America/Boa_Vista",
            "79": "America/Bogota",
            "80": "America/Boise",
            "81": "America/Cambridge_Bay",
            "82": "America/Campo_Grande",
            "83": "America/Cancun",
            "84": "America/Caracas",
            "85": "America/Cayenne",
            "86": "America/Cayman",
            "87": "America/Chicago",
            "88": "America/Chihuahua",
            "89": "America/Ciudad_Juarez",
            "90": "America/Costa_Rica",
            "91": "America/Creston",
            "92": "America/Cuiaba",
            "93": "America/Curacao",
            "94": "America/Danmarkshavn",
            "95": "America/Dawson",
            "96": "America/Dawson_Creek",
            "97": "America/Denver",
            "98": "America/Detroit",
            "99": "America/Dominica",
            "100": "America/Edmonton",
            "101": "America/Eirunepe",
            "102": "America/El_Salvador",
            "103": "America/Fort_Nelson",
            "104": "America/Fortaleza",
            "105": "America/Glace_Bay",
            "106": "America/Goose_Bay",
            "107": "America/Grand_Turk",
            "108": "America/Grenada",
            "109": "America/Guadeloupe",
            "110": "America/Guatemala",
            "111": "America/Guayaquil",
            "112": "America/Guyana",
            "113": "America/Halifax",
            "114": "America/Havana",
            "115": "America/Hermosillo",
            "116": "America/Indiana/Indianapolis",
            "117": "America/Indiana/Knox",
            "118": "America/Indiana/Marengo",
            "119": "America/Indiana/Petersburg",
            "120": "America/Indiana/Tell_City",
            "121": "America/Indiana/Vevay",
            "122": "America/Indiana/Vincennes",
            "123": "America/Indiana/Winamac",
            "124": "America/Inuvik",
            "125": "America/Iqaluit",
            "126": "America/Jamaica",
            "127": "America/Juneau",
            "128": "America/Kentucky/Louisville",
            "129": "America/Kentucky/Monticello",
            "130": "America/Kralendijk",
            "131": "America/La_Paz",
            "132": "America/Lima",
            "133": "America/Los_Angeles",
            "134": "America/Lower_Princes",
            "135": "America/Maceio",
            "136": "America/Managua",
            "137": "America/Manaus",
            "138": "America/Marigot",
            "139": "America/Martinique",
            "140": "America/Matamoros",
            "141": "America/Mazatlan",
            "142": "America/Menominee",
            "143": "America/Merida",
            "144": "America/Metlakatla",
            "145": "America/Mexico_City",
            "146": "America/Miquelon",
            "147": "America/Moncton",
            "148": "America/Monterrey",
            "149": "America/Montevideo",
            "150": "America/Montserrat",
            "151": "America/Nassau",
            "152": "America/New_York",
            "153": "America/Nome",
            "154": "America/Noronha",
            "155": "America/North_Dakota/Beulah",
            "156": "America/North_Dakota/Center",
            "157": "America/North_Dakota/New_Salem",
            "158": "America/Nuuk",
            "159": "America/Ojinaga",
            "160": "America/Panama",
            "161": "America/Paramaribo",
            "162": "America/Phoenix",
            "163": "America/Port-au-Prince",
            "164": "America/Port_of_Spain",
            "165": "America/Porto_Velho",
            "166": "America/Puerto_Rico",
            "167": "America/Punta_Arenas",
            "168": "America/Rankin_Inlet",
            "169": "America/Recife",
            "170": "America/Regina",
            "171": "America/Resolute",
            "172": "America/Rio_Branco",
            "173": "America/Santarem",
            "174": "America/Santiago",
            "175": "America/Santo_Domingo",
            "176": "America/Sao_Paulo",
            "177": "America/Scoresbysund",
            "178": "America/Sitka",
            "179": "America/St_Barthelemy",
            "180": "America/St_Johns",
            "181": "America/St_Kitts",
            "182": "America/St_Lucia",
            "183": "America/St_Thomas",
            "184": "America/St_Vincent",
            "185": "America/Swift_Current",
            "186": "America/Tegucigalpa",
            "187": "America/Thule",
            "188": "America/Tijuana",
            "189": "America/Toronto",
            "190": "America/Tortola",
            "191": "America/Vancouver",
            "192": "America/Whitehorse",
            "193": "America/Winnipeg",
            "194": "America/Yakutat",
            "195": "Antarctica/Casey",
            "196": "Antarctica/Davis",
            "197": "Antarctica/DumontDUrville",
            "198": "Antarctica/Macquarie",
            "199": "Antarctica/Mawson",
            "200": "Antarctica/McMurdo",
            "201": "Antarctica/Palmer",
            "202": "Antarctica/Rothera",
            "203": "Antarctica/Syowa",
            "204": "Antarctica/Troll",
            "205": "Antarctica/Vostok",
            "206": "Arctic/Longyearbyen",
            "207": "Asia/Aden",
            "208": "Asia/Almaty",
            "209": "Asia/Amman",
            "210": "Asia/Anadyr",
            "211": "Asia/Aqtau",
            "212": "Asia/Aqtobe",
            "213": "Asia/Ashgabat",
            "214": "Asia/Atyrau",
            "215": "Asia/Baghdad",
            "216": "Asia/Bahrain",
            "217": "Asia/Baku",
            "218": "Asia/Bangkok",
            "219": "Asia/Barnaul",
            "220": "Asia/Beirut",
            "221": "Asia/Bishkek",
            "222": "Asia/Brunei",
            "223": "Asia/Chita",
            "224": "Asia/Colombo",
            "225": "Asia/Damascus",
            "226": "Asia/Dhaka",
            "227": "Asia/Dili",
            "228": "Asia/Dubai",
            "229": "Asia/Dushanbe",
            "230": "Asia/Famagusta",
            "231": "Asia/Gaza",
            "232": "Asia/Hebron",
            "233": "Asia/Ho_Chi_Minh",
            "234": "Asia/Hong_Kong",
            "235": "Asia/Hovd",
            "236": "Asia/Irkutsk",
            "237": "Asia/Jakarta",
            "238": "Asia/Jayapura",
            "239": "Asia/Jerusalem",
            "240": "Asia/Kabul",
            "241": "Asia/Kamchatka",
            "242": "Asia/Karachi",
            "243": "Asia/Kathmandu",
            "244": "Asia/Khandyga",
            "245": "Asia/Kolkata",
            "246": "Asia/Krasnoyarsk",
            "247": "Asia/Kuala_Lumpur",
            "248": "Asia/Kuching",
            "249": "Asia/Kuwait",
            "250": "Asia/Macau",
            "251": "Asia/Magadan",
            "252": "Asia/Makassar",
            "253": "Asia/Manila",
            "254": "Asia/Muscat",
            "255": "Asia/Nicosia",
            "256": "Asia/Novokuznetsk",
            "257": "Asia/Novosibirsk",
            "258": "Asia/Omsk",
            "259": "Asia/Oral",
            "260": "Asia/Phnom_Penh",
            "261": "Asia/Pontianak",
            "262": "Asia/Pyongyang",
            "263": "Asia/Qatar",
            "264": "Asia/Qostanay",
            "265": "Asia/Qyzylorda",
            "266": "Asia/Riyadh",
            "267": "Asia/Sakhalin",
            "268": "Asia/Samarkand",
            "269": "Asia/Seoul",
            "270": "Asia/Shanghai",
            "271": "Asia/Singapore",
            "272": "Asia/Srednekolymsk",
            "273": "Asia/Taipei",
            "274": "Asia/Tashkent",
            "275": "Asia/Tbilisi",
            "276": "Asia/Tehran",
            "277": "Asia/Thimphu",
            "278": "Asia/Tokyo",
            "279": "Asia/Tomsk",
            "280": "Asia/Ulaanbaatar",
            "281": "Asia/Urumqi",
            "282": "Asia/Ust-Nera",
            "283": "Asia/Vientiane",
            "284": "Asia/Vladivostok",
            "285": "Asia/Yakutsk",
            "286": "Asia/Yangon",
            "287": "Asia/Yekaterinburg",
            "288": "Asia/Yerevan",
            "289": "Atlantic/Azores",
            "290": "Atlantic/Bermuda",
            "291": "Atlantic/Canary",
            "292": "Atlantic/Cape_Verde",
            "293": "Atlantic/Faroe",
            "294": "Atlantic/Madeira",
            "295": "Atlantic/Reykjavik",
            "296": "Atlantic/South_Georgia",
            "297": "Atlantic/St_Helena",
            "298": "Atlantic/Stanley",
            "299": "Australia/Adelaide",
            "300": "Australia/Brisbane",
            "301": "Australia/Broken_Hill",
            "302": "Australia/Darwin",
            "303": "Australia/Eucla",
            "304": "Australia/Hobart",
            "305": "Australia/Lindeman",
            "306": "Australia/Lord_Howe",
            "307": "Australia/Melbourne",
            "308": "Australia/Perth",
            "309": "Australia/Sydney",
            "310": "Europe/Amsterdam",
            "311": "Europe/Andorra",
            "312": "Europe/Astrakhan",
            "313": "Europe/Athens",
            "314": "Europe/Belgrade",
            "315": "Europe/Berlin",
            "316": "Europe/Bratislava",
            "317": "Europe/Brussels",
            "318": "Europe/Bucharest",
            "319": "Europe/Budapest",
            "320": "Europe/Busingen",
            "321": "Europe/Chisinau",
            "322": "Europe/Copenhagen",
            "323": "Europe/Dublin",
            "324": "Europe/Gibraltar",
            "325": "Europe/Guernsey",
            "326": "Europe/Helsinki",
            "327": "Europe/Isle_of_Man",
            "328": "Europe/Istanbul",
            "329": "Europe/Jersey",
            "330": "Europe/Kaliningrad",
            "331": "Europe/Kirov",
            "332": "Europe/Kyiv",
            "333": "Europe/Lisbon",
            "334": "Europe/Ljubljana",
            "335": "Europe/London",
            "336": "Europe/Luxembourg",
            "337": "Europe/Madrid",
            "338": "Europe/Malta",
            "339": "Europe/Mariehamn",
            "340": "Europe/Minsk",
            "341": "Europe/Monaco",
            "342": "Europe/Moscow",
            "343": "Europe/Oslo",
            "344": "Europe/Paris",
            "345": "Europe/Podgorica",
            "346": "Europe/Prague",
            "347": "Europe/Riga",
            "348": "Europe/Rome",
            "349": "Europe/Samara",
            "350": "Europe/San_Marino",
            "351": "Europe/Sarajevo",
            "352": "Europe/Saratov",
            "353": "Europe/Simferopol",
            "354": "Europe/Skopje",
            "355": "Europe/Sofia",
            "356": "Europe/Stockholm",
            "357": "Europe/Tallinn",
            "358": "Europe/Tirane",
            "359": "Europe/Ulyanovsk",
            "360": "Europe/Vaduz",
            "361": "Europe/Vatican",
            "362": "Europe/Vienna",
            "363": "Europe/Vilnius",
            "364": "Europe/Volgograd",
            "365": "Europe/Warsaw",
            "366": "Europe/Zagreb",
            "367": "Europe/Zurich",
            "368": "Indian/Antananarivo",
            "369": "Indian/Chagos",
            "370": "Indian/Christmas",
            "371": "Indian/Cocos",
            "372": "Indian/Comoro",
            "373": "Indian/Kerguelen",
            "374": "Indian/Mahe",
            "375": "Indian/Maldives",
            "376": "Indian/Mauritius",
            "377": "Indian/Mayotte",
            "378": "Indian/Reunion",
            "379": "Pacific/Apia",
            "380": "Pacific/Auckland",
            "381": "Pacific/Bougainville",
            "382": "Pacific/Chatham",
            "383": "Pacific/Chuuk",
            "384": "Pacific/Easter",
            "385": "Pacific/Efate",
            "386": "Pacific/Fakaofo",
            "387": "Pacific/Fiji",
            "388": "Pacific/Funafuti",
            "389": "Pacific/Galapagos",
            "390": "Pacific/Gambier",
            "391": "Pacific/Guadalcanal",
            "392": "Pacific/Guam",
            "393": "Pacific/Honolulu",
            "394": "Pacific/Kanton",
            "395": "Pacific/Kiritimati",
            "396": "Pacific/Kosrae",
            "397": "Pacific/Kwajalein",
            "398": "Pacific/Majuro",
            "399": "Pacific/Marquesas",
            "400": "Pacific/Midway",
            "401": "Pacific/Nauru",
            "402": "Pacific/Niue",
            "403": "Pacific/Norfolk",
            "404": "Pacific/Noumea",
            "405": "Pacific/Pago_Pago",
            "406": "Pacific/Palau",
            "407": "Pacific/Pitcairn",
            "408": "Pacific/Pohnpei",
            "409": "Pacific/Port_Moresby",
            "410": "Pacific/Rarotonga",
            "411": "Pacific/Saipan",
            "412": "Pacific/Tahiti",
            "413": "Pacific/Tarawa",
            "414": "Pacific/Tongatapu",
            "415": "Pacific/Wake",
            "416": "Pacific/Wallis",
            "417": "UTC"
        }
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/system-settings

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Users

Autologin with Token

Logs the user in using a one-time autologin token and returns a new API access token. The token will be valid for 10 minutes.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/user/autologin" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"token\": \"e32cc8f1004a581583b2702c1fbf8354\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/user/autologin'
payload = {
    "token": "e32cc8f1004a581583b2702c1fbf8354"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/user/autologin';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'token' => 'e32cc8f1004a581583b2702c1fbf8354',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Request   

POST api/v3/client/user/autologin

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

token   string     

One-time autologin token generated for impersonation or quick login. Example: e32cc8f1004a581583b2702c1fbf8354

Get Authenticated User

requires authentication

Returns the currently authenticated user's details.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/user" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/user'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/user';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 8795,
        "username": "towne.april",
        "firstname": "Dylan",
        "lastname": "Herzog",
        "name": "Dylan Herzog",
        "email": "[email protected]",
        "company": null,
        "avatar": "//www.gravatar.com/avatar/3f6b32a04a84e8ed433465c7d46dac69?s=30&d=mm&r=g",
        "large_avatar": "//www.gravatar.com/avatar/3f6b32a04a84e8ed433465c7d46dac69?s=130&d=mm&r=g",
        "gender": "0",
        "country_code": null,
        "country_name": "United States",
        "active": 1,
        "status": "Active",
        "last_login": null,
        "locale": null,
        "timezone": 0,
        "two_factor_enabled": false
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/user

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Update User

requires authentication

Updates the currently authenticated user's details with the provided data.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/client/user/edit" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"[email protected]\",
    \"firstname\": \"John\",
    \"lastname\": \"Doe\",
    \"company\": \"Acme Inc.\",
    \"locale\": \"en\",
    \"timezone\": 133
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/user/edit'
payload = {
    "email": "[email protected]",
    "firstname": "John",
    "lastname": "Doe",
    "company": "Acme Inc.",
    "locale": "en",
    "timezone": 133
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/user/edit';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'email' => '[email protected]',
            'firstname' => 'John',
            'lastname' => 'Doe',
            'company' => 'Acme Inc.',
            'locale' => 'en',
            'timezone' => 133,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 8796,
        "username": "haskell95",
        "firstname": "Lavinia",
        "lastname": "Huel",
        "name": "Lavinia Huel",
        "email": "[email protected]",
        "company": null,
        "avatar": "//www.gravatar.com/avatar/1832cf4e44d56fb09190d036d293dbfe?s=30&d=mm&r=g",
        "large_avatar": "//www.gravatar.com/avatar/1832cf4e44d56fb09190d036d293dbfe?s=130&d=mm&r=g",
        "gender": "0",
        "country_code": null,
        "country_name": "United States",
        "active": 1,
        "status": "Active",
        "last_login": null,
        "locale": null,
        "timezone": 0,
        "two_factor_enabled": false
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

PUT api/v3/client/user/edit

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

The user's email address. Must be unique. Must be a valid email address. Must not be greater than 255 characters. Example: [email protected]

firstname   string  optional    

The user's first name. Max 255 characters. Must not be greater than 255 characters. Example: John

lastname   string  optional    

The user's last name. Max 255 characters. Must not be greater than 255 characters. Example: Doe

company   string  optional    

The user's company name. Optional. Max 255 characters. Must not be greater than 255 characters. Example: Acme Inc.

locale   string  optional    

The language preference (e.g., ISO code). Example: en

timezone   integer  optional    

The ID of the selected timezone. See the Show System Configuration endpoint for valid values. Example: 133

Update User Password

requires authentication

Allows the authenticated user to change their password by providing the current password and a new one.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/client/user/edit-password" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"current_password\": \"OldP@ssword123\",
    \"password\": \"NewSecureP@ss123\",
    \"password_confirmation\": \"NewSecureP@ss123\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/user/edit-password'
payload = {
    "current_password": "OldP@ssword123",
    "password": "NewSecureP@ss123",
    "password_confirmation": "NewSecureP@ss123"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/user/edit-password';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'current_password' => 'OldP@ssword123',
            'password' => 'NewSecureP@ss123',
            'password_confirmation' => 'NewSecureP@ss123',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

PUT api/v3/client/user/edit-password

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

current_password   string     

The user's current password. Example: OldP@ssword123

password   string     

The new password (must be confirmed). Must be at least 5 characters. Example: NewSecureP@ss123

password_confirmation   string     

Must match the password field. Must be at least 5 characters. Example: NewSecureP@ss123

Generate Auto-Login Link

requires authentication

Creates a one-time auto-login link for a specific user.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/user/autologin" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/user/autologin'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/user/autologin';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "link": "https://your-easydcim.com/client/impersonate?token=43128ab30d06c9bf5eb7a1c2f0274bf4"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/user/autologin

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

SSH Keys

List SSH Keys

requires authentication

Returns a paginated list of SSH keys for the authenticated user.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/user/ssh-keys?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/user/ssh-keys'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/user/ssh-keys';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 82,
            "name": "numquam et",
            "ssh_key": "ssh-rsa Mjk3OWNiYzg1ZTg4OGJhMDgxMWM3YjgyNWQwNTZmNTI0YWFkZWVjZWRlYWU5NTMzNGRlNGMyOGU5ZmI4MDM0NQ== user@host",
            "default": false,
            "fingerprint": "45:b5:70:c4:3a:a2:fd:8a:7b:ef:a4:84:73:39:1d:67",
            "created_at": "2026-09-04 09:45:57"
        },
        {
            "id": 83,
            "name": "impedit ut",
            "ssh_key": "ssh-rsa ZmE3ZWE0YzZmZjBhZTRhZDRhZDM2MzZkODY0NTc4NWFjMjMxODdiOGJjMmQ5MjA1ZWQyMTFjNDIxZjI4ZTE1NA== user@host",
            "default": false,
            "fingerprint": "77:5e:aa:e2:52:41:a6:26:4c:bf:b8:8d:c3:80:0c:40",
            "created_at": "2026-09-04 09:45:57"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/client/user/ssh-keys?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/client/user/ssh-keys",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/user/ssh-keys

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, fingerprint, default, user_id, created_at. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, user_id. Example: id

Create SSH Key

requires authentication

Creates a new SSH key associated with the authenticated client.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/user/ssh-keys" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Public Key\",
    \"ssh_key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCy...\",
    \"default\": true
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/user/ssh-keys'
payload = {
    "name": "Public Key",
    "ssh_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCy...",
    "default": true
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/user/ssh-keys';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Public Key',
            'ssh_key' => 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCy...',
            'default' => true,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 84,
        "name": "dolorum deleniti",
        "ssh_key": "ssh-rsa Y2IzMDJmZjJjOTJiYzJmZGY4YTQ3OTI3YThiNTYzNzczODYyNDg2M2YwOTljODk0NmJiZDIyYzA0YjVhZjI4ZA== user@host",
        "default": false,
        "fingerprint": "58:2f:e2:ed:13:6e:6e:7a:1a:7b:cf:be:09:57:ac:c0",
        "created_at": "2026-09-04 09:45:57"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/user/ssh-keys

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The name of the SSH key. Example: Public Key

ssh_key   string     

The public SSH key content. Example: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCy...

default   boolean  optional    

Whether the key should be set as default. Example: true

Update SSH Key

requires authentication

Updates a given SSH key for the authenticated user.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/client/user/ssh-keys/3" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Public Key\",
    \"ssh_key\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCy...\",
    \"default\": true
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/user/ssh-keys/3'
payload = {
    "name": "Public Key",
    "ssh_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCy...",
    "default": true
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/user/ssh-keys/3';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Public Key',
            'ssh_key' => 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCy...',
            'default' => true,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 85,
        "name": "repudiandae omnis",
        "ssh_key": "ssh-rsa MGI0ZWRmYmNkNzgyZTk4ZDM5NWE5YmM0N2IwYzgyODgxZDUxMTY0ODNlZGFlNmU3YjYzMjk3NjgwOTgwM2FlYg== user@host",
        "default": false,
        "fingerprint": "ec:71:b5:de:5d:10:ea:81:7f:3e:eb:64:cc:67:a0:85",
        "created_at": "2026-09-04 09:45:57"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

PUT api/v3/client/user/ssh-keys/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the SSH key to update. Example: 3

Body Parameters

name   string     

The name of the SSH key. Example: Public Key

ssh_key   string     

The public SSH key content. Example: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCy...

default   boolean  optional    

Whether the key should be set as default. Example: true

Set SSH Key as Default

requires authentication

Sets a given SSH key as the default key for the authenticated client.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/user/ssh-keys/7/set-as-default" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/user/ssh-keys/7/set-as-default'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/user/ssh-keys/7/set-as-default';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 86,
        "name": "error expedita",
        "ssh_key": "ssh-rsa Y2E5MDQ3NTAzY2E0Y2FhZDgzYWM4MDdkZGUyNzNkOWNiNDk5YjZkNDJiYWUyODU5ZGFlN2MyZmQxZDU1OTc0Nw== user@host",
        "default": false,
        "fingerprint": "fe:ac:a8:99:5f:cd:93:80:90:90:69:ac:0f:32:f1:06",
        "created_at": "2026-09-04 09:45:57"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/user/ssh-keys/{id}/set-as-default

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the SSH key to mark as default. Example: 7

Delete SSH Key

requires authentication

Deletes a specific SSH key belonging to the authenticated client.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/client/user/ssh-keys/16" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/user/ssh-keys/16'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/user/ssh-keys/16';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

DELETE api/v3/client/user/ssh-keys/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the ssh key. Example: 16

Services

List Services

requires authentication

Returns a paginated list of services for the authenticated client.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services?filter=active&per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services'
params = {
  'filter': 'active',
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'filter' => 'active',
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 65,
            "related_id": 2100,
            "related": {
                "label": "atque",
                "model": "hic",
                "location": "Mosciski Inc",
                "location_flag": "Germany.png",
                "metadata": []
            },
            "type": "Colocation",
            "status": "terminated",
            "created_at": "2026-09-04 09:46:03"
        },
        {
            "id": 66,
            "related_id": 2101,
            "related": {
                "label": "ea",
                "model": "doloremque",
                "location": "Heidenreich-Barrows",
                "location_flag": "Germany.png",
                "metadata": []
            },
            "type": "Server",
            "status": "",
            "created_at": "2026-09-04 09:46:08"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/client/services?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/client/services",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

filter   string  optional    

optional Filter services by status group. Allowed values: all, active, inactive. Default: all. Example: active

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, type, status, related.label, related.model, related.location, related.ip. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, type, status, related.label, related.model, related.location, related.ip. Example: id

Show Service

requires authentication

Returns detailed information about a specific service.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/123" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 67,
        "related_id": 2102,
        "type": "Colocation",
        "status": "terminated",
        "created_at": "2026-09-04 09:46:14",
        "related": {
            "label": "autem",
            "model": "omnis",
            "location": "Lynch PLC",
            "location_flag": "USA.png",
            "rack": "Unknown",
            "device_status": "running",
            "os_installation": 0,
            "uptime": {
                "is_down": false,
                "value": "Unknown"
            },
            "image": null,
            "ip_addresses": [],
            "metadata": [],
            "metadataGroups": []
        },
        "access_level": {
            "id": 89,
            "name": "quos",
            "type": "Server",
            "default": true,
            "value": "a:5:{s:13:\"base_features\";a:5:{i:0;s:11:\"description\";i:1;s:8:\"position\";i:2;s:5:\"label\";i:3;s:5:\"model\";i:4;s:8:\"location\";}s:18:\"traffic_statistics\";a:5:{i:0;s:9:\"filtering\";i:1;s:17:\"left_sidebar_link\";i:2;s:23:\"widget_last_month_graph\";i:3;s:17:\"widget_last_month\";i:4;s:20:\"widget_network_ports\";}s:5:\"power\";a:6:{i:0;s:20:\"widget_average_usage\";i:1;s:23:\"widget_last_month_graph\";i:2;s:9:\"filtering\";i:3;s:17:\"widget_last_month\";i:4;s:7:\"outlets\";i:5;s:17:\"left_sidebar_link\";}s:4:\"ipam\";a:1:{i:0;s:30:\"ipam_widget_in_service_summary\";}s:11:\"dns-manager\";a:4:{i:0;s:11:\"delete_rdns\";i:1;s:11:\"create_rdns\";i:2;s:22:\"rdns_left_sidebar_link\";i:3;s:11:\"update_rdns\";}}"
        }
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Get Service Bandwidth

requires authentication

Retrieves bandwidth usage for a specific service. If a date range is provided, it returns detailed traffic data for that period. Otherwise, it returns historical usage data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/101/bandwidth" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"startDate\": \"2024-01-01 00:00:00\",
    \"endDate\": \"2024-01-31 23:59:59\",
    \"units\": \"GB\",
    \"ports\": [
        12,
        100
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/101/bandwidth'
payload = {
    "startDate": "2024-01-01 00:00:00",
    "endDate": "2024-01-31 23:59:59",
    "units": "GB",
    "ports": [
        12,
        100
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/101/bandwidth';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'startDate' => '2024-01-01 00:00:00',
            'endDate' => '2024-01-31 23:59:59',
            'units' => 'GB',
            'ports' => [
                12,
                100,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "raw": {
            "BW_TOTAL": {
                "rrd": "93.78 GB",
                "bytes": 93780000000
            },
            "BW_IN": {
                "rrd": "43.04 GB",
                "bytes": 43040000000
            },
            "BW_OUT": {
                "rrd": "50.74 GB",
                "bytes": 50740000000
            },
            "95TH_PERC": {
                "rrd": "0.00",
                "bytes": 0
            },
            "95TH_PERC_IN": {
                "rrd": "0.00",
                "bytes": 0
            },
            "95TH_PERC_OUT": {
                "rrd": "0.00",
                "bytes": 0
            }
        },
        "BW_TOTAL": "93.78",
        "BW_IN": "43.04",
        "BW_OUT": "50.74",
        "95TH_PERC": "0.00",
        "95TH_PERC_IN": "0.00",
        "95TH_PERC_OUT": "0.00"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/bandwidth

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 101

Body Parameters

startDate   string  optional    

The start date for the traffic range. Must be a valid date. Must be a valid date. Example: 2024-01-01 00:00:00

endDate   string  optional    

The end date for the traffic range. Must be a valid date. Must be a valid date. Example: 2024-01-31 23:59:59

units   string  optional    

The unit of bandwidth. Must be one of: MB, GB, TB. Example: GB

Must be one of:
  • MB
  • GB
  • TB
ports   object  optional    

An array of device port names to include in the traffic query.

Get Service Power Usage

requires authentication

Retrieves power usage data for a specific service. If a date range is provided, it returns detailed power data for that period. Otherwise, it returns historical usage data.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/101/powerusage" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"startDate\": \"2024-01-01 00:00:00\",
    \"endDate\": \"2024-01-31 23:59:59\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/101/powerusage'
payload = {
    "startDate": "2024-01-01 00:00:00",
    "endDate": "2024-01-31 23:59:59"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/101/powerusage';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'startDate' => '2024-01-01 00:00:00',
            'endDate' => '2024-01-31 23:59:59',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "AVG_TOTAL_USAGE": 10,
        "units": "Amps"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/powerusage

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 101

Body Parameters

startDate   string  optional    

The start date for the traffic range. Must be a valid date. Must be a valid date. Example: 2024-01-01 00:00:00

endDate   string  optional    

The end date for the traffic range. Must be a valid date. Must be a valid date. Example: 2024-01-31 23:59:59

Assign Metadata To Service

requires authentication

Assigns metadata for specified device associated with service.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/1/assign-metadata" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"slug\": \"ipmi.ip\",
    \"value\": \"192.168.56.180\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/1/assign-metadata'
payload = {
    "slug": "ipmi.ip",
    "value": "192.168.56.180"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/1/assign-metadata';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'slug' => 'ipmi.ip',
            'value' => '192.168.56.180',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/assign-metadata

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 1

Body Parameters

slug   string     

The slug of the item metadata field. Must match an existing stored value. Example: ipmi.ip

value   string     

The value for the item metadata field. Example: 192.168.56.180

Perform Power Action

requires authentication

Executes a power-related action on a device assigned to the given service. This includes booting, rebooting, or shutting down the device.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/123/power/action" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"action\": \"boot\",
    \"device_id\": 1
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/power/action'
payload = {
    "action": "boot",
    "device_id": 1
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/power/action';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'action' => 'boot',
            'device_id' => 1,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/power/action

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Body Parameters

action   string     

The power action to perform. One of: boot, reboot, shutdown. Example: boot

Must be one of:
  • boot
  • reboot
  • shutdown
device_id   integer  optional    

The ID of the device assigned to the colocation linked with the given service. Required only for colocation-type services when performing a power action on a specific device. Must reference a valid device associated with the colocation belonging to the service. Must match an existing stored value. Example: 1

Parts

List Service Parts

requires authentication

Returns a paginated list of parts related to a specific service.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/123/parts?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/parts'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/parts';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 2103,
            "label": "architecto",
            "type": "inventore"
        },
        {
            "id": 2104,
            "label": "placeat",
            "type": "non"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/client/services/{id}/parts?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/client/services/{id}/parts",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/parts

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, label, type. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, label, type. Example: id

Power Ports

List Service Power Ports

requires authentication

Returns a paginated list of power ports related to a specific service.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/123/power-ports?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/power-ports'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/power-ports';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 3274,
            "port_number": 47,
            "port_label": "autem",
            "user_label": "quia",
            "outlet_state": "Outlet Off",
            "connected_item": null,
            "connected_port": null,
            "power_usage": 92,
            "power_usage_units": "Amps",
            "power_usage_value": 92,
            "power_usage_unit": "amps",
            "power_usage_label": "92 Amps"
        },
        {
            "id": 3275,
            "port_number": 48,
            "port_label": "qui",
            "user_label": "et",
            "outlet_state": "Outlet On",
            "connected_item": null,
            "connected_port": null,
            "power_usage": 98,
            "power_usage_units": "Amps",
            "power_usage_value": 98,
            "power_usage_unit": "amps",
            "power_usage_label": "98 Amps"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/client/services/{id}/power-ports?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/client/services/{id}/power-ports",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/power-ports

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, port_number, port_label, user_label, power_usage, outlet_state. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, port_number, port_label, user_label, power_usage, outlet_state. Example: id

Perform action on a specific Power Port

requires authentication

Executes an outlet action (outletOn, outletOff, outletReboot) for a given port.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/123/power-ports/action" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"port_id\": 45,
    \"action\": \"outletOff\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/power-ports/action'
payload = {
    "port_id": 45,
    "action": "outletOff"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/power-ports/action';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'port_id' => 45,
            'action' => 'outletOff',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 3276,
        "port_number": 13,
        "port_label": "eos",
        "user_label": "sunt",
        "outlet_state": "Outlet Off",
        "connected_item": null,
        "connected_port": null,
        "power_usage": 87,
        "power_usage_units": "Amps",
        "power_usage_value": 87,
        "power_usage_unit": "amps",
        "power_usage_label": "87 Amps"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/power-ports/action

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Body Parameters

port_id   integer     

The ID of the power port on which to perform the action. Example: 45

action   string     

The outlet action to perform. Must be one of: outletOn, outletOff, outletReboot. Example: outletOff

Must be one of:
  • outletOn
  • outletOff
  • outletReboot

Ports

List Service Ports

requires authentication

Returns a paginated list of ports related to a specific service.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/123/ports?with_traffic=1&per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/ports'
params = {
  'with_traffic': '1',
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/ports';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'with_traffic' => '1',
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 9700,
            "name": null,
            "port_number": 47,
            "port_label": "ut",
            "user_label": "eos",
            "description": "Velit autem aut modi.",
            "if_type": "sipSig",
            "adminstate": "down",
            "opstate": "down",
            "connected_item": null,
            "connected_port": null,
            "connection": "Unknown",
            "speed": "10 kbps"
        },
        {
            "id": 9701,
            "name": null,
            "port_number": 29,
            "port_label": "amet",
            "user_label": "similique",
            "description": "Consequatur adipisci aliquam nemo qui facilis eum a.",
            "if_type": "fddi",
            "adminstate": "down",
            "opstate": "down",
            "connected_item": null,
            "connected_port": null,
            "connection": "Unknown",
            "speed": "100 bps"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/client/services/{id}/ports?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/client/services/{id}/ports",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/ports

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Query Parameters

with_traffic   boolean  optional    

Include traffic statistics (last 1 hour, last 1 day, last 1 month) for each port. Default: false. Example: true

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, port_number, port_label, user_label, description, if_type, adminstate, opstate, speed. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, port_number, port_label, user_label, description, if_type, adminstate, opstate. Example: id

Sensors

List Sensors

requires authentication

Returns a paginated list of sensors associated with the service.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/1/sensors?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/1/sensors'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/1/sensors';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 2667,
            "item_id": 2110,
            "name": "natus",
            "class": "Fans",
            "type": "Power",
            "unit": "Amps",
            "index": "Power",
            "reading": 187,
            "last_polled": "0000-00-00 00:00:00",
            "configuration": [],
            "created_at": "2026-09-04 09:46:44",
            "updated_at": "2026-09-04 09:46:44"
        },
        {
            "id": 2668,
            "item_id": 2111,
            "name": "sint",
            "class": "Fans",
            "type": "Power",
            "unit": "Percent",
            "index": "Power",
            "reading": 869,
            "last_polled": "0000-00-00 00:00:00",
            "configuration": [],
            "created_at": "2026-09-04 09:46:46",
            "updated_at": "2026-09-04 09:46:46"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/client/services/{id}/sensors?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/client/services/{id}/sensors",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/sensors

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 1

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, item_id, name, class, type. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, item_id, name, class, type. Example: id

Show sensor

requires authentication

Display detailed information about a single sensor associated with the service by its ID.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/1/sensors/11" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/1/sensors/11'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/1/sensors/11';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 2669,
        "item_id": 2112,
        "name": "officia",
        "class": "Power Supply",
        "type": "Power",
        "unit": "Voltages",
        "index": "Power",
        "reading": 211,
        "last_polled": "0000-00-00 00:00:00",
        "configuration": [],
        "created_at": "2026-09-04 09:46:49",
        "updated_at": "2026-09-04 09:46:49"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/sensors/{sensorId}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 1

sensorId   integer     

The ID of the sensor. Example: 11

Graphs

Export Graph

requires authentication

Exports a graph data for a given target

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/graphs/42/export" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"AggregateTraffic\",
    \"target\": \"service\",
    \"start\": \"2025-04-01 00:00:00\",
    \"end\": \"2025-04-30 23:59:59\",
    \"raw\": false
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/graphs/42/export'
payload = {
    "type": "AggregateTraffic",
    "target": "service",
    "start": "2025-04-01 00:00:00",
    "end": "2025-04-30 23:59:59",
    "raw": false
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/graphs/42/export';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'type' => 'AggregateTraffic',
            'target' => 'service',
            'start' => '2025-04-01 00:00:00',
            'end' => '2025-04-30 23:59:59',
            'raw' => false,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "datasets": [
            {
                "data": [
                    "0.00186",
                    "0.00000",
                    "0.00231",
                    "0.00231",
                    "0.00228",
                    "0.00229",
                    "0.00006",
                    "0.00219",
                    "0.00245",
                    "0.00336",
                    "0.00337",
                    "0.00191",
                    "0.00000"
                ],
                "dataset_name": "inboundtotal"
            },
            {
                "data": [
                    "0.00045",
                    "0.00046",
                    "0.00321",
                    "0.00321",
                    "0.00000",
                    "0.00232",
                    "0.00198",
                    "0.00193",
                    "0.00036",
                    "0.00036",
                    "0.00145",
                    "0.00286",
                    "0.00000"
                ],
                "dataset_name": "outboundtotal"
            },
            {
                "data": [
                    "0.00232",
                    "0.00046",
                    "0.00552",
                    "0.00552",
                    "0.00228",
                    "0.00461",
                    "0.00204",
                    "0.00412",
                    "0.00281",
                    "0.00372",
                    "0.00482",
                    "0.00478",
                    "0.00000"
                ],
                "dataset_name": "totalboundbits"
            },
            {
                "data": [
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336",
                    "0.00336"
                ],
                "dataset_name": "95_percentile"
            }
        ],
        "labels": [
            "2025-10-21 13:35:00",
            "2025-10-21 13:40:00",
            "2025-10-21 13:45:00",
            "2025-10-21 13:50:00",
            "2025-10-21 13:55:00",
            "2025-10-21 14:00:00",
            "2025-10-21 14:05:00",
            "2025-10-21 14:10:00",
            "2025-10-21 14:15:00",
            "2025-10-21 14:20:00",
            "2025-10-21 14:25:00",
            "2025-10-21 14:30:00",
            "2025-10-21 14:35:00"
        ]
    },
    "legend": {
        "header": [
            "Current",
            "Average",
            "Maximum",
            "95th %"
        ],
        "rows": [
            {
                "label": "In",
                "color": "#62C45E",
                "values": [
                    632798.1868925721,
                    1372582.1214573288,
                    2053141.22367529,
                    2053141.22367529
                ]
            },
            {
                "label": "Out",
                "color": "#2BA7FF",
                "values": [
                    639398.799042107,
                    1396441.8722763401,
                    1919831.1749942221,
                    1919831.1749942221
                ]
            }
        ],
        "format": "bits",
        "footer": "Total 670.81 GB  (In 332.34 GB  Out 338.47 GB)"
    },
    "units": {
        "traffic": "Mbps",
        "power_usage": "Amps"
    },
    "precision": {
        "traffic": "2"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/graphs/{id}/export

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the target. Example: 42

Body Parameters

type   string     

The type of graph to export, depending on the target. Example: AggregateTraffic

Must be one of:
  • AggregateTraffic
  • Load
  • OutletPowerUsage
  • Ping
  • PowerUsage
  • Sensor
  • ServerPowerUsage
  • Status
target   string     

The type of target to graph (e.g., service, itempowerport, itemsensor). Example: service

Must be one of:
  • service
  • itemPowerPort
  • itemSensor
start   string  optional    

Start datetime for the graph range in format Y-m-d H:i:s. Must be a valid date in the format Y-m-d H:i:s. Example: 2025-04-01 00:00:00

end   string  optional    

End datetime for the graph range in format Y-m-d H:i:s. Must be after or equal to start. Must be a valid date in the format Y-m-d H:i:s. Must be a date after or equal to start. Example: 2025-04-30 23:59:59

raw   boolean  optional    

Whether to return raw graph data. Example: false

OS Installation

List ISO Images

requires authentication

Returns a paginated list of ISO images available to the authenticated client.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/os/isoimages?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/os/isoimages'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/os/isoimages';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 146,
            "name": "soluta-iso",
            "iso_url": "http://www.marquardt.com/laudantium-voluptates-ea-distinctio-illum-non-recusandae.html",
            "status": 1,
            "download": {
                "status": "waiting",
                "message": "Waiting for ISO image download to start..."
            },
            "created_at": "2026-09-04 09:49:53",
            "updated_at": "2026-09-04 09:49:53"
        },
        {
            "id": 147,
            "name": "repellendus-iso",
            "iso_url": "http://halvorson.biz/explicabo-dicta-sequi-dolore-et-culpa",
            "status": 1,
            "download": {
                "status": "waiting",
                "message": "Waiting for ISO image download to start..."
            },
            "created_at": "2026-09-04 09:49:53",
            "updated_at": "2026-09-04 09:49:53"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/client/os/isoimages?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/client/os/isoimages",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/os/isoimages

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, iso_url, status. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, iso_url, status. Example: id

Create ISO Image

requires authentication

Creates a new ISO image for the authenticated client.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/os/isoimages" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Ubuntu Server ISO\",
    \"iso_url\": \"https:\\/\\/example.com\\/images\\/ubuntu.iso\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/os/isoimages'
payload = {
    "name": "Ubuntu Server ISO",
    "iso_url": "https:\/\/example.com\/images\/ubuntu.iso"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/os/isoimages';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Ubuntu Server ISO',
            'iso_url' => 'https://example.com/images/ubuntu.iso',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 148,
        "name": "eum-iso",
        "iso_url": "http://www.walsh.biz/cum-et-veritatis-voluptatem-quisquam-dolorem-commodi-non-odit.html",
        "status": 1,
        "download": {
            "status": "waiting",
            "message": "Waiting for ISO image download to start..."
        },
        "created_at": "2026-09-04 09:49:53",
        "updated_at": "2026-09-04 09:49:53"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/os/isoimages

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The display name for the ISO image. Must not be greater than 255 characters. Example: Ubuntu Server ISO

iso_url   string     

Direct URL to the ISO file pointing to a valid .iso resource. Presigned URLs (e.g. AWS S3, Backblaze B2) and HTTP basic authentication URLs are supported. Must be a valid URL. Example: https://example.com/images/ubuntu.iso

Update ISO Image

requires authentication

Updates the name of an existing ISO image for the authenticated client.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/client/os/isoimages/3" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Updated ISO Name\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/os/isoimages/3'
payload = {
    "name": "Updated ISO Name"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/os/isoimages/3';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'name' => 'Updated ISO Name',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 149,
        "name": "excepturi-iso",
        "iso_url": "https://pollich.org/qui-id-nesciunt-dolores-est.html",
        "status": 1,
        "download": {
            "status": "waiting",
            "message": "Waiting for ISO image download to start..."
        },
        "created_at": "2026-09-04 09:49:53",
        "updated_at": "2026-09-04 09:49:53"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

PUT api/v3/client/os/isoimages/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the ISO image to update. Example: 3

Body Parameters

name   string     

The new name for the ISO image. Must not be greater than 255 characters. Example: Updated ISO Name

Delete ISO Image

requires authentication

Deletes a specific ISO image belonging to the authenticated client.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/client/os/isoimages/3" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/os/isoimages/3'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/os/isoimages/3';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

DELETE api/v3/client/os/isoimages/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the ISO image to delete. Example: 3

List OS Templates

requires authentication

Returns a paginated list of OS templates available for the given service.

Optionally, you can include a list of addons (based on template tags) by using the with_addons query parameter.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/123/os/templates?with_addons=1&per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/os/templates'
params = {
  'with_addons': '1',
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/os/templates';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'with_addons' => '1',
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 312,
            "template_id": 312,
            "name": "est",
            "tags": [
                "distinctio",
                "earum",
                "rem",
                "ut",
                "natus",
                "et"
            ],
            "architecture": "arm",
            "cache_folder": "velit",
            "mirror": "http://www.zulauf.biz/corporis-eum-dolor-cupiditate-laudantium-corporis-nihil-sint",
            "edition": "quaerat",
            "iso_url": "http://bogan.com/autem-quod-neque-et-quaerat-sed",
            "tftp_url": "http://www.abernathy.com/",
            "license": "et",
            "gpxe": "Ducimus voluptatem quod at maiores esse nisi.",
            "disk_layout": "Aut ea dolorem explicabo neque deleniti adipisci et.",
            "packages": "Ut sunt ducimus possimus omnis.",
            "post_installation": "Totam voluptatem occaecati quas libero ut repellat.",
            "first_boot": "Quia est perferendis labore tempore in qui maxime.",
            "extras": "Ut minima aliquid consequuntur inventore pariatur.",
            "timezone": "America/Bahia_Banderas",
            "language": "os",
            "family": "",
            "is_windows": false,
            "is_rescue": false
        },
        {
            "id": 313,
            "template_id": 313,
            "name": "laborum",
            "tags": [
                "nihil",
                "cupiditate",
                "neque",
                "non",
                "necessitatibus"
            ],
            "architecture": "x86",
            "cache_folder": "possimus",
            "mirror": "http://www.kreiger.com/",
            "edition": "in",
            "iso_url": "http://russel.com/",
            "tftp_url": "http://keebler.biz/omnis-eos-doloremque-voluptatem-sit-dolor-officia",
            "license": "animi",
            "gpxe": "Dolores reprehenderit fugiat aut error adipisci aut rem.",
            "disk_layout": "Voluptatibus ea voluptate ut pariatur provident.",
            "packages": "Cumque velit sit nobis iure.",
            "post_installation": "Facere impedit quia atque voluptas excepturi dolorum.",
            "first_boot": "Fugit doloribus vel qui voluptas delectus eligendi tenetur dolorem.",
            "extras": "Est ab deleniti quia in accusamus dolores.",
            "timezone": "America/Argentina/Buenos_Aires",
            "language": "gd",
            "family": "",
            "is_windows": false,
            "is_rescue": false
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/client/services/{id}/os/templates?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/client/services/{id}/os/templates",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/os/templates

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Query Parameters

with_addons   boolean  optional    

Optional. If set to true, includes a list of addons for each template. Example: true

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, edition, architecture, family. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, edition, architecture, tags, family. Example: id

List OS Addons

requires authentication

Returns a paginated list of OS addons available for the given service.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/123/os/addons?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/os/addons'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/os/addons';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 128,
            "name": "Miss Queenie Willms",
            "description": "Et voluptates et quam accusamus.",
            "type": "postinstall",
            "tag": "enim et",
            "tags": [
                "enim",
                "et"
            ],
            "data": "Totam repellendus rem nemo quisquam est sit vel."
        },
        {
            "id": 129,
            "name": "Vicente Hegmann",
            "description": "Voluptatem dolor et sunt aut molestiae occaecati.",
            "type": "firstboot",
            "tag": "animi nisi",
            "tags": [
                "animi",
                "nisi"
            ],
            "data": "Et illo sed omnis in perferendis."
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/client/services/{id}/os/addons?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/client/services/{id}/os/addons",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/os/addons

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, name, type. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, name, type, tag. Example: id

Install OS on Device

requires authentication

Initiates OS installation on a device assigned to the given service

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/123/os/install" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"template\": 12,
    \"hostname\": \"server01.example.com\",
    \"username\": \"admin\",
    \"password\": \"secret123\",
    \"root_password\": \"rootsecret\",
    \"disk_addon\": 1,
    \"extras\": [
        12
    ],
    \"ssh_keys\": [
        15
    ]
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/os/install'
payload = {
    "template": 12,
    "hostname": "server01.example.com",
    "username": "admin",
    "password": "secret123",
    "root_password": "rootsecret",
    "disk_addon": 1,
    "extras": [
        12
    ],
    "ssh_keys": [
        15
    ]
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/os/install';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'template' => 12,
            'hostname' => 'server01.example.com',
            'username' => 'admin',
            'password' => 'secret123',
            'root_password' => 'rootsecret',
            'disk_addon' => 1,
            'extras' => [
                12,
            ],
            'ssh_keys' => [
                15,
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 243,
        "device_id": 2153,
        "template_id": 314,
        "message": "Praesentium ducimus molestiae minima natus aspernatur assumenda.",
        "log": "",
        "created_at": "2026-09-04 09:49:53",
        "updated_at": "2026-09-04 09:49:53"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/os/install

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Body Parameters

template   integer     

ID or identifier of the OS template to install. Example: 12

hostname   string  optional    

Optional hostname for the new system. Example: server01.example.com

username   string     

Username for the new system. Example: admin

password   string     

Password for the user account. Example: secret123

root_password   string  optional    

Root password for the system (optional). Example: rootsecret

disk_addon   integer  optional    

Optional ID of an additional disk to use during installation. Example: 1

extras   integer[]  optional    
ssh_keys   integer[]  optional    

Cancel OS Installation

requires authentication

Attempts to cancel the operating system installation process

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/123/os/cancel" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/os/cancel'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/os/cancel';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/os/cancel

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

OS Installation Information

requires authentication

Returns details about the current OS installation process

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/123/os/install/information" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/os/install/information'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/os/install/information';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 244,
        "device_id": 2154,
        "template_id": 315,
        "message": "Explicabo sit est provident eaque natus architecto.",
        "log": "",
        "created_at": "2026-09-04 09:49:54",
        "updated_at": "2026-09-04 09:49:54"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/os/install/information

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Enable Rescue Mode

requires authentication

Initiates rescue mode for the device assigned to the given service

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/123/os/rescue/enable" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/os/rescue/enable'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/os/rescue/enable';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 245,
        "device_id": 2155,
        "template_id": 316,
        "message": "Nisi a cupiditate harum in.",
        "log": "",
        "created_at": "2026-09-04 09:49:54",
        "updated_at": "2026-09-04 09:49:54"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/os/rescue/enable

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Rescue Mode Status

requires authentication

Returns the current rescue mode status

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/123/os/rescue/status" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/os/rescue/status'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/os/rescue/status';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "inRescueMode": false
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/os/rescue/status

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Lock OS Installation

requires authentication

Added in 1.25.1
Locks the OS installation process for this device, preventing any OS reinstallation.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/client/services/123/os/lock" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/os/lock'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/os/lock';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

PUT api/v3/client/services/{id}/os/lock

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Unlock OS Installation

requires authentication

Added in 1.25.1
Unlocks the OS installation process for this device.

Example request:
curl --request PUT \
    "https://your-easydcim.com/api/v3/client/services/123/os/unlock" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/os/unlock'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('PUT', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/os/unlock';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

PUT api/v3/client/services/{id}/os/unlock

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

IPMI

BMC Cold Reset

requires authentication

Sends a cold reset command to the BMC (Baseboard Management Controller) of the device associated with the given service. This action forces a full reboot of the BMC, which may temporarily interrupt device management features.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/123/ipmi/bmc-reset-cold" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/ipmi/bmc-reset-cold'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/ipmi/bmc-reset-cold';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/ipmi/bmc-reset-cold

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Start noVNC Session

requires authentication

Initiates a remote IPMI proxy session to the BMC of the device associated with the given service. The proxy allows web-based access to the BMC for remote management tasks like KVM, virtual media, or BIOS configuration.

If a session cannot be established, an error with logs may be returned for debugging purposes.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/123/ipmi/novnc-connect" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/ipmi/novnc-connect'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/ipmi/novnc-connect';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "id": 178,
        "device_id": 2163,
        "url": "https://192.168.203.150/client/console/10417/Maajq5dC/132286e552e27c6165d1b2d54a8e3b74fcb210ee",
        "status": 1,
        "message": "Minima qui esse fugit sapiente."
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/ipmi/novnc-connect

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Show IPMI console session information

Retrieves session-related data for an active IPMI proxy session

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/ipmi/console/information" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"password\": \"3bf5By\",
    \"port\": 5901,
    \"token\": \"1784360e52abb6d874b92747ea9df6fabde33a20\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/ipmi/console/information'
payload = {
    "password": "3bf5By",
    "port": 5901,
    "token": "1784360e52abb6d874b92747ea9df6fabde33a20"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/ipmi/console/information';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'password' => '3bf5By',
            'port' => 5901,
            'token' => '1784360e52abb6d874b92747ea9df6fabde33a20',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "ipmi_username": "ipmi_username",
        "ipmi_password": "ipmi_password",
        "disable_login_buttons": "0"
    }
}
 

Request   

POST api/v3/client/ipmi/console/information

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

password   string     

The unique session password used to identify the IPMI proxy session. Example: 3bf5By

port   integer     

The port used for the proxy session. Example: 5901

token   string     

The unique session token used to identify the IPMI proxy session. Example: 1784360e52abb6d874b92747ea9df6fabde33a20

Update IPMI session activity

Updates the updated_at timestamp of an active IPMI proxy session.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/ipmi/console/activity" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"password\": \"3bf5By\",
    \"port\": 5901,
    \"token\": \"1784360e52abb6d874b92747ea9df6fabde33a20\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/ipmi/console/activity'
payload = {
    "password": "3bf5By",
    "port": 5901,
    "token": "1784360e52abb6d874b92747ea9df6fabde33a20"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/ipmi/console/activity';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'password' => '3bf5By',
            'port' => 5901,
            'token' => '1784360e52abb6d874b92747ea9df6fabde33a20',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "2025-10-21 15:06:20",
    "data": null
}
 

Request   

POST api/v3/client/ipmi/console/activity

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

password   string     

The unique session password used to identify the IPMI proxy session. Example: 3bf5By

port   integer     

The port used for the proxy session. Example: 5901

token   string     

The unique session token used to identify the IPMI proxy session. Example: 1784360e52abb6d874b92747ea9df6fabde33a20

Close IPMI session

Terminates the IPMI proxy session. This is typically used when the user exits the remote console.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/ipmi/console/close" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"password\": \"3bf5By\",
    \"port\": 5901,
    \"token\": \"1784360e52abb6d874b92747ea9df6fabde33a20\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/ipmi/console/close'
payload = {
    "password": "3bf5By",
    "port": 5901,
    "token": "1784360e52abb6d874b92747ea9df6fabde33a20"
}
headers = {
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/ipmi/console/close';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'password' => '3bf5By',
            'port' => 5901,
            'token' => '1784360e52abb6d874b92747ea9df6fabde33a20',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": null
}
 

Request   

POST api/v3/client/ipmi/console/close

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

password   string     

The unique session password used to identify the IPMI proxy session. Example: 3bf5By

port   integer     

The port used for the proxy session. Example: 5901

token   string     

The unique session token used to identify the IPMI proxy session. Example: 1784360e52abb6d874b92747ea9df6fabde33a20

Two-Factor Authentication

Enable two-factor authentication

requires authentication

Initializes the selected 2FA module for the logged-in client and returns configuration data such as a QR code and secret needed to complete setup.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/two-factor/enable" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"module_name\": \"Totp\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/two-factor/enable'
payload = {
    "module_name": "Totp"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/two-factor/enable';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'module_name' => 'Totp',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "Two-factor authentication has been enabled successfully.",
    "data": {
        "qr_code": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANwAAADcAQMAAAAhlF3CAAAABlBMVEX///8AAABVwtN+AAAACXBIWXMAAA7EAAAOxAGVKw4bDDDCGUlEQVRYhe2YPW7DMAyFGXjw6CPoJvbFBMiAL5bcREfwqMEI+x6lxGmQWSzQaCgSfRpYPv5G5Hv+00mqug9ZLnqEsuxR9IYbvbrBKHLZU9bbnnTkPb6KjI4w4H7Qws9l0S2P9swZ0lpdA66SlssfgIL76Qij8tO7tb0h9YyBUmaR6YPYnaFFPOH55y0dOsN27L7M0yofTlcIa2ke9RTomTJebLn4wUGpYtYGJcCbIs19HhA5t9SqSRsnbfL6QaTgHYZa2AOsMt5PUT0gCiYNlYX39By+rqdvPSA+tDKud0GRorWjH0zZPAc9lXFu8p5iO0AzD7VytnLFRkdrWwp6wCFb4snMFKT7kIzMSDeYmHiIKHa7wheYB45TTweoCPaNpXPLJqos6LzqBxFb9oITibZgbwngAxP1HFgTUKkW+pBF9Klnf4gAu7KzceC2Co7pbchnxDvAx9xvL9TsDo6QkyRHOKtPmE04WG4qfjAy51axHQk1wZaT4dyR+kOU8dm6HadaZZRxWHKEdQOQ2lcYW6ovW6QPvFaTEWVqixJEfejpA20bmSetmxFeHOHlX+kNm6jwXLQixaqJwuUHbUfiGrDXjbb+BKB+0LZIMQHpSOsr8amnB2TER6sJnE0wuFFPb8jOC0NtkrRt6TU/PWCkofYCzYV9ZXSEth6ZqMJtKQj73mNwcYAt4qEi2hsGtzoZ/E6HrvB7vgfnBzwswUtTyEcKAAAAAElFTkSuQmCC",
        "secret_word": "DPVKWEKE6EOWOKWR"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/client/two-factor/enable

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

module_name   string     

The identifier of the 2FA module to enable. Currently supported: "Totp". Example: Totp

Must be one of:
  • Totp

Disable two-factor authentication

requires authentication

Validates the user's password and, if correct, disables 2FA and removes any stored configuration.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/two-factor/disable" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"password\": \"user_current_password\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/two-factor/disable'
payload = {
    "password": "user_current_password"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/two-factor/disable';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'password' => 'user_current_password',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "Two-factor authentication has been disabled successfully.",
    "data": null
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/client/two-factor/disable

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

password   string     

The current password of the user, required to disable two-factor authentication. Example: user_current_password

Store and verify 2FA configuration

requires authentication

Verifies the provided 2FA code and secret, and stores the configuration if verification succeeds. Also returns a backup code for account recovery.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/two-factor/store" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"module_name\": \"Totp\",
    \"configuration\": {
        \"code\": \"123456\",
        \"secret_word\": \"JBSWY3DPEHPK3PXP\"
    }
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/two-factor/store'
payload = {
    "module_name": "Totp",
    "configuration": {
        "code": "123456",
        "secret_word": "JBSWY3DPEHPK3PXP"
    }
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/two-factor/store';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'module_name' => 'Totp',
            'configuration' => [
                'code' => '123456',
                'secret_word' => 'JBSWY3DPEHPK3PXP',
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "backup_code": "Wsg4Q 1ieF9 Rw6ID DIBrb"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/client/two-factor/store

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

module_name   string     

The identifier of the 2FA module to configure. Currently supported: "Totp". Example: Totp

Must be one of:
  • Totp
configuration   object     

Key-value configuration specific to the selected 2FA module. For the "Totp" module, the array must contain the fields: "code" (current token) and "secret_word" (shared secret).

Validate the second-factor authentication code after login

requires authentication

Verifies the submitted 2FA code using the user's default 2FA module. On success, marks the session as 2FA-authenticated.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/two-factor/validate" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"configuration\": {
        \"code\": \"123456\"
    }
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/two-factor/validate'
payload = {
    "configuration": {
        "code": "123456"
    }
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/two-factor/validate';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'configuration' => [
                'code' => '123456',
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/client/two-factor/validate

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

configuration   object     

Container for second-factor verification data.

code   string     

The 2FA code generated by the authenticator app. Must be at least 4 characters. Must not be greater than 10 characters. Example: 123456

Log in using a backup 2FA code

requires authentication

Validates the backup code stored during 2FA setup and marks the session as verified.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/two-factor/backup-code" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"code\": \"MY-BACKUP-CODE-123\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/two-factor/backup-code'
payload = {
    "code": "MY-BACKUP-CODE-123"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/two-factor/backup-code';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'code' => 'MY-BACKUP-CODE-123',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": {
        "backup_code": "Wsg4Q 1ieF9 Rw6ID DIBrb"
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Unauthorized admin access only.|You do not have the appropriate rights for this action."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found."
}
 

Request   

POST api/v3/client/two-factor/backup-code

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

code   string     

The backup code defined during 2FA setup. Must be at least 6 characters. Must not be greater than 255 characters. Example: MY-BACKUP-CODE-123

IP Address Management

List of IP addresses

requires authentication

This endpoint returns a paginated collection of IP addresses associated with the specified service.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/123/ipaddresses?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=value" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/ipaddresses'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'value',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/ipaddresses';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'value',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 265,
            "item_id": 38,
            "device_label": "#38 web-prod-01 (PowerEdge R640)",
            "value": "200.94.209.231",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4",
            "gateway": "200.94.209.1",
            "mask": 24,
            "subnet_mask": "255.255.255.0",
            "cidr": "200.94.209.0/24",
            "subnet": {
                "id": 12,
                "pool": "200.94.209.0",
                "mask": 24,
                "gateway": "200.94.209.1",
                "subnet_mask": "255.255.255.0",
                "cidr": "200.94.209.0/24"
            },
            "vlan": {
                "id": 7,
                "name": "Production",
                "vlan_id": 100
            }
        },
        {
            "id": 307,
            "item_id": 44,
            "value": "146.224.170.224",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 314,
            "item_id": 45,
            "value": "139.235.236.138",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 328,
            "item_id": 47,
            "value": "207.243.68.21",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 335,
            "item_id": 48,
            "value": "46.236.68.242",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 342,
            "item_id": 49,
            "value": "166.73.24.58",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 356,
            "item_id": 51,
            "value": "160.24.83.37",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 363,
            "item_id": 52,
            "value": "80.24.122.22",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 370,
            "item_id": 53,
            "value": "174.251.45.79",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        },
        {
            "id": 377,
            "item_id": 54,
            "value": "155.150.252.1",
            "description": "",
            "type": "primary",
            "ip_type": "ipv4"
        }
    ],
    "links": {
        "first": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=1",
        "last": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=16",
        "prev": null,
        "next": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 16,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=2",
                "label": "2",
                "page": 2,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=3",
                "label": "3",
                "page": 3,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=4",
                "label": "4",
                "page": 4,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=5",
                "label": "5",
                "page": 5,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=6",
                "label": "6",
                "page": 6,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=7",
                "label": "7",
                "page": 7,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=8",
                "label": "8",
                "page": 8,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=9",
                "label": "9",
                "page": 9,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=10",
                "label": "10",
                "page": 10,
                "active": false
            },
            {
                "url": null,
                "label": "...",
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=15",
                "label": "15",
                "page": 15,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=16",
                "label": "16",
                "page": 16,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/admin/ipam/ips?page=2",
                "label": "Next &raquo;",
                "page": 2,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/admin/ipam/ips",
        "per_page": 10,
        "to": 10,
        "total": 151,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/ipaddresses

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, item_id, value, description, type, ip_type. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: value, description, type, ip_type. Example: value

Update IP address description

requires authentication

Updates the description of an IP address entity associated with the device assigned to the specified service.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/123/ipaddresses/456" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"description\": \"Primary IP for web server\",
    \"ip_address\": \"192.168.56.1\"
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/ipaddresses/456'
payload = {
    "description": "Primary IP for web server",
    "ip_address": "192.168.56.1"
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/ipaddresses/456';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'description' => 'Primary IP for web server',
            'ip_address' => '192.168.56.1',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/ipaddresses/{entityId}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

entityId   integer     

The ID of the IP address entity. Example: 456

Body Parameters

description   string  optional    

Description or label for the IP address. Example: Primary IP for web server

ip_address   string     

IP Address for which description will be updated. Example: 192.168.56.1

List of subnets

requires authentication

This endpoint returns a paginated collection of subnets associated with the specified service.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/123/subnets?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=pool" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/subnets'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'pool',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/subnets';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'pool',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 196,
            "subnet": "171.140.185.0/24",
            "pool": "171.140.185.0",
            "mask": 24,
            "gateway": null,
            "type": "ipv4"
        },
        {
            "id": 197,
            "subnet": "71.56.120.0/24",
            "pool": "71.56.120.0",
            "mask": 24,
            "gateway": null,
            "type": "ipv4"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/client/services/{id}/subnets?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/client/services/{id}/subnets",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/subnets

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, pool, mask, gateway, type. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: pool, gateway, type. Example: pool

DNS Management

List rDNS records

requires authentication

This endpoint returns a paginated list of reverse DNS (rDNS) entries associated with the device assigned to the specified service.

Example request:
curl --request GET \
    --get "https://your-easydcim.com/api/v3/client/services/123/rdns?per_page=10&page=1&sort_by=id&sort_dir=asc&search_term=active%2Cpending&search_op=like&search_fields=id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/rdns'
params = {
  'per_page': '10',
  'page': '1',
  'sort_by': 'id',
  'sort_dir': 'asc',
  'search_term': 'active,pending',
  'search_op': 'like',
  'search_fields': 'id',
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/rdns';
$response = $client->get(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'query' => [
            'per_page' => '10',
            'page' => '1',
            'sort_by' => 'id',
            'sort_dir' => 'asc',
            'search_term' => 'active,pending',
            'search_op' => 'like',
            'search_fields' => 'id',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success",
    "data": [
        {
            "id": 97,
            "device_id": 2170,
            "user_id": 9245,
            "server_id": 145,
            "ip": "81.82.169.94",
            "from": "wiegand.com",
            "name": "heidenreich.biz",
            "ttl": "3600",
            "created_at": "2026-09-04 09:50:01",
            "updated_at": "2026-09-04 09:50:01"
        },
        {
            "id": 98,
            "device_id": 2171,
            "user_id": 9253,
            "server_id": 146,
            "ip": "243.90.22.4",
            "from": "rogahn.net",
            "name": "stroman.biz",
            "ttl": "3600",
            "created_at": "2026-09-04 09:50:01",
            "updated_at": "2026-09-04 09:50:01"
        }
    ],
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "page": null,
                "active": false
            },
            {
                "url": "https://your-easydcim.com/api/v3/client/services/{id}/rdns?page=1",
                "label": "1",
                "page": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "page": null,
                "active": false
            }
        ],
        "path": "https://your-easydcim.com/api/v3/client/services/{id}/rdns",
        "per_page": 10,
        "to": 1,
        "total": 2,
        "sort_by": "",
        "sort_dir": null
    }
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

GET api/v3/client/services/{id}/rdns

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Query Parameters

per_page   integer  optional    

The number of items per page (min:1, max:100). Example: 10

page   integer  optional    

The page number of results to return. Example: 1

sort_by   string  optional    

The field to sort by. Allowed: id, device_id, user_id, server_id, ip, from, name, ttl, created_at. Example: id

sort_dir   string  optional    

The direction of sorting. Allowed values: asc, desc. Example: asc

search_term   string  optional    

Search value. For in/not_in provide comma-separated. For between provide two values comma-separated (from,to). Example: active,pending

search_op   string  optional    

How to apply search_term. Allowed: like (default), in, not_in, eq, neq, gt, gte, lt, lte, between. Example: like

search_fields   array|string  optional    

Optional. Restrict search to specific fields. Allowed: id, device_id, user_id, server_id, ip, from, name, created_at. Example: id

Create rDNS record

requires authentication

Stores a new reverse DNS (rDNS) entry for the device assigned to the given service.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/123/rdns" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"ip\": \"192.168.1.1\",
    \"rdata\": \"example.mydomain.com\",
    \"ttl\": 3600
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/rdns'
payload = {
    "ip": "192.168.1.1",
    "rdata": "example.mydomain.com",
    "ttl": 3600
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/rdns';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'ip' => '192.168.1.1',
            'rdata' => 'example.mydomain.com',
            'ttl' => 3600,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/rdns

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

Body Parameters

ip   string     

The IP address to associate with the reverse DNS record. Must be a valid IP address. Example: 192.168.1.1

rdata   string     

The domain name (PTR) that should resolve for the IP. Example: example.mydomain.com

ttl   integer  optional    

Optional TTL (Time To Live) value for the record in seconds. Must be at least 60. Example: 3600

Update rDNS record

requires authentication

Updates an existing reverse DNS (rDNS) record.

Example request:
curl --request POST \
    "https://your-easydcim.com/api/v3/client/services/123/rdns/456" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"rdata\": \"updated.example.net\",
    \"ttl\": 3600
}"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/rdns/456'
payload = {
    "rdata": "updated.example.net",
    "ttl": 3600
}
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/rdns/456';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'rdata' => 'updated.example.net',
            'ttl' => 3600,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

POST api/v3/client/services/{id}/rdns/{recordId}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

recordId   integer     

The ID of the rDNS record. Example: 456

Body Parameters

rdata   string     

The domain name (PTR) to update for this record. Example: updated.example.net

ttl   integer  optional    

Optional TTL (Time To Live) value in seconds. Must be at least 60. Example: 3600

Delete rDNS record

requires authentication

Deletes a reverse DNS (rDNS) record that belongs to the device assigned to the specified service.

Example request:
curl --request DELETE \
    "https://your-easydcim.com/api/v3/client/services/123/rdns/456" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
import requests
import json

url = 'https://your-easydcim.com/api/v3/client/services/123/rdns/456'
headers = {
  'Authorization': 'Bearer {YOUR_AUTH_KEY}',
  'Content-Type': 'application/json',
  'Accept': 'application/json'
}

response = requests.request('DELETE', url, headers=headers)
response.json()
$client = new \GuzzleHttp\Client();
$url = 'https://your-easydcim.com/api/v3/client/services/123/rdns/456';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):


{
    "success": true,
    "status": "success",
    "message": "success"
}
 

Example response (401, Unauthorized):


{
    "success": false,
    "status": "error",
    "message": "Missing bearer token.|Invalid bearer token|Token not provided."
}
 

Example response (403, Forbidden):


{
    "success": false,
    "status": "error",
    "message": "Your account is inactive or banned.|Your access token does not have permission to impersonate other users.|Only admin users are allowed to impersonate other users."
}
 

Example response (404, Not Found):


{
    "success": false,
    "status": "error",
    "message": "Requested resource not found.|Impersonated user not found.|Service not found, inactive, or does not belong to you.|The requested entity does not exist or does not belong to you."
}
 

Request   

DELETE api/v3/client/services/{id}/rdns/{recordId}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the service. Example: 123

recordId   integer     

The ID of the rDNS record. Example: 456