Skip to main content

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 a user by ID. Unblocking a user who is not blocked succeeds without error.

Examples

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

Responses

{
  "blocked": false
}
Unblocking a user who is not blocked succeeds and includes a message:
{
  "blocked": false,
  "message": "User is not blocked."
}