PATCH /user/get/@me/settings/webhook
application/json

Body Required

  • enabled boolean
  • color string | null
  • description string | null
  • title string | null
  • titleUrl string | null
  • timestamp boolean
  • authorName string | null

Responses

  • 200 application/json

    Standard API response

    Hide response attributes Show response attributes object
    • error boolean
    • timestamp string(date-time)
    • uniqueId string | null
PATCH /user/get/@me/settings/webhook
curl \
 --request PATCH 'https://call.xap3y.space/v1/user/get/@me/settings/webhook' \
 --header "X-API-Key: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"enabled":true,"color":"string","description":"string","title":"string","titleUrl":"string","timestamp":true,"authorName":"string"}'
Request examples
{
  "enabled": true,
  "color": "string",
  "description": "string",
  "title": "string",
  "titleUrl": "string",
  "timestamp": true,
  "authorName": "string"
}
Response examples (200)
{
  "error": true,
  "timestamp": "2025-05-04T09:42:00Z",
  "uniqueId": "string"
}