docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
# SDKs & Libraries
|
|
|
|
|
|
|
|
|
|
## JavaScript/TypeScript SDK
|
|
|
|
|
|
|
|
|
|
### Installation
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-02-10 00:46:25 -04:00
|
|
|
npm install @license-authority/sdk
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
|
|
```typescript
|
2026-02-10 00:46:25 -04:00
|
|
|
import { LicenseClient } from '@license-authority/sdk';
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
|
2026-02-10 00:46:25 -04:00
|
|
|
const client = new LicenseClient({
|
|
|
|
|
baseUrl: 'https://api.license.gov.in/v1',
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
clientId: 'your-client-id',
|
|
|
|
|
clientSecret: 'your-client-secret'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Submit application
|
|
|
|
|
const application = await client.applications.create({
|
|
|
|
|
licenseType: 'TRADE_LICENSE',
|
|
|
|
|
applicantId: 'DL-12345678',
|
|
|
|
|
data: { ... }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Check status
|
|
|
|
|
const status = await client.applications.getStatus(application.id);
|
|
|
|
|
|
|
|
|
|
// Verify certificate
|
|
|
|
|
const verification = await client.certificates.verify('GOA/TRADE/2026/00001');
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Python SDK
|
|
|
|
|
|
|
|
|
|
### Installation
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-02-10 00:46:25 -04:00
|
|
|
pip install license-authority-sdk
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
|
|
```python
|
2026-02-10 00:46:25 -04:00
|
|
|
from license_authority import LicenseClient
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
|
2026-02-10 00:46:25 -04:00
|
|
|
client = LicenseClient(
|
|
|
|
|
base_url='https://api.license.gov.in/v1',
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
client_id='your-client-id',
|
|
|
|
|
client_secret='your-client-secret'
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Submit application
|
|
|
|
|
application = client.applications.create(
|
|
|
|
|
license_type='TRADE_LICENSE',
|
|
|
|
|
applicant_id='DL-12345678',
|
|
|
|
|
data={...}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Check status
|
|
|
|
|
status = client.applications.get_status(application['id'])
|
|
|
|
|
|
|
|
|
|
# Verify certificate
|
|
|
|
|
result = client.certificates.verify('GOA/TRADE/2026/00001')
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Java SDK
|
|
|
|
|
|
|
|
|
|
### Maven
|
|
|
|
|
|
|
|
|
|
```xml
|
|
|
|
|
<dependency>
|
2026-02-10 00:46:25 -04:00
|
|
|
<groupId>gov.in.license</groupId>
|
|
|
|
|
<artifactId>license-authority-sdk</artifactId>
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
|
|
```java
|
2026-02-10 00:46:25 -04:00
|
|
|
LicenseClient client = new LicenseClient.Builder()
|
|
|
|
|
.baseUrl("https://api.license.gov.in/v1")
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
.credentials("client-id", "client-secret")
|
|
|
|
|
.build();
|
|
|
|
|
|
|
|
|
|
Application app = client.applications()
|
|
|
|
|
.create("TRADE_LICENSE", "DL-12345678", data);
|
|
|
|
|
|
|
|
|
|
VerificationResult result = client.certificates()
|
|
|
|
|
.verify("GOA/TRADE/2026/00001");
|
|
|
|
|
```
|