Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 1.23 KB

relayWebhooks.md

File metadata and controls

26 lines (21 loc) · 1.23 KB

Relay Webhooks

This library provides easy access to the Relay Webhooks Resource.

Note: All methods return promises and accept an optional last argument callback. Read about how we handle callbacks and promises.

Methods

  • list()
    List all relay webhooks.
  • get(id)
    Get details about a specified relay webhook by its id
    • id - the id of the relay webhook you want to look up required
  • create(webhook)
    Create a new relay webhook
  • update(id, webhook)
    Update an existing relay webhook
  • delete(id)
    Delete an existing relay webhook
    • id - the id of the relay webhook you want to delete required

Examples

Visit our examples section to see all of our relay webhook resource examples.