GET
/
v1
/
employees
/
{employee_id}
curl --request GET \
  --url https://public-api.tryriot.com/v1/employees/{employee_id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "country_code": "FR",
    "created_at": "2024-01-13T10:00:00.000000Z",
    "department": {
      "name": "Devs"
    },
    "email_addresses": [
      {
        "address": "[email protected]",
        "is_primary": true,
        "source": "google"
      }
    ],
    "id": "e4ebfd69-3c2c-4028-b423-1bff3d87d58f",
    "job_title": "Account manager",
    "karma": {
      "score": 500,
      "security_level": "dangerous"
    },
    "language": "english",
    "manager": {
      "id": "e4ebfd69-3c2c-4028-b423-1bff3d87d58f",
      "name": "John Doe",
      "primary_email_address": "[email protected]"
    },
    "name": "John Doe",
    "primary_email_address": "[email protected]",
    "status": "active",
    "timezone": "Europe/Paris",
    "updated_at": "2024-01-13T10:00:00.000000Z",
    "workspace": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

employee_id
string
required

ID of the employee to retrieve

Response

200
application/json
Employee details
data
object
required