> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# receive

> Accept an inbound message without sending a reply.

Accept the inbound message without sending a reply. `receive` is a no-op step — it acknowledges the
inbound message and does nothing else.

## **Properties**

An empty object. `receive` takes no parameters.

## **Example**

```yaml
version: 1.0.0
sections:
  main:
    - receive: {}
```

```json
{
  "version": "1.0.0",
  "sections": {
    "main": [
      {
        "receive": {}
      }
    ]
  }
}
```