colnod-connector/colnod.apib
2019-09-30 18:20:05 +02:00

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"
}
}
}