Request URL

POST  https://api.dotcom-monitor.com/config_api_v1/tag/{tag_id}

Path Parameters

Field Type Required Description
tag_id

string

true

The unique id of the tag you need to edit.

Header Parameters

Content-Type: application/json
POST Content example: Change tag color
{
"Name": "Important",
"Color": "#ff09c4ff"
}

Required Body Parameters

Field Type Required/Optional Description

Name

string

required

Tag name.

Color

string

required

Tag color. Color format:   #aabbccdd

Where:

aa = red
bb = green
cc = blue
dd = opacity

Success Response

Example response:
{
    "Success": true,
    "Result": "Tag 422 has been updated"
}