mirror of
https://gitlab.com/spaceti-app/integrations/acs/colnod-connector.git
synced 2026-07-12 15:40:40 +02:00
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
FORMAT: 1A
|
|
|
|
# JSON Schema
|
|
Every request and response can have a schema. Below you will find examples
|
|
using [JSON Schema](http://json-schema.org/) to describe the format of request
|
|
and response body content.
|
|
|
|
# Login manager [/AaaManager/authSession]
|
|
|
|
## Get login token [POST]
|
|
Gets a single note by its unique identifier.
|
|
|
|
+ Request (application/json)
|
|
|
|
+ Body
|
|
|
|
{
|
|
"password": "E7FEA07DBC82FB9BA34B2E453E2EFE89F0583E7187543507EF11E84726071FE428445372F2E46B455EB0C79747C51E362F403CE39473A2A8C2DFA0CE5C9826C0",
|
|
"username": "spaceti"
|
|
}
|
|
|
|
+ Schema
|
|
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"username": {
|
|
"type": "string"
|
|
},
|
|
"password": {
|
|
"type": "string"
|
|
},
|
|
}
|
|
}
|
|
|
|
+ Response 200 (application/json)
|
|
|
|
+ Body
|
|
|
|
{
|
|
"id": "String",
|
|
}
|
|
|
|
+ Schema
|
|
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
} |