Team User Management
users.list
Lists team members with offset-based pagination. Default limit is 100, max 1000.
GET
/
api
/
user
/
manage
/
v1
/
users
List Users
curl --request GET \
--url https://api.manus.im/api/user/manage/v1/users \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.manus.im/api/user/manage/v1/users"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.manus.im/api/user/manage/v1/users', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.manus.im/api/user/manage/v1/users",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.manus.im/api/user/manage/v1/users"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.manus.im/api/user/manage/v1/users")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.manus.im/api/user/manage/v1/users")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"users": [
{
"email": "user@example.com",
"userName": "Jane Doe",
"firstName": "Jane",
"lastName": "Doe",
"status": "active",
"role": "member"
}
],
"total": 123,
"limit": 123,
"offset": 123
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Questions or issues? Contact us at api-support@manus.ai.
Auth: Bearer access token from oauth.token.Pagination: Offset-based.
limit defaults to 100, max 1000. offset defaults to 0. For SailPoint Account Aggregation use limit=1000 and increment offset until you receive fewer than limit records.Response shape: users[] plus total / limit / offset echoes for pager bookkeeping.Field availability: userName / firstName / lastName are populated from the underlying personal user account; they may be empty for accounts created via API without those fields.Authorizations
OAuth 2.0 Client Credentials access token issued by /api/user/manage/v1/oauth/token. Lifetime is 1 hour.
Query Parameters
Records to return (1–1000).
Example:
100
Records to skip.
Example:
0
Response
Users retrieved successfully.
Hide child attributes
Hide child attributes
Example:
"user@example.com"
Example:
"Jane Doe"
Example:
"Jane"
Example:
"Doe"
Available options:
active, inactive Example:
"active"
owner is read-only — it cannot be set or changed via API. free_tier_member is a non-paying member that does not consume a Stripe seat.
Available options:
owner, super_admin, admin, member, free_tier_member Example:
"member"
Total number of team members.
⌘I
List Users
curl --request GET \
--url https://api.manus.im/api/user/manage/v1/users \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.manus.im/api/user/manage/v1/users"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.manus.im/api/user/manage/v1/users', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.manus.im/api/user/manage/v1/users",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.manus.im/api/user/manage/v1/users"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.manus.im/api/user/manage/v1/users")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.manus.im/api/user/manage/v1/users")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"users": [
{
"email": "user@example.com",
"userName": "Jane Doe",
"firstName": "Jane",
"lastName": "Doe",
"status": "active",
"role": "member"
}
],
"total": 123,
"limit": 123,
"offset": 123
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}