Team User Management
team.credential.list
Lists API credentials for the authenticated user’s team. clientSecret is never returned by list operations.
POST
/
team.v1.TeamManagementService
/
ListApiCredentials
ListApiCredentials
curl --request POST \
--url https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"page": 1,
"pageSize": 10
}
'import requests
url = "https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials"
payload = {
"page": 1,
"pageSize": 10
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({page: 1, pageSize: 10})
};
fetch('https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials', 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/team.v1.TeamManagementService/ListApiCredentials",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'page' => 1,
'pageSize' => 10
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials"
payload := strings.NewReader("{\n \"page\": 1,\n \"pageSize\": 10\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"page\": 1,\n \"pageSize\": 10\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"page\": 1,\n \"pageSize\": 10\n}"
response = http.request(request)
puts response.read_body{
"credentials": [
{
"clientId": "tm_RRa7dgjD_AFhru6AnZJ8W",
"name": "SailPoint Production",
"createdAt": "2026-01-15T10:30:00Z",
"lastUsedAt": "2026-01-20T08:45:00Z"
}
],
"total": "2"
}Questions or issues? Contact us at api-support@manus.ai.
Auth: Browser session token (Bearer).
clientSecret is never returned by list operations — it is only available from team.credential.create.Pagination: Page-based. page starts at 1; pageSize is 1–100.lastUsedAt: Refreshed every time the credential is used to mint an OAuth token via oauth.token. Use it to identify stale credentials worth revoking.total is a string: Per proto3 int64 conventions, total is serialized as a JSON string (e.g. "2").Authorizations
Browser session token. Open Manus, find any authenticated request in DevTools → Network, and copy the value after Bearer from the Authorization header. Used only for credential management RPCs.
Body
application/json
Response
200 - application/json
Credentials retrieved successfully.
Hide child attributes
Hide child attributes
Example:
"tm_RRa7dgjD_AFhru6AnZJ8W"
Example:
"SailPoint Production"
Example:
"2026-01-15T10:30:00Z"
Last time this credential was used to mint an OAuth token. Omitted if never used.
Example:
"2026-01-20T08:45:00Z"
Total number of credentials. Serialized as a string per proto3 int64 conventions.
Example:
"2"
⌘I
ListApiCredentials
curl --request POST \
--url https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"page": 1,
"pageSize": 10
}
'import requests
url = "https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials"
payload = {
"page": 1,
"pageSize": 10
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({page: 1, pageSize: 10})
};
fetch('https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials', 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/team.v1.TeamManagementService/ListApiCredentials",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'page' => 1,
'pageSize' => 10
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials"
payload := strings.NewReader("{\n \"page\": 1,\n \"pageSize\": 10\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"page\": 1,\n \"pageSize\": 10\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.manus.im/team.v1.TeamManagementService/ListApiCredentials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"page\": 1,\n \"pageSize\": 10\n}"
response = http.request(request)
puts response.read_body{
"credentials": [
{
"clientId": "tm_RRa7dgjD_AFhru6AnZJ8W",
"name": "SailPoint Production",
"createdAt": "2026-01-15T10:30:00Z",
"lastUsedAt": "2026-01-20T08:45:00Z"
}
],
"total": "2"
}