POST License/Log

Request Information

URI Parameters

None.

Body Parameters

LicensingLog
NameDescriptionTypeAdditional information
Message

string

None.

SystemInfo

WebApiSystemInfo

None.

Request Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "SystemInfo": {
    "CorpId": "sample string 1",
    "UriAuthority": "sample string 2",
    "StartTimeUTC": "2026-06-19T11:02:40.2669952-04:00",
    "UTCOffset": 4,
    "LocalTimeZone": "sample string 5",
    "UserDomainName": "sample string 6",
    "MachineName": "sample string 7",
    "UUID": "sample string 8",
    "IdentifyingNumber": "sample string 9",
    "OSVersion": "sample string 10",
    "Is64BitOperatingSystem": true,
    "ProcessorName": "sample string 12"
  }
}

application/xml, text/xml

Sample:
<LicensingLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RCCI.Models">
  <Message>sample string 1</Message>
  <SystemInfo>
    <CorpId>sample string 1</CorpId>
    <IdentifyingNumber>sample string 9</IdentifyingNumber>
    <Is64BitOperatingSystem>true</Is64BitOperatingSystem>
    <LocalTimeZone>sample string 5</LocalTimeZone>
    <MachineName>sample string 7</MachineName>
    <OSVersion>sample string 10</OSVersion>
    <ProcessorName>sample string 12</ProcessorName>
    <StartTimeUTC>2026-06-19T11:02:40.2669952-04:00</StartTimeUTC>
    <UTCOffset>4</UTCOffset>
    <UUID>sample string 8</UUID>
    <UriAuthority>sample string 2</UriAuthority>
    <UserDomainName>sample string 6</UserDomainName>
  </SystemInfo>
</LicensingLog>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseResponseOfBoolean
NameDescriptionTypeAdditional information
Item

boolean

None.

Items

Collection of boolean

None.

NumberOfRowsProcessed

integer

None.

ResponseStatus

ResponseStatus

None.

Response Formats

application/json, text/json

Sample:
{
  "Item": true,
  "Items": [
    true,
    true
  ],
  "NumberOfRowsProcessed": 2,
  "ResponseStatus": {
    "ErrorCode": "sample string 1",
    "Message": "sample string 2",
    "StackTrace": "sample string 3",
    "Errors": [
      "sample string 1",
      "sample string 2"
    ],
    "Title": "sample string 4"
  }
}

application/xml, text/xml

Sample:
<BaseResponseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RCCI.Models">
  <ResponseStatus>
    <ErrorCode>sample string 1</ErrorCode>
    <Errors xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>sample string 1</d3p1:string>
      <d3p1:string>sample string 2</d3p1:string>
    </Errors>
    <Message>sample string 2</Message>
    <StackTrace>sample string 3</StackTrace>
    <Title>sample string 4</Title>
  </ResponseStatus>
  <Item>true</Item>
  <Items xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:boolean>true</d2p1:boolean>
    <d2p1:boolean>true</d2p1:boolean>
  </Items>
  <NumberOfRowsProcessed>2</NumberOfRowsProcessed>
</BaseResponseOfboolean>