Liefert Liste aller Arbeitsplätze
POST
Payload
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sessionKey": {
"type": "string"
}
},
"required": [
"sessionKey"
]
}
Beispiel
{
"sessionKey": ""
}
Rückgabe
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"GetWorkplacesResult": {
"type": "array",
"items": [
{
"type": "string"
}
]
}
},
"required": [
"GetWorkplacesResult"
]
}
Beispiel
{
"GetWorkplacesResult": [
""
]
}
Hinterlasse einen Kommentar.