### Third-Party Device-ID APIs Source: https://docs.paloaltonetworks.com/prisma-access/release-notes/4-1/prisma-access-about/new-features APIs for managing third-party device-ID integration within Prisma Access, including updating and querying verdicts. ```APIDOC ## POST /websites/paloaltonetworks_prisma-access/third-party-device-id/update-verdicts ### Description Updates verdicts for third-party device-ID. ### Method POST ### Endpoint /websites/paloaltonetworks_prisma-access/third-party-device-id/update-verdicts ### Parameters #### Request Body - **updateObject** (object) - Required - Details of the verdict to update. ### Request Example ```json { "updateObject": { "ipAddress": "192.168.1.100", "verdict": "clean" } } ``` ### Response #### Success Response (200) - **message** (string) - Confirmation of the update. #### Response Example ```json { "message": "Verdicts updated successfully." } ``` ``` ```APIDOC ## DELETE /websites/paloaltonetworks_prisma-access/third-party-device-id/delete-all-verdicts ### Description Deletes all third-party device-ID verdicts. ### Method DELETE ### Endpoint /websites/paloaltonetworks_prisma-access/third-party-device-id/delete-all-verdicts ### Response #### Success Response (200) - **message** (string) - Confirmation of deletion. #### Response Example ```json { "message": "All verdicts deleted successfully." } ``` ``` ```APIDOC ## GET /websites/paloaltonetworks_prisma-access/third-party-device-id/query-verdicts ### Description Queries all third-party device-ID verdicts. ### Method GET ### Endpoint /websites/paloaltonetworks_prisma-access/third-party-device-id/query-verdicts ### Parameters #### Query Parameters - **verdictsObject** (object) - Optional - Filter for specific verdicts. ### Response #### Success Response (200) - **verdicts** (array) - A list of verdict objects. - **ipAddress** (string) - The IP address. - **verdict** (string) - The verdict status. #### Response Example ```json { "verdicts": [ { "ipAddress": "192.168.1.100", "verdict": "malicious" }, { "ipAddress": "192.168.1.101", "verdict": "clean" } ] } ``` ``` ```APIDOC ## GET /websites/paloaltonetworks_prisma-access/third-party-device-id/query-verdicts-by-ip ### Description Queries third-party device-ID verdicts by IP address. ### Method GET ### Endpoint /websites/paloaltonetworks_prisma-access/third-party-device-id/query-verdicts-by-ip ### Parameters #### Query Parameters - **ipAddress** (string) - Required - The IP address to query. ### Response #### Success Response (200) - **verdicts** (array) - A list of verdict objects for the specified IP address. - **ipAddress** (string) - The IP address. - **verdict** (string) - The verdict status. #### Response Example ```json { "verdicts": [ { "ipAddress": "192.168.1.100", "verdict": "malicious" } ] } ``` ``` ```APIDOC ## GET /websites/paloaltonetworks_prisma-access/third-party-device-id/query-verdict-statistics ### Description Queries statistics for third-party device-ID verdicts. ### Method GET ### Endpoint /websites/paloaltonetworks_prisma-access/third-party-device-id/query-verdict-statistics ### Response #### Success Response (200) - **statistics** (object) - Statistics about the verdicts. - **totalVerdicts** (integer) - The total number of verdicts. - **cleanCount** (integer) - The count of clean verdicts. - **maliciousCount** (integer) - The count of malicious verdicts. #### Response Example ```json { "statistics": { "totalVerdicts": 150, "cleanCount": 120, "maliciousCount": 30 } } ``` ``` -------------------------------- ### Query Third-Party Device-ID Verdicts via API Source: https://docs.paloaltonetworks.com/prisma-access/release-notes/4-1/prisma-access-about/new-features This section covers querying verdict information for third-party device-ID integration with Prisma Access. It includes retrieving all verdicts, verdicts by IP address, and verdict statistics. ```api verdicts Object Query Verdicts by IP Address Query Verdict Statistics ``` -------------------------------- ### Update Third-Party Device-ID Verdicts via API Source: https://docs.paloaltonetworks.com/prisma-access/release-notes/4-1/prisma-access-about/new-features This section details how to update verdicts for third-party device-ID integration with Prisma Access using API calls. It includes methods for updating individual objects and deleting all verdicts. ```api update Object Delete All Verdicts ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.