> ## Documentation Index
> Fetch the complete documentation index at: https://docs.snipp.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# Unblock User

Unblock a user by ID. Unblocking a user who is not blocked succeeds without error.

## Examples

```bash theme={null}
curl -X POST "https://relay.snipp.gg/unblock" \
  -H "relay-key: YOUR_RELAY_KEY" \
  -H "Content-Type: application/json" \
  -d '{"targetId": "123456789012345678"}'
```

## Responses

```json theme={null}
{
  "blocked": false
}
```

Unblocking a user who is not blocked succeeds and includes a `message`:

```json theme={null}
{
  "blocked": false,
  "message": "User is not blocked."
}
```
