Deny an incoming teleport request.
Input
Encoding
application/jsonuri
stringat-uri
Required
The URI of the teleport record to deny.
Output
Encoding
application/jsonsuccess
boolean
Required
Whether the teleport was successfully denied.
Errors
TeleportNotFound
The specified teleport was not found. Unauthorized
The authenticated user is not the target of this teleport. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "The URI of the teleport record to deny."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "TeleportNotFound",
"description": "The specified teleport was not found."
},
{
"name": "Unauthorized",
"description": "The authenticated user is not the target of this teleport."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean",
"description": "Whether the teleport was successfully denied."
}
}
},
"encoding": "application/json"
},
"parameters": null,
"description": "Deny an incoming teleport request."
}