Informationen über den Platz, dem der Werker für den übergebenen Anwender zugeordnet ist
POST
Payload
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sessionKey": {
"type": "string"
},
"userCode": {
"type": "string"
}
},
"required": [
"sessionKey",
"userCode"
]
}
Beispiel
{
"sessionKey": "",
"userCode": ""
}
Rückgabe
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"GetLocationForUserResult": {
"type": "object",
"properties": {
"LocationType": {
"type": "string"
},
"WarehouseCode": {
"type": "string"
},
"LocationCode": {
"type": "string"
}
},
"required": [
"LocationType",
"WarehouseCode",
"LocationCode"
]
}
},
"required": [
"GetLocationForUserResult"
]
}
Beispiel
{
"GetLocationForUserResult": {
"LocationType": "",
"WarehouseCode": "",
"LocationCode": ""
}
}
Hinterlasse einen Kommentar.