@shopware/api-client
Version:
Shopware client for API connection.
34 lines (33 loc) • 716 B
JSON
{
"components": {
},
"paths": {
"/employee/{id}": {
"get": {
"operationId": "readB2bEmployee",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Identifier of the employee to be read",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"200": {
"description": "Employee",
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/B2bEmployee" }
}
}
}
}
}
}
}
}