An open API service indexing awesome lists of open source software.

https://github.com/permify/permify-typescript

Permify Typescript Client
https://github.com/permify/permify-typescript

Last synced: 2 months ago
JSON representation

Permify Typescript Client

Awesome Lists containing this project

README

        

# permify-typescript
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](https://openapi-generator.tech) project.

## Requirements.

- Typescript
- npm

### Installation

To include the SDK in your project, install the package from npm:

```sh
npm i permify-typescript
```

## Getting Started

```typescript
import * 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));

```

## Author

[email protected]