Retrieves TPM Details across Computers.

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

This API provides Trusted Platform Module (TPM) Details, including manufacturer name and version, for all computers. Results can be filtered by domain or specific resource ID.

Endpoints

Request URL

https://{serverurl}/api/1.4/bitlocker/tpmreport

Scope

DesktopCentralCloud.DataEncryption.READCopied!

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/jsonapplication/jsonCopied!
Content-TypestringMandatory
application/jsonapplication/jsonCopied!

- Query Parameters

residfilterstringOptional

Filter TPM Reports with particular resource id

domainfilterstringOptional

Get domain list from api/1.4/desktop/serverproperties

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomains/api/1.4/bitlocker/tpmreport \
  --header 'Accept: application/json' \
  --header 'Authorization: Zoho-oauthtoken  d92d4xxxxxxxxxxxxx15f52' \
  --header 'Content-Type: application/json'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
message_typestring

Module Code

message_responseJSON Object

Response.

Show Sub-Attributes
totalinteger

Total Number of Records.

limitinteger

Maximum number of records included in this single response.

bitlockerreportsJSON Array

Bitlockerreports.

Show Sub-Attributes
JSON Object
Show Sub-Attributes
blmtpmvendor.manufacturer_namestring

TPM vendor/manufacturer name

manufacturer_versionstring

Firmware version of TPM

spec_versionstring

TPM specification version

managedcomputer.friendly_namestring

Computer friendly/host name

is_ownedstring

Whether TPM is owned

domain_netbios_namestring

Domain or Workgroup name

is_enabledstring

Whether TPM is enabled

resource_id_stringstring

Resource ID as string

is_activatedstring

Whether TPM is activated

resource_idinteger

Resource ID of machine

resource_namestring

Computer resource name

customer_idinteger

Customer/account ID

manufacturer_id_txtstring

TPM manufacturer ID text (short code, e.g., STM)

pageinteger

Page Number.

message_versioninteger

Api Version.

statusinteger

Status of Api call.

response_codeinteger

Response code.

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Copied!
  {
    "response_code": 200,
    "message_type": "tpmreport",
    "message_response": {
      "total": 1,
      "limit": 25,
      "page": 1,
      "tpmreport": [
        {
          "blmtpmvendor.manufacturer_name": "ST Microelectronics",
          "manufacturer_version": "1.258.0.0",
          "spec_version": "2.0, 0, 1.38",
          "managedcomputer.friendly_name": "John",
          "is_owned": true,
          "domain_netbios_name": "WORKGROUP",
          "is_enabled": true,
          "resource_id_string": "111301",
          "is_activated": true,
          "resource_id": 111301,
          "resource_name": "John",
          "customer_id": 1,
          "manufacturer_id_txt": "STM "
        }
      ]
    },
    "message_version": "1.4",
    "status": "success"
  }
                
Show full