POST api/Firma

Request Information

URI Parameters

None.

Body Parameters

PostFirmaDto
NameDescriptionTypeAdditional information
Name

string

None.

Benutzername

string

None.

Password

string

None.

IsGelöscht

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Benutzername": "sample string 2",
  "Password": "sample string 3",
  "IsGelöscht": true
}

application/xml, text/xml

Sample:
<PostFirmaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PDZeiterfassungCommonComponents.Dto.Post">
  <Benutzername>sample string 2</Benutzername>
  <IsGelöscht>true</IsGelöscht>
  <Name>sample string 1</Name>
  <Password>sample string 3</Password>
</PostFirmaDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultOfFirmaDto
NameDescriptionTypeAdditional information
Value

FirmaDto

None.

Success

boolean

None.

Alerts

Collection of Alert

None.

Response Formats

application/json, text/json

Sample:
{
  "Value": {
    "Id": "76f6b51d-4cc5-4ec9-906c-7f1796d04bf6",
    "LizenzId": "5ef65542-0f98-458b-9921-1470baa1f1a0",
    "Name": "sample string 3",
    "Benutzername": "sample string 4",
    "LizenzAblaufDate": "2026-05-14T12:30:10.3241834+02:00",
    "IsGelöscht": true
  },
  "Success": true,
  "Alerts": null
}

application/xml, text/xml

Sample:
<ResultOfFirmaDtoQ4WjWnJz 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>
  <Value xmlns:d2p1="http://schemas.datacontract.org/2004/07/PDZeiterfassungCommonComponents.Dto">
    <d2p1:Benutzername>sample string 4</d2p1:Benutzername>
    <d2p1:Id>76f6b51d-4cc5-4ec9-906c-7f1796d04bf6</d2p1:Id>
    <d2p1:IsGelöscht>true</d2p1:IsGelöscht>
    <d2p1:LizenzAblaufDate>2026-05-14T12:30:10.3241834+02:00</d2p1:LizenzAblaufDate>
    <d2p1:LizenzId>5ef65542-0f98-458b-9921-1470baa1f1a0</d2p1:LizenzId>
    <d2p1:Name>sample string 3</d2p1:Name>
  </Value>
</ResultOfFirmaDtoQ4WjWnJz>