# win.tomo-x.pushat.pushNotify

> Published by [tomo-x.win](https://lexicon.garden/identity/did:plc:qcwvyds5tixmcwkwrg3hxgxd)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:qcwvyds5tixmcwkwrg3hxgxd/win.tomo-x.pushat.pushNotify)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qcwvyds5tixmcwkwrg3hxgxd/win.tomo-x.pushat.pushNotify/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qcwvyds5tixmcwkwrg3hxgxd/win.tomo-x.pushat.pushNotify/examples)

## Definitions

### `win.tomo-x.pushat.pushNotify`

**Type**: `procedure`

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `body` | `ref` → `win.tomo-x.pushat.defs#notifyBody` | Yes |  |
| `target` | `string` (did) | Yes | The DID of the target user to whom the notification will be sent. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|

#### Errors

- **ServiceNotAllowedError**
- **DeviceNotFoundError**

## Raw Schema

```json
{
  "id": "win.tomo-x.pushat.pushNotify",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "body",
            "target"
          ],
          "properties": {
            "body": {
              "ref": "win.tomo-x.pushat.defs#notifyBody",
              "type": "ref"
            },
            "target": {
              "type": "string",
              "format": "did",
              "description": "The DID of the target user to whom the notification will be sent."
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "ServiceNotAllowedError"
        },
        {
          "name": "DeviceNotFoundError"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "properties": {}
        },
        "encoding": "application/json"
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
