Typescript Client for Permify which is an open source authorization service for creating fine-grained and scalable authorization systems.
This Typescript package is automatically generated by the OpenAPI Generator project.
- Typescript
 - npm
 
To include the SDK in your project, install the package from npm:
npm i permify-typescriptimport * as permify from "permify-typescript";
const configuration = new permify.Configuration({
    basePath: "http://localhost:3476",
    headers: {
        'Authorization': "Bearer ***"
    }
})
const apiInstance = new permify.TenancyApi(configuration);
let tenantId = "tenant_id_example"; 
apiInstance.tenantsCreate({
    body: {
        id: tenantId,
        name: "Tenant 1"
    }
}).then((data) => {
    console.log('API called successfully. Returned data: ' + data.tenant);
}).catch((error) => console.error(error));