Provides access to Hyperpoof user information.
Users API (1.0)
Download OpenAPI description
Languages
Servers
Mock server
https://developer.hyperproof.app/_mock/hyperproof-api/users/users.openapi
Hyperproof US
https://api.hyperproof.app/v1/users
Hyperproof Gov
https://api.hyperproofgov.app/v1/users
Hyperproof EU
https://api.hyperproof.eu/v1/users
- Mock serverhttps://developer.hyperproof.app/_mock/hyperproof-api/users/users.openapi/me
- Hyperproof UShttps://api.hyperproof.app/v1/users/me
- Hyperproof Govhttps://api.hyperproofgov.app/v1/users/me
- Hyperproof EUhttps://api.hyperproof.eu/v1/users/me
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.hyperproof.app/_mock/hyperproof-api/users/users.openapi/me?expand=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Success.
The list of identity providers for the user.
Example: ["google.com","okta.com"]
The organization role identifier for the user.
Example: "b97cf308-2504-4b56-bece-1f523070e2d9"
The date and time of the user's last login (ISO-8601 format).
Example: "2023-05-12T14:16:27.41766Z"
The state of the user.
Enum"pending""valid""not_invited""disabled""erased"
Example: "verified"
The date the user was verified (ISO-8601 format).
Example: "2023-05-12T14:16:27.41766Z"
Response
application/json
{ "id": "82d7c228-8bcd-11e9-a94b-ab3de8494987", "givenName": "John", "surname": "Smith", "email": "[email protected]", "language": "en", "locale": "US", "timeZone": "America/Los_Angeles", "identityProviders": [ "google.com", "okta.com" ], "organizationRoleId": "b97cf308-2504-4b56-bece-1f523070e2d9", "lastLogin": "2023-05-12T14:16:27.4176600+00:00", "state": "verified", "verifiedOn": "2023-05-12T14:16:27.4176600+00:00", "termsAcceptedOn": "2023-05-12T14:16:27.4176600+00:00" }
- Mock serverhttps://developer.hyperproof.app/_mock/hyperproof-api/users/users.openapi
- Hyperproof UShttps://api.hyperproof.app/v1/users
- Hyperproof Govhttps://api.hyperproofgov.app/v1/users
- Hyperproof EUhttps://api.hyperproof.eu/v1/users
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.hyperproof.app/_mock/hyperproof-api/users/users.openapi/?expand=string&includeDeactivated=true' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Success.
The unique identifier of the organization user.
Example: "82182460-f0cf-11ed-9f4f-0e9de14f3c22"
The user identifier of the organization user.
Example: "8217610f-f0cf-11ed-9f4f-0e9de14f3c22"
The type of organization user.
Enum"activeUser""contact""deactivatedUser""serviceAccount""deactivatedServiceAccount""syncServiceAccount""deactivatedSyncServiceAccount"
Example: "activeUser"
Response
application/json
[ { "id": "82182460-f0cf-11ed-9f4f-0e9de14f3c22", "givenName": "John", "surname": "Smith", "email": "[email protected]", "language": "en", "locale": "US", "timeZone": "America/Los_Angeles", "userId": "8217610f-f0cf-11ed-9f4f-0e9de14f3c22", "type": "activeUser" } ]