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": "576d1d71-10a9-4f00-b69d-50c79f8e5998",
"TargetUserGroupId": "3f2a9c7b-bf08-4e55-90d8-a28c316f7a0d",
"FromOwnerId": "c146060e-02d9-40ad-9797-35b7c8b9b980"
}
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>c146060e-02d9-40ad-9797-35b7c8b9b980</FromOwnerId> <OwnerId>576d1d71-10a9-4f00-b69d-50c79f8e5998</OwnerId> <TargetUserGroupId>3f2a9c7b-bf08-4e55-90d8-a28c316f7a0d</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>