# place.stream.live.denyTeleport

> Published by [did:web:longos.iameli.link](https://lexicon.garden/identity/did:web:longos.iameli.link)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.live.denyTeleport)
- [Documentation](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.live.denyTeleport/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.live.denyTeleport/examples)

## Definitions

### `place.stream.live.denyTeleport`

**Type**: `procedure`

Deny an incoming teleport request.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes | The URI of the teleport record to deny. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `success` | `boolean` | Yes | 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.

## Raw Schema

```json
{
  "id": "place.stream.live.denyTeleport",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
