POST api/licenses/copyAllOwner
Create license copies for provided owner
Request Information
URI Parameters
None.
Body Parameters
LicenseCopyAllOwnerRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| OwnerId | globally unique identifier |
None. |
|
| TargetUserGroupId | globally unique identifier |
None. |
|
| FromOwnerId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"OwnerId": "369989c9-f0f1-438b-a54e-f358d4bb4863",
"TargetUserGroupId": "6d301a93-3050-4eab-94e5-3947a29f7757",
"FromOwnerId": "0b65f42f-6276-4c7a-84f1-2df9c9fcf767"
}
application/xml, text/xml
Sample:
<LicenseCopyAllOwnerRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Requests"> <FromOwnerId>0b65f42f-6276-4c7a-84f1-2df9c9fcf767</FromOwnerId> <OwnerId>369989c9-f0f1-438b-a54e-f358d4bb4863</OwnerId> <TargetUserGroupId>6d301a93-3050-4eab-94e5-3947a29f7757</TargetUserGroupId> </LicenseCopyAllOwnerRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ValidationResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid | boolean |
None. |
|
| Errors | Collection of ValidationFailure |
None. |
Response Formats
application/json, text/json
Sample:
{
"errors": []
}
application/xml, text/xml
Sample:
<ValidationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FluentValidation.Results"> <errors /> </ValidationResult>