Kinde · Example Payload

Kinde Create Webhook Example

AuthenticationAuthorizationCustomer IdentityIdentity ManagementOAuthOpenID ConnectSingle Sign-OnMulti-Factor AuthenticationRole-Based Access ControlFeature FlagsBillingB2BSaaSDeveloper Platform

Kinde Create Webhook Example is an example object payload from Kinde, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://acme.kinde.com/api/v1/webhooks",
    "headers": {
      "Authorization": "Bearer <KINDE_M2M_ACCESS_TOKEN>",
      "Content-Type": "application/json"
    },
    "body": {
      "endpoint": "https://api.acme.com/kinde/webhooks",
      "name": "Acme sync",
      "description": "Sync Kinde users to internal CRM.",
      "event_types": [
        "user.created",
        "user.updated",
        "user.deleted",
        "organization.created",
        "organization.user.added"
      ]
    }
  },
  "response": {
    "status": 201,
    "body": {
      "webhook": {
        "id": "wh_a1b2c3",
        "endpoint": "https://api.acme.com/kinde/webhooks",
        "event_types": [
          "user.created",
          "user.updated",
          "user.deleted",
          "organization.created",
          "organization.user.added"
        ]
      }
    }
  }
}