GET
https://api.mediaos.com/users/
Paramater |
Description |
Required |
Default |
Data Type |
email |
|
No |
|
String |
first_name |
|
No |
|
String |
Paramater |
Description |
Data Type |
active |
|
Bool |
date_created |
|
Date |
date_deleted |
|
Date |
id |
Unique user identifier. |
Integer |
is_accounting |
If user has access to accounting functions. |
Bool |
is_admin |
If user has access to administrative functions. |
Bool |
is_metrics |
|
Bool |
is_production |
|
Bool |
is_sales |
|
Bool |
is_sales_manager |
|
Bool |
last_name |
|
String |
{
"users":[
{
"id":"43",
"first_name":"Demo",
"last_name":"Demo",
"email":"Demo@Demo.com",
"is_admin":true,
"is_accounting":true,
"is_production":false,
"is_metrics":true,
"is_sales_manager":false,
"is_sales":false,
"active":true,
"date_created":null,
"date_deleted":null
},
{
"id":"11",
"first_name":"Demo",
"last_name":"Demo",
"email":"Demo@Demo.com",
"is_admin":true,
"is_accounting":false,
"is_production":false,
"is_metrics":true,
"is_sales_manager":false,
"is_sales":true,
"active":true,
"date_created":null,
"date_deleted":null
}
]