v1
latestOpenAPI 3.0.02026-07-241010520.6 KBPricing
Create Adder
Create a new adder or discount having a monetary value.
post/tenants/{tenant_id}/designs/{design_id}/pricing/adders
Path parameters
tenant_idstring uuid required
The ID of the tenant to create the adder for.
design_idstring uuid required
The ID of the design to create the adder for.
Request body
Example request
{
"adder": {
"adder_name": "Steep roof surcharge",
"adder_value": 1000,
"quantity": 12.7,
"eligible_for_cbi": true,
"additional_charges": []
}
}Response
Adder successfully created.
Example response
{
"adder": {
"adder_name": "Steep roof surcharge",
"adder_value": 1000,
"quantity": 12.7,
"eligible_for_cbi": true,
"additional_charges": [],
"adder_type": "flat"
}
}