mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
24 lines
441 B
Plaintext
24 lines
441 B
Plaintext
---
|
|
title: 'Introduction'
|
|
description: 'Example section for showcasing your API endpoints'
|
|
---
|
|
|
|
<Warning>
|
|
You need to make sure to point your request to your API server.
|
|
</Warning>
|
|
<Note>
|
|
This section is a work in progress. Updates will be made soon.
|
|
</Note>
|
|
|
|
## Authentication
|
|
|
|
All API endpoints are authenticated using Bearer tokens and picked up from the specification file.
|
|
|
|
```json
|
|
"security": [
|
|
{
|
|
"bearerAuth": []
|
|
}
|
|
]
|
|
```
|