Update 3rd-party Monitor in Board

PATCH https://isdown.app/api/v2/boards/{board_id}/services/{service_urlname}

Path Parameters

Name
Type
Description

service_urlname*

String

Parameterize name for the service. Get the service_name from the url of a service. E.g., https://isdown.app/services/digitalocean it's digitalocean.

board_id*

String

Board Id. Get the identifier for the board in the settings screen.

Body Parameters

Name
Type
Description

tags

Array<String>

Optional. Tags to attach to this service on this board. If no tags param is sent nothing happens. If you need to reset it you need to send an empty array.

Headers

Name
Type
Description

Authorization*

String

Bearer API_KEY

{
    "data": {
        "id": "383",
        "type": "service",
        "attributes": {
            "name": "unpkg",
            "status": "ok",
            "status_page_url": null,
            "severity_from_provider": false,
            "isdown_url": "https://isdown.app/status/unpkg"
        },
        "tags": [ "tag1", "tag2" ]
    }
}

Last updated