mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-11 22:51:05 +00:00
auth info in endpoints
This commit is contained in:
parent
4e1e1ab5e2
commit
b8d9e901b4
1 changed files with 16 additions and 1 deletions
|
|
@ -11,6 +11,11 @@
|
|||
"description": "Production Server"
|
||||
}
|
||||
],
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"paths": {
|
||||
"/add": {
|
||||
"post": {
|
||||
|
|
@ -375,5 +380,15 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"components": { "schemas": {} }
|
||||
"components": {
|
||||
"schemas": {},
|
||||
"securitySchemes": {
|
||||
"ApiKeyAuth": {
|
||||
"type": "apiKey",
|
||||
"in": "header",
|
||||
"name": "x-api-key",
|
||||
"description": "API key for authentication"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue