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": "ab3fb4cf-e636-49a1-91c5-0c579b297ebd",
"TargetUserGroupId": "f337fd6e-0dac-4650-8e19-e11d9efa1988",
"FromOwnerId": "a7a972b0-8331-4d2e-808a-df8c49f33277"
}
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>a7a972b0-8331-4d2e-808a-df8c49f33277</FromOwnerId> <OwnerId>ab3fb4cf-e636-49a1-91c5-0c579b297ebd</OwnerId> <TargetUserGroupId>f337fd6e-0dac-4650-8e19-e11d9efa1988</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>