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": "0dc46cb3-276c-4ef2-af76-54d7a4afa883",
    "LizenzId": "d3670071-e536-4fed-af73-951626863161",
    "Name": "sample string 3",
    "Benutzername": "sample string 4",
    "LizenzAblaufDate": "2025-12-06T04:26:55.0480424+01: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>0dc46cb3-276c-4ef2-af76-54d7a4afa883</d2p1:Id>
    <d2p1:IsGelöscht>true</d2p1:IsGelöscht>
    <d2p1:LizenzAblaufDate>2025-12-06T04:26:55.0480424+01:00</d2p1:LizenzAblaufDate>
    <d2p1:LizenzId>d3670071-e536-4fed-af73-951626863161</d2p1:LizenzId>
    <d2p1:Name>sample string 3</d2p1:Name>
  </Value>
</ResultOfFirmaDtoQ4WjWnJz>