Skip to main content
POST
/
seat-details-get
Get seat details
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"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

mcp-session-id
string<uuid>
required

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.

Body

application/json

Request body for seat_details_get

tool
enum<string>
required
Available options:
seat_details_get
arguments
object
required

Response

Successful response

content
object[]
required
structuredContent
object
required