mirror of
https://github.com/dyzulk/trustlab-docs.git
synced 2026-01-26 21:41:54 +07:00
23 lines
341 B
Plaintext
23 lines
341 B
Plaintext
---
|
|
id: endpoints
|
|
title: Endpoints
|
|
description: Documentation for TrustLab API Endpoints including scanning and issuance.
|
|
---
|
|
|
|
# Endpoints
|
|
|
|
## Certificates
|
|
|
|
### List Certificates
|
|
`GET /certificates`
|
|
|
|
### Request Certificate
|
|
`POST /certificates`
|
|
|
|
```json copy
|
|
{
|
|
"csr": "-----BEGIN CERTIFICATE REQUEST-----...",
|
|
"validity_days": 365
|
|
}
|
|
```
|