GET api/Lizenz/{id}?benutzername={benutzername}&passwort={passwort}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| benutzername | string |
Required |
|
| passwort | string |
Required |
|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ResultOfLizenzDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Value | LizenzDto |
None. |
|
| Success | boolean |
None. |
|
| Alerts | Collection of Alert |
None. |
Response Formats
application/json, text/json
Sample:
{
"Value": {
"Id": "f98a02bb-f109-48a2-ba58-744cd945bd4b",
"Name": "sample string 2",
"Price": 3.0,
"IsAvaiable": true,
"MaxUsers": 5,
"IsDefault": true
},
"Success": true,
"Alerts": null
}
application/xml, text/xml
Sample:
<ResultOfLizenzDtoQ4WjWnJz 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:Id>f98a02bb-f109-48a2-ba58-744cd945bd4b</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>
</Value>
</ResultOfLizenzDtoQ4WjWnJz>