Delete Identity (v1.0)
Delete 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 for one IP address, a range of IP addresses, a subnet, or associations for an IP address and a user name.

Client type |
Description |
---|---|
|
All identity sources |
|
|
|
Identity Agents |
|
Remote Access |
|
Active Directory query |
|
Terminal Servers (Multi-User Host (MUH) Agent) |
|
RADIUS Accounting |
|
Identity Web API |
|

Example 1 - Delete by IP
Request
POST https://gw.acme.com/_IA_API/1.0/delete-identity
{ "shared-secret":"****", "ip-address":"1.1.1.1" } |
Response
{ "count":"1", "ipv4-address":"1.1.1.1", "message":"Disassociation sent to PDP." } |
Example 2 - Delete by IP range
Request
POST https://gw.acme.com/_IA_API/v1.0/delete-identity
{ "shared-secret":"****", "revoke-method":"range", "ip-address-first":"1.1.1.2", "ip-address-last":"1.1.1.3" } |
Response
Example 3 - Delete by IP subnet
Request
POST https://gw.acme.com/_IA_API/idasdk/delete-identity
{ "shared-secret":"****", "revoke-method":"mask", "subnet":"1.1.1.1", "subnet-mask":"255.255.255.0" } |
Response
Example 4 - Delete by IP and user name
Request
POST https://gw.acme.com/_IA_API/idasdk/delete-identity
{ "shared-secret":"****", "ipv4-address":"1.1.1.1", "revoke-method":"user-name-and-ip", "user":"USER_NAME", } |
Response
{ "count":"2", "ipv4-address":"1.1.1.1", "message":"Disassociation sent to PDP." } |