curl --request POST \
--url https://api.agentic.scope3.com/mcp/seat-details-get \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'mcp-session-id: <mcp-session-id>' \
--data '
{
"tool": "seat_details_get",
"arguments": {
"seatId": "example_id_123"
}
}
'{
"content": [
{
"type": "text",
"text": "string"
}
],
"structuredContent": {
"seat": {
"id": "<string>",
"name": "<string>",
"customerId": 123,
"active": true,
"type": "BUYER",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"members": [
{
"userId": 123,
"email": "[email protected]",
"name": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"createdSeatAt": "<string>",
"updatedSeatAt": "<string>",
"role": "ADMIN"
}
],
"agents": [
{
"id": 123,
"name": "<string>",
"type": "<string>",
"customerId": 123,
"createdAt": "<string>",
"updatedAt": "<string>",
"activeCampaignsCount": 4503599627370495,
"activeTacticsCount": 4503599627370495,
"activeMediaBuysCount": 4503599627370495,
"agentId": "<string>",
"seatId": 123
}
],
"brandAgents": [
{
"id": 123,
"name": "<string>",
"type": "<string>",
"customerId": 123,
"createdAt": "<string>",
"updatedAt": "<string>",
"activeCampaignsCount": 4503599627370495,
"activeTacticsCount": 4503599627370495,
"activeMediaBuysCount": 4503599627370495,
"seatId": 123
}
],
"userRole": "ADMIN"
}
}
}Get detailed information about a specific seat including members, agents, and brand agents.
curl --request POST \
--url https://api.agentic.scope3.com/mcp/seat-details-get \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'mcp-session-id: <mcp-session-id>' \
--data '
{
"tool": "seat_details_get",
"arguments": {
"seatId": "example_id_123"
}
}
'{
"content": [
{
"type": "text",
"text": "string"
}
],
"structuredContent": {
"seat": {
"id": "<string>",
"name": "<string>",
"customerId": 123,
"active": true,
"type": "BUYER",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"members": [
{
"userId": 123,
"email": "[email protected]",
"name": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"createdSeatAt": "<string>",
"updatedSeatAt": "<string>",
"role": "ADMIN"
}
],
"agents": [
{
"id": 123,
"name": "<string>",
"type": "<string>",
"customerId": 123,
"createdAt": "<string>",
"updatedAt": "<string>",
"activeCampaignsCount": 4503599627370495,
"activeTacticsCount": 4503599627370495,
"activeMediaBuysCount": 4503599627370495,
"agentId": "<string>",
"seatId": 123
}
],
"brandAgents": [
{
"id": 123,
"name": "<string>",
"type": "<string>",
"customerId": 123,
"createdAt": "<string>",
"updatedAt": "<string>",
"activeCampaignsCount": 4503599627370495,
"activeTacticsCount": 4503599627370495,
"activeMediaBuysCount": 4503599627370495,
"seatId": 123
}
],
"userRole": "ADMIN"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
MCP session identifier (UUID). Initialize your session using the /mcp-initialize endpoint first to obtain a session ID, then reuse it for all subsequent tool requests in the same session.
Request body for seat_details_get