Query Identity (v1.0)
Queries the Identity Awareness Check Point Software Blade on a Security Gateway that enforces network access and audits data based on network location, the identity of the user, and the identity of the computer. Acronym: IDA. associations of a given IP address.

POST https://<IP Address or FQDN of Gateway>/_IA_API/idasdk/show-identity |

|
Note - If more than one identity source authenticated the user, the result shows a separate record for each identity source. |

Request
POST https://gw.acme.com/_IA_API/v1.0/show-identity
{ "shared-secret":"****", "ip-address":"1.1.1.1" } |
Response 1 - User identity is available
{
"combined-roles":[
"All_Identified_Users",
"User_John"
],
"domain":"cme.com",
"ipv4-address":"1.1.1.1",
"machine":"admin-pc@cme.com",
"message":"total 1 user records were found.",
"users":[
{
"groups":[
"All Users",
"ad_user_John_Smith"
],
"identity-source':AD Query",
"roles":[
"All_identified_Users",
"User_John"
],
"user":"JohnSmith"
}
]
}
|
Response 2 - User and computer identities are available
Response 3 - Multiple user identities are available
Response 4 - No identity found
{ "ipv4-address" : "1.1.1.1", "message" : "total 0 user records were found." } |