action conjur_who_am_i { label: "Provides information about the client making an API request." description: "WhoAmI provides information about the client making an API request.\nIt can be used to help troubleshoot configuration by verifying authentication\nand the client IP address for audit and network access restrictions.\nFor more information, see Host Attributes.\n" provider: conjur method: GET path: "/whoami" encoding: json output: { type: "object" description: "Information about the client making a request" properties: { account: { type: "string" description: "The account attribute of the client provided access token." } client_ip: { type: "string" description: "The request client IP address as determined by Conjur. This same IP address appears in application logs and audit logs." } token_issued_at: { type: "string" description: "The issued timestamp, that is, when the provided access token was created (iat field in the JWT)" } user_agent: { type: "string" description: "The incoming request HTTP user agent header." } username: { type: "string" description: "The username attribute of the provided access token." } } } }