curl --request POST \
--url https://app.gtm-api.com/id/v4/api/oauth-clients/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Team-SID: <api-key>' \
--data '
{
"filter": {
"sid": {
"eq": "<string>",
"in": [
"<string>"
]
},
"team_sid": {
"eq": "<string>",
"in": [
"<string>"
],
"is_null": true
},
"client_id": {
"eq": "<string>",
"in": [
"<string>"
]
},
"name": {
"eq": "<string>"
},
"status": {
"in": []
},
"is_confidential": {
"eq": true
},
"registration_kind": {
"in": []
},
"created_at": {
"gte": "<string>",
"lte": "<string>",
"gt": "<string>",
"lt": "<string>"
},
"deleted_at": {
"gte": "<string>",
"lte": "<string>",
"is_null": true
}
},
"include": [
"active_sessions"
],
"page_size": 250,
"cursor": "<string>"
}
'import requests
url = "https://app.gtm-api.com/id/v4/api/oauth-clients/search"
payload = {
"filter": {
"sid": {
"eq": "<string>",
"in": ["<string>"]
},
"team_sid": {
"eq": "<string>",
"in": ["<string>"],
"is_null": True
},
"client_id": {
"eq": "<string>",
"in": ["<string>"]
},
"name": { "eq": "<string>" },
"status": { "in": [] },
"is_confidential": { "eq": True },
"registration_kind": { "in": [] },
"created_at": {
"gte": "<string>",
"lte": "<string>",
"gt": "<string>",
"lt": "<string>"
},
"deleted_at": {
"gte": "<string>",
"lte": "<string>",
"is_null": True
}
},
"include": ["active_sessions"],
"page_size": 250,
"cursor": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Team-SID": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
Authorization: 'Bearer <token>',
'Team-SID': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
filter: {
sid: {eq: '<string>', in: ['<string>']},
team_sid: {eq: '<string>', in: ['<string>'], is_null: true},
client_id: {eq: '<string>', in: ['<string>']},
name: {eq: '<string>'},
status: {in: []},
is_confidential: {eq: true},
registration_kind: {in: []},
created_at: {gte: '<string>', lte: '<string>', gt: '<string>', lt: '<string>'},
deleted_at: {gte: '<string>', lte: '<string>', is_null: true}
},
include: ['active_sessions'],
page_size: 250,
cursor: '<string>'
})
};
fetch('https://app.gtm-api.com/id/v4/api/oauth-clients/search', 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://app.gtm-api.com/id/v4/api/oauth-clients/search",
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([
'filter' => [
'sid' => [
'eq' => '<string>',
'in' => [
'<string>'
]
],
'team_sid' => [
'eq' => '<string>',
'in' => [
'<string>'
],
'is_null' => true
],
'client_id' => [
'eq' => '<string>',
'in' => [
'<string>'
]
],
'name' => [
'eq' => '<string>'
],
'status' => [
'in' => [
]
],
'is_confidential' => [
'eq' => true
],
'registration_kind' => [
'in' => [
]
],
'created_at' => [
'gte' => '<string>',
'lte' => '<string>',
'gt' => '<string>',
'lt' => '<string>'
],
'deleted_at' => [
'gte' => '<string>',
'lte' => '<string>',
'is_null' => true
]
],
'include' => [
'active_sessions'
],
'page_size' => 250,
'cursor' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Team-SID: <api-key>"
],
]);
$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://app.gtm-api.com/id/v4/api/oauth-clients/search"
payload := strings.NewReader("{\n \"filter\": {\n \"sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"team_sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ],\n \"is_null\": true\n },\n \"client_id\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"name\": {\n \"eq\": \"<string>\"\n },\n \"status\": {\n \"in\": []\n },\n \"is_confidential\": {\n \"eq\": true\n },\n \"registration_kind\": {\n \"in\": []\n },\n \"created_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"gt\": \"<string>\",\n \"lt\": \"<string>\"\n },\n \"deleted_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"is_null\": true\n }\n },\n \"include\": [\n \"active_sessions\"\n ],\n \"page_size\": 250,\n \"cursor\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Team-SID", "<api-key>")
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://app.gtm-api.com/id/v4/api/oauth-clients/search")
.header("Authorization", "Bearer <token>")
.header("Team-SID", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"filter\": {\n \"sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"team_sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ],\n \"is_null\": true\n },\n \"client_id\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"name\": {\n \"eq\": \"<string>\"\n },\n \"status\": {\n \"in\": []\n },\n \"is_confidential\": {\n \"eq\": true\n },\n \"registration_kind\": {\n \"in\": []\n },\n \"created_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"gt\": \"<string>\",\n \"lt\": \"<string>\"\n },\n \"deleted_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"is_null\": true\n }\n },\n \"include\": [\n \"active_sessions\"\n ],\n \"page_size\": 250,\n \"cursor\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.gtm-api.com/id/v4/api/oauth-clients/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Team-SID"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"filter\": {\n \"sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"team_sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ],\n \"is_null\": true\n },\n \"client_id\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"name\": {\n \"eq\": \"<string>\"\n },\n \"status\": {\n \"in\": []\n },\n \"is_confidential\": {\n \"eq\": true\n },\n \"registration_kind\": {\n \"in\": []\n },\n \"created_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"gt\": \"<string>\",\n \"lt\": \"<string>\"\n },\n \"deleted_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"is_null\": true\n }\n },\n \"include\": [\n \"active_sessions\"\n ],\n \"page_size\": 250,\n \"cursor\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"operation": "search",
"items": [
{
"item": {
"sid": "<string>",
"team_sid": "<string>",
"name": "<string>",
"client_id": "<string>",
"redirect_uris": [
"<string>"
],
"grant_types": [],
"permissions": [
"<string>"
],
"is_confidential": true,
"created_by": {
"actor_sid": "<string>",
"team_sid": "<string>",
"permissions": {},
"request_sid": "<string>",
"reason": "<string>"
},
"created_at": "<string>",
"updated_at": "<string>",
"deleted_at": "<string>",
"client_secret": "<string>"
},
"included": {}
}
],
"pagination": {
"next_cursor": "<string>",
"has_more": true,
"total_count": 123
},
"applied_filters": {},
"includes": [
"<string>"
],
"meta": {
"trace_id": "<string>",
"span_id": "<string>",
"timestamp": "<string>",
"duration_ms": 1,
"debug_url": "<string>"
},
"counts": {
"total_count": 123,
"groups": {}
}
}{
"success": false,
"error": {
"message": "<string>",
"recoverable": true,
"suggestion": "<string>",
"field_errors": {},
"blockers": [
{
"type": "<string>",
"description": "<string>",
"entity_sid": "<string>",
"resolution": "<string>",
"resolution_hint": "<string>",
"count": 123
}
],
"context": {}
},
"meta": {
"trace_id": "<string>",
"span_id": "<string>",
"timestamp": "<string>",
"duration_ms": 1,
"debug_url": "<string>"
}
}{
"success": false,
"error": {
"message": "<string>",
"recoverable": true,
"suggestion": "<string>",
"field_errors": {},
"blockers": [
{
"type": "<string>",
"description": "<string>",
"entity_sid": "<string>",
"resolution": "<string>",
"resolution_hint": "<string>",
"count": 123
}
],
"context": {}
},
"meta": {
"trace_id": "<string>",
"span_id": "<string>",
"timestamp": "<string>",
"duration_ms": 1,
"debug_url": "<string>"
}
}Search OAuth clients
List registered OAuth applications for the caller’s team (plus platform clients when team_sid.is_null). Filter by status, client_id, registration_kind, is_confidential; include:[“active_sessions”] to see the agents connected through each app (requires sessions.view). No full-text: filter by name / client_id. page_size:0 returns counts only.
Contract:
- MCP tool
search_oauth_clients, registry packagemcp.id/oauth_clients, mountid.access. - Operation
search, response envelopesearch. - Flags: read only.
curl --request POST \
--url https://app.gtm-api.com/id/v4/api/oauth-clients/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Team-SID: <api-key>' \
--data '
{
"filter": {
"sid": {
"eq": "<string>",
"in": [
"<string>"
]
},
"team_sid": {
"eq": "<string>",
"in": [
"<string>"
],
"is_null": true
},
"client_id": {
"eq": "<string>",
"in": [
"<string>"
]
},
"name": {
"eq": "<string>"
},
"status": {
"in": []
},
"is_confidential": {
"eq": true
},
"registration_kind": {
"in": []
},
"created_at": {
"gte": "<string>",
"lte": "<string>",
"gt": "<string>",
"lt": "<string>"
},
"deleted_at": {
"gte": "<string>",
"lte": "<string>",
"is_null": true
}
},
"include": [
"active_sessions"
],
"page_size": 250,
"cursor": "<string>"
}
'import requests
url = "https://app.gtm-api.com/id/v4/api/oauth-clients/search"
payload = {
"filter": {
"sid": {
"eq": "<string>",
"in": ["<string>"]
},
"team_sid": {
"eq": "<string>",
"in": ["<string>"],
"is_null": True
},
"client_id": {
"eq": "<string>",
"in": ["<string>"]
},
"name": { "eq": "<string>" },
"status": { "in": [] },
"is_confidential": { "eq": True },
"registration_kind": { "in": [] },
"created_at": {
"gte": "<string>",
"lte": "<string>",
"gt": "<string>",
"lt": "<string>"
},
"deleted_at": {
"gte": "<string>",
"lte": "<string>",
"is_null": True
}
},
"include": ["active_sessions"],
"page_size": 250,
"cursor": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Team-SID": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
Authorization: 'Bearer <token>',
'Team-SID': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
filter: {
sid: {eq: '<string>', in: ['<string>']},
team_sid: {eq: '<string>', in: ['<string>'], is_null: true},
client_id: {eq: '<string>', in: ['<string>']},
name: {eq: '<string>'},
status: {in: []},
is_confidential: {eq: true},
registration_kind: {in: []},
created_at: {gte: '<string>', lte: '<string>', gt: '<string>', lt: '<string>'},
deleted_at: {gte: '<string>', lte: '<string>', is_null: true}
},
include: ['active_sessions'],
page_size: 250,
cursor: '<string>'
})
};
fetch('https://app.gtm-api.com/id/v4/api/oauth-clients/search', 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://app.gtm-api.com/id/v4/api/oauth-clients/search",
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([
'filter' => [
'sid' => [
'eq' => '<string>',
'in' => [
'<string>'
]
],
'team_sid' => [
'eq' => '<string>',
'in' => [
'<string>'
],
'is_null' => true
],
'client_id' => [
'eq' => '<string>',
'in' => [
'<string>'
]
],
'name' => [
'eq' => '<string>'
],
'status' => [
'in' => [
]
],
'is_confidential' => [
'eq' => true
],
'registration_kind' => [
'in' => [
]
],
'created_at' => [
'gte' => '<string>',
'lte' => '<string>',
'gt' => '<string>',
'lt' => '<string>'
],
'deleted_at' => [
'gte' => '<string>',
'lte' => '<string>',
'is_null' => true
]
],
'include' => [
'active_sessions'
],
'page_size' => 250,
'cursor' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Team-SID: <api-key>"
],
]);
$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://app.gtm-api.com/id/v4/api/oauth-clients/search"
payload := strings.NewReader("{\n \"filter\": {\n \"sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"team_sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ],\n \"is_null\": true\n },\n \"client_id\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"name\": {\n \"eq\": \"<string>\"\n },\n \"status\": {\n \"in\": []\n },\n \"is_confidential\": {\n \"eq\": true\n },\n \"registration_kind\": {\n \"in\": []\n },\n \"created_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"gt\": \"<string>\",\n \"lt\": \"<string>\"\n },\n \"deleted_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"is_null\": true\n }\n },\n \"include\": [\n \"active_sessions\"\n ],\n \"page_size\": 250,\n \"cursor\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Team-SID", "<api-key>")
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://app.gtm-api.com/id/v4/api/oauth-clients/search")
.header("Authorization", "Bearer <token>")
.header("Team-SID", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"filter\": {\n \"sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"team_sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ],\n \"is_null\": true\n },\n \"client_id\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"name\": {\n \"eq\": \"<string>\"\n },\n \"status\": {\n \"in\": []\n },\n \"is_confidential\": {\n \"eq\": true\n },\n \"registration_kind\": {\n \"in\": []\n },\n \"created_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"gt\": \"<string>\",\n \"lt\": \"<string>\"\n },\n \"deleted_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"is_null\": true\n }\n },\n \"include\": [\n \"active_sessions\"\n ],\n \"page_size\": 250,\n \"cursor\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.gtm-api.com/id/v4/api/oauth-clients/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Team-SID"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"filter\": {\n \"sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"team_sid\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ],\n \"is_null\": true\n },\n \"client_id\": {\n \"eq\": \"<string>\",\n \"in\": [\n \"<string>\"\n ]\n },\n \"name\": {\n \"eq\": \"<string>\"\n },\n \"status\": {\n \"in\": []\n },\n \"is_confidential\": {\n \"eq\": true\n },\n \"registration_kind\": {\n \"in\": []\n },\n \"created_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"gt\": \"<string>\",\n \"lt\": \"<string>\"\n },\n \"deleted_at\": {\n \"gte\": \"<string>\",\n \"lte\": \"<string>\",\n \"is_null\": true\n }\n },\n \"include\": [\n \"active_sessions\"\n ],\n \"page_size\": 250,\n \"cursor\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"operation": "search",
"items": [
{
"item": {
"sid": "<string>",
"team_sid": "<string>",
"name": "<string>",
"client_id": "<string>",
"redirect_uris": [
"<string>"
],
"grant_types": [],
"permissions": [
"<string>"
],
"is_confidential": true,
"created_by": {
"actor_sid": "<string>",
"team_sid": "<string>",
"permissions": {},
"request_sid": "<string>",
"reason": "<string>"
},
"created_at": "<string>",
"updated_at": "<string>",
"deleted_at": "<string>",
"client_secret": "<string>"
},
"included": {}
}
],
"pagination": {
"next_cursor": "<string>",
"has_more": true,
"total_count": 123
},
"applied_filters": {},
"includes": [
"<string>"
],
"meta": {
"trace_id": "<string>",
"span_id": "<string>",
"timestamp": "<string>",
"duration_ms": 1,
"debug_url": "<string>"
},
"counts": {
"total_count": 123,
"groups": {}
}
}{
"success": false,
"error": {
"message": "<string>",
"recoverable": true,
"suggestion": "<string>",
"field_errors": {},
"blockers": [
{
"type": "<string>",
"description": "<string>",
"entity_sid": "<string>",
"resolution": "<string>",
"resolution_hint": "<string>",
"count": 123
}
],
"context": {}
},
"meta": {
"trace_id": "<string>",
"span_id": "<string>",
"timestamp": "<string>",
"duration_ms": 1,
"debug_url": "<string>"
}
}{
"success": false,
"error": {
"message": "<string>",
"recoverable": true,
"suggestion": "<string>",
"field_errors": {},
"blockers": [
{
"type": "<string>",
"description": "<string>",
"entity_sid": "<string>",
"resolution": "<string>",
"resolution_hint": "<string>",
"count": 123
}
],
"context": {}
},
"meta": {
"trace_id": "<string>",
"span_id": "<string>",
"timestamp": "<string>",
"duration_ms": 1,
"debug_url": "<string>"
}
}Authorizations
Access token issued by gtm.service.id. Its access_identity claim carries team_sid, actor_sid and actor_type, and that team scope is authoritative.
Team scope for tokens that do not carry one. Ignored when the token already names a team.
Body
Request body of search_oauth_clients.
Show child attributes
Show child attributes
Relations to eager-load (see entity Includes).
active_sessions Show child attributes
Show child attributes
0..500, default 50. page_size=0 = count-only, page_size=1 = getFirst.
0 <= x <= 500Opaque forward cursor from a previous response pagination.next_cursor.
Response
search success envelope.
true search Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes