POST shows/{showId}/accounts/{accountId}/showAccounts/{showAccountId}/budgets
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| showId | integer |
Required |
|
| accountId | integer |
Required |
|
| showAccountId | integer |
Required |
Body Parameters
BudgetCreateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| BudgetId | integer |
None. |
|
| ShowAccountId | integer |
None. |
|
| VendorId | integer |
None. |
|
| CategoryId | integer |
None. |
|
| SignageBudget | decimal number |
None. |
|
| PlannedSignageAllowance | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"BudgetId": 1,
"ShowAccountId": 2,
"VendorId": 1,
"CategoryId": 1,
"SignageBudget": 1.0,
"PlannedSignageAllowance": 1.0
}
Response Information
Resource Description
BudgetResponseDto| Name | Description | Type | Additional information |
|---|---|---|---|
| BudgetId | integer |
None. |
|
| SignageBudget | decimal number |
None. |
|
| SignageBudgetModifiedOn | date |
None. |
|
| SignageBudgetModifiedBy | string |
None. |
|
| PlannedSignageAllowance | decimal number |
None. |
|
| PlannedSignageAllowanceModifiedOn | date |
None. |
|
| PlannedSignageAllowanceModifiedBy | string |
None. |
|
| TotalSignageOrders | decimal number |
None. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"BudgetId": 1,
"SignageBudget": 1.0,
"SignageBudgetModifiedOn": "2025-12-14T22:16:17.9206278+00:00",
"SignageBudgetModifiedBy": "sample string 2",
"PlannedSignageAllowance": 1.0,
"PlannedSignageAllowanceModifiedOn": "2025-12-14T22:16:17.9206278+00:00",
"PlannedSignageAllowanceModifiedBy": "sample string 3",
"TotalSignageOrders": 1.0
}