POST api/SaldiUpload?benutzername={benutzername}&passwort={passwort}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
benutzername

string

Required

passwort

string

Required

Body Parameters

Collection of PostSaldiDto
NameDescriptionTypeAdditional information
FremdId

string

None.

GleitZeitSaldo

decimal number

None.

FerienSaldo

decimal number

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "FremdId": "sample string 1",
    "GleitZeitSaldo": 2.1,
    "FerienSaldo": 3.1
  },
  {
    "FremdId": "sample string 1",
    "GleitZeitSaldo": 2.1,
    "FerienSaldo": 3.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfPostSaldiDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PDZeiterfassungCommonComponents.Dto.Post">
  <PostSaldiDto>
    <FerienSaldo>3.1</FerienSaldo>
    <FremdId>sample string 1</FremdId>
    <GleitZeitSaldo>2.1</GleitZeitSaldo>
  </PostSaldiDto>
  <PostSaldiDto>
    <FerienSaldo>3.1</FerienSaldo>
    <FremdId>sample string 1</FremdId>
    <GleitZeitSaldo>2.1</GleitZeitSaldo>
  </PostSaldiDto>
</ArrayOfPostSaldiDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Success

boolean

None.

Alerts

Collection of Alert

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Alerts": null
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PDZeiterfassungCommonComponents.Helpers">
  <Alerts i:nil="true" />
  <Success>true</Success>
</Result>