Kinde · Example Payload

Kinde Create Organization Example

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

Kinde Create Organization 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/organization",
    "headers": {
      "Authorization": "Bearer <KINDE_M2M_ACCESS_TOKEN>",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "Acme Corp",
      "handle": "acme-corp",
      "external_id": "crm-12345",
      "sender_name": "Acme Team",
      "sender_email": "noreply@acme.com",
      "is_allow_registrations": false
    }
  },
  "response": {
    "status": 201,
    "body": {
      "code": "org_d4e5f6",
      "name": "Acme Corp",
      "handle": "acme-corp"
    }
  }
}