Skip to main content
GET
/
webhooks
Get Webhook Configuration
curl --request GET \
  --url https://api.fyatu.com/api/v3/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "message": "Webhook configuration retrieved",
  "data": {
    "webhookUrl": "https://example.com/webhooks/fyatu",
    "hasWebhookSecret": true,
    "isConfigured": true
  },
  "meta": {
    "requestId": "req_abc123xyz789",
    "timestamp": "2026-01-15T10:30:00+00:00"
  }
}

Get Webhook Configuration

Returns the current webhook configuration for your app, including the webhook URL and whether a webhook secret is configured.

Request

curl -X GET https://api.fyatu.com/api/v3/webhooks \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Response

success
boolean
Whether the request was successful
data
object
{
  "success": true,
  "status": 200,
  "message": "Webhook configuration retrieved",
  "data": {
    "webhookUrl": "https://example.com/webhooks/fyatu",
    "hasWebhookSecret": true,
    "isConfigured": true
  },
  "meta": {
    "requestId": "req_abc123xyz789",
    "timestamp": "2026-01-15T10:30:00+00:00"
  }
}

Use Cases

  • Check if webhooks are configured before testing
  • Verify webhook URL in your integration dashboard
  • Debug webhook delivery issues

Authorizations

Authorization
string
header
required

JWT access token obtained from /auth/token

Response

Webhook configuration retrieved successfully

success
boolean
Example:

true

status
integer
Example:

200

message
string
data
object
meta
object