Responses
-
List of users in your team.
-
Bad Request -- Your request is invalid.
-
Unauthorized -- Your API key is wrong.
-
Forbidden -- The object requested is hidden for administrators only.
-
Not Found -- The specified object could not be found.
-
Too Many Requests -- You're requesting too many objects! Slow down!
-
Internal Server Error -- We had a problem with our server. Try again later.
-
Service Unavailable -- We're temporarily offline for maintenance. Please try again later.
GET
/users
curl \
--request GET 'https://api.usecollect.com/v1/users' \
--user "username:password"
Response examples (200)
[
{
"_id": "upKywNKgwyHx3hKfF",
"role": "admin",
"email": "richard.hendricks@example.com",
"status": "active",
"lastName": "Hendricks",
"firstName": "Richard"
},
{
"_id": "ABx6DYtqExcgJ4FAX",
"role": "member",
"email": "erlich.bachman@example.com",
"status": "active",
"lastName": "Bachman",
"firstName": "Erlich"
},
{
"_id": "uSw8YyNuwhGmqEEKc",
"role": "member",
"email": "dinesh.chugtai@example.com",
"status": "active",
"lastName": "Chugtai",
"firstName": "Dinesh"
},
{
"_id": "RQEPygugi3Nk9Sudm",
"role": "member",
"email": "gilfoyle@example.com",
"status": "active"
}
]