Skip to content
POST
/admin/check-connectivy
curl --request POST \
--url https://example.com/admin/check-connectivy \
--header 'Content-Type: application/json' \
--header 'X-Tenzir-AdminKey: <X-Tenzir-AdminKey>' \
--data '[ { "tenant_id": "example", "node_id": "example" } ]'
Media type application/json
Nodes
Array<object>
NodeIdentifier
object
tenant_id
required
Tenant Id
string
node_id
required
Node Id
string
Example generated
[
{
"tenant_id": "example",
"node_id": "example"
}
]

Successful Response

Media type application/json
Response Check Connectivity Endpoint Admin Check Connectivy Post
Array<boolean>
Example generated
[
true
]

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}