GET api/Lizenz?benutzername={benutzername}&passwort={passwort}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
benutzername

string

Required

passwort

string

Required

Body Parameters

None.

Response Information

Resource Description

ResultOfListOfLizenzDto
NameDescriptionTypeAdditional information
Value

Collection of LizenzDto

None.

Success

boolean

None.

Alerts

Collection of Alert

None.

Response Formats

application/json, text/json

Sample:
{
  "Value": [
    {
      "Id": "f19f4f1c-ec85-4fcb-9812-98a68d08f726",
      "Name": "sample string 2",
      "Price": 3.0,
      "IsAvaiable": true,
      "MaxUsers": 5,
      "IsDefault": true
    },
    {
      "Id": "f19f4f1c-ec85-4fcb-9812-98a68d08f726",
      "Name": "sample string 2",
      "Price": 3.0,
      "IsAvaiable": true,
      "MaxUsers": 5,
      "IsDefault": true
    }
  ],
  "Success": true,
  "Alerts": null
}

application/xml, text/xml

Sample:
<ResultOfArrayOfLizenzDtoQ4WjWnJz 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:LizenzDto>
      <d2p1:Id>f19f4f1c-ec85-4fcb-9812-98a68d08f726</d2p1:Id>
      <d2p1:IsAvaiable>true</d2p1:IsAvaiable>
      <d2p1:IsDefault>true</d2p1:IsDefault>
      <d2p1:MaxUsers>5</d2p1:MaxUsers>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:Price>3</d2p1:Price>
    </d2p1:LizenzDto>
    <d2p1:LizenzDto>
      <d2p1:Id>f19f4f1c-ec85-4fcb-9812-98a68d08f726</d2p1:Id>
      <d2p1:IsAvaiable>true</d2p1:IsAvaiable>
      <d2p1:IsDefault>true</d2p1:IsDefault>
      <d2p1:MaxUsers>5</d2p1:MaxUsers>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:Price>3</d2p1:Price>
    </d2p1:LizenzDto>
  </Value>
</ResultOfArrayOfLizenzDtoQ4WjWnJz>