POST shows/{showId}/accounts/{accountId}/showAccounts/{showAccountId}/budgetCalculation

Request Information

URI Parameters

NameDescriptionTypeAdditional information
showId

integer

Required

accountId

integer

Required

showAccountId

integer

Required

Body Parameters

BudgetCreateDto
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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-05-06T03:01:01.0777133+01:00",
  "SignageBudgetModifiedBy": "sample string 2",
  "PlannedSignageAllowance": 1.0,
  "PlannedSignageAllowanceModifiedOn": "2025-05-06T03:01:01.0777133+01:00",
  "PlannedSignageAllowanceModifiedBy": "sample string 3",
  "TotalSignageOrders": 1.0
}