Your browser is not up to date. This may cause security, speed, and display
issues. Please update your browser.
Update Browser
X
Feel free to use our updated API documentation.
| Parameter | Type | Description |
|---|---|---|
| id | integer |
ID of the lump sum service
|
| name | string |
Name of the lump sum service
|
| price | float |
Price of the lump sum service
|
| unit | string|null |
Unit of the lump sum service
|
| number | string|null |
Lump sum service number
|
| active | boolean |
Is the lump sum service active?
|
| note | string|null |
Note for the lump sum service
|
GET /api/v2/lumpsumservices
{
"lumpSumServices":
{
[object of type lumpSumService],
[object of type lumpSumService],
...
}
}GET /api/v2/lumpsumservices/[ID]
{
"lumpSumService": [object of type lumpSumService]
}POST /api/v2/lumpsumservices
| Required parameters | name, price |
|---|
| Optional parameters | unit, number, active, note |
|---|
{
"lumpSumService": [object of type lumpSumService]
}PUT /api/v2/lumpsumservices/[ID]
| Required parameters | none |
|---|
| Optional parameters | name, price, unit, number, active, note |
|---|
{
"lumpSumService": [object of type lumpSumService]
}DELETE /api/v2/lumpsumservices/[ID]
{
"success": true
}