v1
latestOpenAPI 3.0.02026-08-0650184174.6 KBTMS Checks
Creates a new transaction check.
post/tms/check
Request body
Example request
{
"contact_ids": [
12345678,
19876654
],
"custom_message": "My custom message",
"interval": 20,
"name": "My awesome check",
"region": "us-west",
"severity_level": "low",
"steps": [
{
"args": {
"url": "http://www.google.com"
},
"fn": "go_to"
}
],
"team_ids": [
12345678,
135790
],
"integration_ids": [
1234,
1359
],
"metadata": {
"width": 1950,
"height": 1080,
"authentications": {
"httpAuthentications": [
{
"credentials": {
"password": "secret",
"userName": "admin"
},
"host": "https://example.com/auth"
}
]
}
},
"tags": [
"tag1",
"tag2"
]
}Response
Simplified description of an added check.
Example response
{
"id": 3,
"name": "My awesome check"
}