GET
/
orgs
/
{org_id}
/
org_users
curl --request GET \
  --url https://api.zivio.net/api/v3/orgs/{org_id}/org_users \
  --header 'X-API-Key: <api-key>' \
  --header 'zivio-tenant-id: <api-key>'
[
  {
    "id": "12",
    "first_name": "John",
    "last_name": "Smith",
    "email": "john@smith.com",
    "business_unit": "Finance and Investment",
    "division": "Software Development",
    "department": "Technology",
    "vetting_status": "PASSED",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "custom_fields": {
      "key": "value"
    },
    "has_oversight": "true"
  }
]

Authorizations

X-API-Key
string
header
required
zivio-tenant-id
string
header
required

Path Parameters

org_id
integer
required

Query Parameters

q
string

Query string. Match by name

created
string

Date range [2020-01-01+TO+2020-01-30], to search based on created timestamp for object.

updated
string

Date range [2020-01-01+TO+2020-01-30] to search based on updated timestamp for object.

limit
integer

Number of results returned per request

page
integer

Paginate results when number of results exceeds limit

Response

200
*/*
ok
id
integer
Example:

"12"

first_name
string
Example:

"John"

last_name
string
Example:

"Smith"

email
string
Example:

"john@smith.com"

business_unit
string
Example:

"Finance and Investment"

division
string
Example:

"Software Development"

department
string
Example:

"Technology"

vetting_status
string
Example:

"PASSED"

created_at
string
updated_at
string
custom_fields
object
has_oversight
string
Example:

"true"