POST api/seats/sendClaimLicenseSeatNotification

Send claim license seat notification

Request Information

URI Parameters

None.

Body Parameters

SendClaimLicenseSeatNotificationRequest
NameDescriptionTypeAdditional information
LicenseId

globally unique identifier

None.

CustomRecipientEmailAddress

string

None.

Request Formats

application/json, text/json

Sample:
{
  "LicenseId": "7028e4ee-27f3-407e-9e18-1547c8a2b162",
  "CustomRecipientEmailAddress": "sample string 2"
}

application/xml, text/xml

Sample:
<SendClaimLicenseSeatNotificationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Requests">
  <CustomRecipientEmailAddress>sample string 2</CustomRecipientEmailAddress>
  <LicenseId>7028e4ee-27f3-407e-9e18-1547c8a2b162</LicenseId>
</SendClaimLicenseSeatNotificationRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResponse
NameDescriptionTypeAdditional information
Errors

Collection of Error

None.

IsValid

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Errors": [
    {
      "PropertyName": "sample string 1",
      "Message": "sample string 2"
    },
    {
      "PropertyName": "sample string 1",
      "Message": "sample string 2"
    }
  ],
  "IsValid": false
}

application/xml, text/xml

Sample:
<ApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Core">
  <Errors>
    <Error>
      <Message>sample string 2</Message>
      <PropertyName>sample string 1</PropertyName>
    </Error>
    <Error>
      <Message>sample string 2</Message>
      <PropertyName>sample string 1</PropertyName>
    </Error>
  </Errors>
</ApiResponse>