POST api/Firma
Request Information
URI Parameters
None.
Body Parameters
PostFirmaDto| Name | Description | Type | Additional 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| Name | Description | Type | Additional information |
|---|---|---|---|
| Value | FirmaDto |
None. |
|
| Success | boolean |
None. |
|
| Alerts | Collection of Alert |
None. |
Response Formats
application/json, text/json
Sample:
{
"Value": {
"Id": "d9007f63-ef83-4d1d-904b-4be441fc5a6d",
"LizenzId": "f4bf3a26-9cb7-4d7d-b802-d33fef9ecd65",
"Name": "sample string 3",
"Benutzername": "sample string 4",
"LizenzAblaufDate": "2026-03-19T06:38:41.2238823+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>d9007f63-ef83-4d1d-904b-4be441fc5a6d</d2p1:Id>
<d2p1:IsGelöscht>true</d2p1:IsGelöscht>
<d2p1:LizenzAblaufDate>2026-03-19T06:38:41.2238823+01:00</d2p1:LizenzAblaufDate>
<d2p1:LizenzId>f4bf3a26-9cb7-4d7d-b802-d33fef9ecd65</d2p1:LizenzId>
<d2p1:Name>sample string 3</d2p1:Name>
</Value>
</ResultOfFirmaDtoQ4WjWnJz>