Webhook
  • Odoo Webhooks: Version 1.0 documentation
  • Configuration
    • Through the API
    • Through your user panel
  • Properties
  • Endpoints
    • Get a Webhooks
      • Get a list of all webhooks
      • Get a single webhook by it's ID
      • Get a list of webhooks of particular ids
      • Get a list of specific webhooks using domain filter
    • Get a count of Webhooks
    • Create a new Webhook
    • Update an existing Webhook
      • Update a single webhook by its id
      • Update a list of webhooks of particular ids
    • Delete a Webhook from the database
      • Delete a single webhook by its id
      • Delete a list of webhooks of particular ids
  • Receive a webhook
  • Handle Response
Powered by GitBook
On this page
  1. Endpoints

Get a Webhooks

Note

API endpoints:

  • GET {your_Odoo_server_url}/restapi/1.0/webhooks (Get a list of all webhooks)

  • GET {your_Odoo_server_url}/restapi/1.0/webhooks/{id} (Get a single webhook by its id)

  • GET {your_Odoo_server_url}/restapi/1.0/webhooks?ids={comma_separated_ids} (Get a list of webhooks of particular ids)

  • GET {your_Odoo_server_url}/restapi/1.0/webhooks/?domain={comma_separated_list_of_args} (Get a list of specific webhooks using domain filter)

PreviousEndpointsNextGet a list of all webhooks

Last updated 2 years ago