Sign in

View Webhook

documented

View a webhook by ID.

GET /webhooks/{webhookId}Conversationsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

Based on the official MessageBird Conversations API docs, the Get Webhook endpoint is GET https://conversations.messagebird.com/v1/webhooks/{id}. This command uses a path parameter for the webhook ID and API Key authentication as shown in the docs. ([developers.messagebird.com](https://developers.messagebird.com/api/conversations/?utm_source=openai))

npx -y keychains@latest curl "https://conversations.messagebird.com/v1/webhooks/{{$webhook_id}}" \
  -X GET \
  -H "Authorization: AccessKey {{MESSAGEBIRD_API_KEY}}" \
  -H "Accept: application/json"