Conga Product Documentation

Welcome to the new doc site. Some of your old bookmarks will no longer work. Please use the search bar to find your desired topic.

Using Webhook APIs from Postman

You can utilize the Webhook API in order to create the webhook. Below is a list of the Webhook APIs you can use.
  1. Import your JSON file into Postman.
  2. Generate Dev Token in Collection by hitting auth API. POST: {{BASE_URL}}/api/v1/auth/connect/token
  3. Click Create Webhook API to create a new webhook. POST: {{BASE_URL}}/api/webhook/v1/Webhook
  4. Click Get Webhook Details API to see details of the webhook. GET: {{BASE_URL}}/api/webhook/v1/Webhook/{{WEBHOOK_ID}}
  5. Click Get Auth details for Webhook Client ID and Secret. GET: {{BASE_URL}}/api/secret-management/v1/secret/{{AUTH_SECRET_ID}}
  6. You can use the Generate HMAC key to have the Webhook hit the API. POST: {{BASE_URL}}/api/webhook/v1/Webhook/{{WEBHOOK_ID}}/generate-hmac-secret
  7. After generated the HMAC key, it will display details api as hmacSecretID, which can be generated multiple times. GET: {{BASE_URL}}/api/webhook/v1/Webhook/{{WEBHOOK_ID}}
  8. To update fields, click Patch API. PATCH: {{BASE_URL}}/api/webhook/v1/Webhook/{{WEBHOOK_ID}}
  9. Click Get All Webhooks API to list all available webhooks. GET: {{BASE_URL}}/api/webhook/v1/Webhook
  10. Select Delete API to delete the webhook. DELETE: {{BASE_URL}}/api/webhook/v1/Webhook/{{WEBHOOK_ID}}