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": "80c78174-e4c6-44e0-a972-c10637696008",
"TargetUserGroupId": "cc162a91-e706-47e7-91c8-6602ab8f4b0b",
"FromOwnerId": "59e8bbe9-9ef9-410c-a49e-332a164ab0b4"
}
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>59e8bbe9-9ef9-410c-a49e-332a164ab0b4</FromOwnerId> <OwnerId>80c78174-e4c6-44e0-a972-c10637696008</OwnerId> <TargetUserGroupId>cc162a91-e706-47e7-91c8-6602ab8f4b0b</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>