Team User Management
team.credential.delete
Permanently deletes an API credential. Any integrations still using it lose access immediately and irreversibly.
POST
/
team.v1.TeamManagementService
/
DeleteApiCredential
DeleteApiCredential
curl --request POST \
--url https://api.manus.im/team.v1.TeamManagementService/DeleteApiCredential \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"clientId": "tm_RRa7dgjD_AFhru6AnZJ8W"
}
'import requests
url = "https://api.manus.im/team.v1.TeamManagementService/DeleteApiCredential"
payload = { "clientId": "tm_RRa7dgjD_AFhru6AnZJ8W" }
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({clientId: 'tm_RRa7dgjD_AFhru6AnZJ8W'})
};
fetch('https://api.manus.im/team.v1.TeamManagementService/DeleteApiCredential', 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/DeleteApiCredential",
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([
'clientId' => 'tm_RRa7dgjD_AFhru6AnZJ8W'
]),
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/DeleteApiCredential"
payload := strings.NewReader("{\n \"clientId\": \"tm_RRa7dgjD_AFhru6AnZJ8W\"\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/DeleteApiCredential")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"clientId\": \"tm_RRa7dgjD_AFhru6AnZJ8W\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.manus.im/team.v1.TeamManagementService/DeleteApiCredential")
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 \"clientId\": \"tm_RRa7dgjD_AFhru6AnZJ8W\"\n}"
response = http.request(request)
puts response.read_body{}Questions or issues? Contact us at api-support@manus.ai.
Auth: Browser session token (Bearer).Immediate and irreversible: Any integration still using the credential loses access right away. Verify nothing is in flight before deleting.Cannot be undone: If you accidentally delete the wrong credential, create a fresh one via team.credential.create and rotate the consumer.Successful delete returns an empty object (
{}).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
Client identifier of the credential to delete.
Example:
"tm_RRa7dgjD_AFhru6AnZJ8W"
Response
200 - application/json
Credential deleted. Empty object on success.
The response is of type object.
⌘I
DeleteApiCredential
curl --request POST \
--url https://api.manus.im/team.v1.TeamManagementService/DeleteApiCredential \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"clientId": "tm_RRa7dgjD_AFhru6AnZJ8W"
}
'import requests
url = "https://api.manus.im/team.v1.TeamManagementService/DeleteApiCredential"
payload = { "clientId": "tm_RRa7dgjD_AFhru6AnZJ8W" }
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({clientId: 'tm_RRa7dgjD_AFhru6AnZJ8W'})
};
fetch('https://api.manus.im/team.v1.TeamManagementService/DeleteApiCredential', 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/DeleteApiCredential",
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([
'clientId' => 'tm_RRa7dgjD_AFhru6AnZJ8W'
]),
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/DeleteApiCredential"
payload := strings.NewReader("{\n \"clientId\": \"tm_RRa7dgjD_AFhru6AnZJ8W\"\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/DeleteApiCredential")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"clientId\": \"tm_RRa7dgjD_AFhru6AnZJ8W\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.manus.im/team.v1.TeamManagementService/DeleteApiCredential")
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 \"clientId\": \"tm_RRa7dgjD_AFhru6AnZJ8W\"\n}"
response = http.request(request)
puts response.read_body{}