docs: add copy button to code blocks

This commit is contained in:
dyzulk
2026-01-09 12:25:42 +07:00
parent 821089391f
commit a5eebe25ee
5 changed files with 14 additions and 14 deletions

View File

@@ -14,7 +14,7 @@ description: Documentation for TrustLab API Endpoints including scanning and iss
### Request Certificate
`POST /certificates`
```json
```json copy
{
"csr": "-----BEGIN CERTIFICATE REQUEST-----...",
"validity_days": 365

View File

@@ -11,7 +11,7 @@ You can use our REST API to automate certificate issuance, revocation, and retri
## Base URL
```http
```http copy
https://trustlab.dyzulk.com/api/v1
```
@@ -19,6 +19,6 @@ https://trustlab.dyzulk.com/api/v1
All API requests must include your API Key in the `Authorization` header.
```bash
```bash copy
Authorization: Bearer <YOUR_API_KEY>
```