POST api/TradeDayBoard

Request Information

URI Parameters

None.

Body Parameters

Collection of TradeDayBL
NameDescriptionTypeAdditional information
TradeDayId

integer

None.

CustomerId

integer

None.

TradeDayDate

date

None.

TotalInvestment

decimal number

None.

TotalAsset

decimal number

None.

TotalProfit

decimal number

None.

TodaysProfit

decimal number

None.

Comments

string

None.

CreatedDate

date

None.

IsActive

boolean

None.

NeedsToDelete

boolean

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "TradeDayId": 1,
    "CustomerId": 1,
    "TradeDayDate": "2025-12-06T04:37:52.7629573Z",
    "TotalInvestment": 1.0,
    "TotalAsset": 1.0,
    "TotalProfit": 1.0,
    "TodaysProfit": 1.0,
    "Comments": "sample string 2",
    "CreatedDate": "2025-12-06T04:37:52.7629573Z",
    "IsActive": true,
    "NeedsToDelete": true
  },
  {
    "TradeDayId": 1,
    "CustomerId": 1,
    "TradeDayDate": "2025-12-06T04:37:52.7629573Z",
    "TotalInvestment": 1.0,
    "TotalAsset": 1.0,
    "TotalProfit": 1.0,
    "TodaysProfit": 1.0,
    "Comments": "sample string 2",
    "CreatedDate": "2025-12-06T04:37:52.7629573Z",
    "IsActive": true,
    "NeedsToDelete": true
  }
]

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

TradeDayBL
NameDescriptionTypeAdditional information
TradeDayId

integer

None.

CustomerId

integer

None.

TradeDayDate

date

None.

TotalInvestment

decimal number

None.

TotalAsset

decimal number

None.

TotalProfit

decimal number

None.

TodaysProfit

decimal number

None.

Comments

string

None.

CreatedDate

date

None.

IsActive

boolean

None.

NeedsToDelete

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "TradeDayId": 1,
  "CustomerId": 1,
  "TradeDayDate": "2025-12-06T04:37:52.7638902Z",
  "TotalInvestment": 1.0,
  "TotalAsset": 1.0,
  "TotalProfit": 1.0,
  "TodaysProfit": 1.0,
  "Comments": "sample string 2",
  "CreatedDate": "2025-12-06T04:37:52.7638902Z",
  "IsActive": true,
  "NeedsToDelete": true
}