Set department price
This endpoint documentation is generated directly from openapi.yaml.
Endpoint
POST /superuser/department/prices
Operation
Operation ID: setDepartmentPrice
Set department price
Authentication
Security requirements:
Scheme | Scopes |
|---|---|
BearerAuth | - |
Request Body
Required: yes.
Content type: application/json
{
"properties": {
"department_id": {
"type": "integer"
},
"price": {
"type": "integer"
},
"product_id": {
"type": "integer"
}
},
"required": [
"department_id",
"product_id",
"price"
],
"type": "object"
}
Responses
Status | Description | Content Types |
|---|---|---|
200 | Success | application/json |
Schema for response 200 (application/json):
{}
17 March 2026