For the complete documentation index, see llms.txt. This page is also available as Markdown.

Remove 3rd-party Monitor from Board

DELETE 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.

Headers

Name
Type
Description

Authorization*

String

Bearer API_KEY

{
    "message": "Service removed from board"
}
{
    "errors": [
        {
            "status": 401,
            "title": "Unauthorized access",
            "detail": "You are not authorized to access this resource"
        }
    ]
}
{
    "errors": [
        {
            "status": 404,
            "title": "Resource not found",
            "detail": "The resource you are looking for does not exist"
        }
    ]
}

Last updated