@fulltag/kinde-mgmt-sdk
TypeScript icon, indicating that this package has built-in type declarations

1.12.0 • Public • Published

Kinde Management API SDK

Note: this is an automatically generated package.

You can find more information about the Kinde management API on https://kinde.com/api/docs/

Installation

npm:

npm i @fulltag/kinde-mgmt-sdk

Yarn:

yarn add @fulltag/kinde-mgmt-sdk

pNpm:

pnpm i @fulltag/kinde-mgmt-sdk

Example usage

// https://kinde.com/api/docs/#create-user
import { UsersApi, Configuration } from '@fulltag/kinde-mgmt-sdk'

const usersApi = new UsersApi(new Configuration({
  // replace {businessName} with your own business name from Kinde
  basePath: 'https://{businessName}.kinde.com',
}))

const result = usersApi.createUser({
  createUserRequest: {
    profile: {
      givenName: 'John',
      familyName: 'Doe',
    },
    identities: [{
      type: 'email',
      details: {
        email: 'john.doe@example.com',
      },
    }],
    organizationCode: 'example',
  },
})

console.log(`Created user with id: ${result.id}`)

Available API's

  • APIsApi
  • ApplicationsApi
  • BusinessApi
  • CallbacksApi
  • ConnectedAppsApi
  • EnvironmentsApi
  • FeatureFlagsApi
  • IndustriesApi
  • OAuthApi
  • OrganizationsApi
  • PermissionsApi
  • PropertiesApi
  • PropertyCategoriesApi
  • RolesApi
  • SubscribersApi
  • TimezonesApi
  • UsersApi

Readme

Keywords

Package Sidebar

Install

npm i @fulltag/kinde-mgmt-sdk

Weekly Downloads

64

Version

1.12.0

License

MIT

Unpacked Size

2.69 MB

Total Files

8

Last publish

Collaborators

  • fulltag