Kinde · Example Payload

Kinde Create Application Example

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

Kinde Create Application 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/applications",
    "headers": {
      "Authorization": "Bearer <KINDE_M2M_ACCESS_TOKEN>",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "Acme Web App",
      "type": "reg"
    }
  },
  "response": {
    "status": 201,
    "body": {
      "application": {
        "id": "app_a1b2c3",
        "name": "Acme Web App",
        "type": "reg",
        "client_id": "1a2b3c4d5e6f7g8h9i0j",
        "client_secret": "abcd1234secret"
      }
    }
  }
}