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": "d5709456-fa33-4920-a2bc-2ff1447701a8",
"TargetUserGroupId": "6c47df0e-d8c9-41d8-a39d-f9a8c4993c53",
"FromOwnerId": "a59d3b4f-b7ec-473f-8406-c92473db0540"
}
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>a59d3b4f-b7ec-473f-8406-c92473db0540</FromOwnerId> <OwnerId>d5709456-fa33-4920-a2bc-2ff1447701a8</OwnerId> <TargetUserGroupId>6c47df0e-d8c9-41d8-a39d-f9a8c4993c53</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>