GET https://api.mediaos.com/users/{user_id}
Response Parameters
Paramater Description Data Type
active Bool
email String
first_name String
is_admin If user has access to administrative functions. Bool
is_metrics If user has access to company reporting functions. Bool
is_production If user has access to production functions. Bool
is_sales If user has access to sales functions. Bool
is_sales_manager If user has access to sales management functions. Bool
last_name String
Example Response
{
  "user_id":"1",
  "first_name":"Joe",
  "last_name":"Salesman",
  "email":"sales@papeventures.com",
  "is_admin":true,
  "is_accounting":true,
  "is_production":true,
  "is_metrics":true,
  "is_sales_manager":false,
  "is_sales":true,
  "active":true,
  "date_created":null,
  "date_deleted":null
}