POST Salesboard/InsertBudgetValues?ApiKey={ApiKey}&EncryptionKey={EncryptionKey}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ApiKey

string

Required

EncryptionKey

string

Required

Body Parameters

Collection of BudgetDTO
NameDescriptionTypeAdditional information
From

date

None.

To

date

None.

Budget

decimal number

None.

Workhours

decimal number

None.

MW

decimal number

None.

Partner_lbnr

integer

None.

Budget_type

integer

None.

Section

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "from": "2025-11-08T13:18:46.3815423+01:00",
    "to": "2025-11-08T13:18:46.3815423+01:00",
    "budget": 3.1,
    "workhours": 4.1,
    "mw": 5.1,
    "partner_lbnr": 6,
    "budget_type": 7,
    "section": 8
  },
  {
    "from": "2025-11-08T13:18:46.3815423+01:00",
    "to": "2025-11-08T13:18:46.3815423+01:00",
    "budget": 3.1,
    "workhours": 4.1,
    "mw": 5.1,
    "partner_lbnr": 6,
    "budget_type": 7,
    "section": 8
  }
]

application/xml, text/xml

Sample:
<ArrayOfBudgetDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataTransferObjects.Salesboard">
  <BudgetDTO>
    <Budget>3.1</Budget>
    <Budget_type>7</Budget_type>
    <From>2025-11-08T13:18:46.3815423+01:00</From>
    <MW>5.1</MW>
    <Partner_lbnr>6</Partner_lbnr>
    <Section>8</Section>
    <To>2025-11-08T13:18:46.3815423+01:00</To>
    <Workhours>4.1</Workhours>
  </BudgetDTO>
  <BudgetDTO>
    <Budget>3.1</Budget>
    <Budget_type>7</Budget_type>
    <From>2025-11-08T13:18:46.3815423+01:00</From>
    <MW>5.1</MW>
    <Partner_lbnr>6</Partner_lbnr>
    <Section>8</Section>
    <To>2025-11-08T13:18:46.3815423+01:00</To>
    <Workhours>4.1</Workhours>
  </BudgetDTO>
</ArrayOfBudgetDTO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'List`1'.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.