/
Retrieve an account
GET
curl -i -X GET \
'https://api.pushsecurity.com/v1/accounts/{id}' \
-H 'x-api-key: YOUR_API_KEY_HERE'OK
Identifier of primary employee that this account belongs to
Example:"72d0347a-2663-4ef5-b1c5-df39163f1603"
The ID of the app associated with this account
Example:"2a2197de-ad2c-47e4-8dcb-fb0f04cf83e0"
Whether MFA is registered or not. If unknown, null is provided.
Example:true
Identifier of the password used on this account. The actual password is not sent up by the browser extension and so this is an identifier for it instead. This value is null if password authentication is not used.
Example:"4c13674f-e88a-4411-bfa2-53a70468a898"
When this account was created, formatted as a UNIX timestamp (in seconds)
Example:1698064423
Response
{ "id": "d6a32ba5-0532-4a66-8137-48cdf409c972", "employeeId": "72d0347a-2663-4ef5-b1c5-df39163f1603", "appType": "ATLASSIAN", "appId": "2a2197de-ad2c-47e4-8dcb-fb0f04cf83e0", "email": "john.hill@example.com", "mfaRegistered": true, "mfaMethods": [ "APP_TOTP" ], "passwordId": "4c13674f-e88a-4411-bfa2-53a70468a898", "loginMethods": { "passwordLogin": true, "lastPasswordLoginTimestamp": 1698064423, "oidcLogin": "GOOGLE_WORKSPACE", "lastOidcLoginTimestamp": 1698064423, "samlLogin": "OKTA", "lastSamlLoginTimestamp": 1698064423, "oktaSwaLogin": true, "lastOktaSwaLoginTimestamp": 1698064423, "vendorSsoLogin": "GOOGLE_WORKSPACE", "fedCmLogin": "GOOGLE_WORKSPACE", "lastFedCmLoginTimestamp": 1698064423 }, "creationTimestamp": 1698064423, "lastUsedTimestamp": 1698669168 }