DecisionVault API
  1. Subscriptions
DecisionVault API
  • DecisionVault API
    • Authentication
    • Automation
    • External Identifiers
    • Financial Categories
    • Pagination
    • Webhooks
    • Questionnaires
      • Get Questionnaires
      • Get Single Questionnaire
    • FinancialCategories
      • Get Financial Categories
    • Matters
      • Get Matters
      • Get Single Matter
      • Get Clients for a Matter
      • Get Assets for a Matter
      • Get Contacts for a Matter
      • Get Documents for Matter
      • Get Financial Documents for Matter
      • Create Matter
    • Events
      • Get Events
      • Get Single Event
    • Documents
      • Get Single Document
    • Users
      • Get Single User
    • Subscriptions
      • Create Webhook Subscription
        POST
      • Delete Webhook Subscription
        DELETE
  1. Subscriptions

Create Webhook Subscription

POST
/v1/subscriptions
Create a webhook subscription for a certain event type

Request

Body Params application/json

Examples

Responses

🟢201Created
Created
This response does not have a body.
🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/subscriptions' \
--header 'Content-Type: application/json' \
--data-raw '{
    "url": "https://zapierwebhook.com/abcdef123455",
    "event_type": "intakeform.submitted",
    "headers": [
        {
            "key1": "value1"
        },
        {
            "key2": "value2"
        },
        {
            "key3": "value3"
        }
    ]
}'
Response Response Example
{
    "id": "ep_2wp74oeUKNGbyNpPXW7RFOQQ5ST"
}
Modified at 2025-09-21 17:04:33
Previous
Get Single User
Next
Delete Webhook Subscription
Built with