Meldet Anwender an Platz an bzw. ab falls er bereits angemeldet ist
POST
Payload
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sessionKey": {
"type": "string"
},
"location": {
"type": "string"
}
},
"required": [
"sessionKey",
"location"
]
}
Beispiel
{
"sessionKey": "",
"location": ""
}
Rückgabe
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"UserToLocationResult": {
"type": "object",
"properties": {
"Message": {
"type": "string"
},
"Code": {
"type": "integer"
},
"Quantity": {
"type": "number"
},
"Data": {
"type": "string"
}
},
"required": [
"Message",
"Code",
"Quantity",
"Data"
]
}
},
"required": [
"UserToLocationResult"
]
}
Beispiel
{
"UserToLocationResult": {
"Message": "",
"Code": 0,
"Quantity": 0.0,
"Data": ""
}
}
Hinterlasse einen Kommentar.