GET api/Firma/{id}?benutzername={benutzername}&passwort={passwort}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
benutzername

string

Required

passwort

string

Required

id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ResultOfFirmaPrivateDto
NameDescriptionTypeAdditional information
Value

FirmaPrivateDto

None.

Success

boolean

None.

Alerts

Collection of Alert

None.

Response Formats

application/json, text/json

Sample:
{
  "Value": {
    "Id": "dbb5abf4-ddc4-4d42-bc42-09a6b1a8f90b",
    "LizenzId": "a23305a1-c2a5-4d9e-8407-e912e3d41cd4",
    "Name": "sample string 3",
    "Benutzername": "sample string 4",
    "IsGelöscht": true
  },
  "Success": true,
  "Alerts": null
}

application/xml, text/xml

Sample:
<ResultOfFirmaPrivateDtoQ4WjWnJz 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>dbb5abf4-ddc4-4d42-bc42-09a6b1a8f90b</d2p1:Id>
    <d2p1:IsGelöscht>true</d2p1:IsGelöscht>
    <d2p1:LizenzId>a23305a1-c2a5-4d9e-8407-e912e3d41cd4</d2p1:LizenzId>
    <d2p1:Name>sample string 3</d2p1:Name>
  </Value>
</ResultOfFirmaPrivateDtoQ4WjWnJz>