Users
User object holds information about a user of an organization.
The User object
Attribute
Type
Description
id
string
Unique user identifier
name
string
Full name of the user
string
Email address associated with the user
is_active
bool
Indicator whether the user is active or not. Inactive users cannot sign into Simple OKR.
created_at
string
Time when the user was created. RFC 3339 format.
Example:
List users
GET
https://api.simpleokr.com/v1/users
Returns a list of your users.
Query Parameters
Name
Type
Description
page_token
string
Page identifier
Retrieve user
GET
https://api.simpleokr.com/v1/users/:id
Retrieve details about the existing user. Supply a unique user ID from a user list response.
Path Parameters
Name
Type
Description
id
string
User ID
Last updated