Gladly · Capability

Gladly REST API — Inboxes

Gladly REST API — Inboxes. 2 operations. Self-contained Naftiko capability covering the Inboxes business surface of the Gladly Customer Service Platform.

Gladly REST API — Inboxes is a Naftiko capability published by Gladly, one of 21 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the GET method rooted at /v1/api/v1/inboxes.

The capability includes 2 read-only operations. Lead operation: List Inboxes. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Gladly, Inboxes, and Customer Service.

Run with Naftiko GladlyInboxesCustomer Service

What You Can Do

GET
Getinboxes — List Inboxes
/v1/api/v1/inboxes
GET
Getinbox — Get Inbox
/v1/api/v1/inboxes/{inboxId}

MCP Tools

gladly-getInboxes

List Inboxes

read-only idempotent
gladly-getInbox

Get Inbox

read-only idempotent

Capability Spec

gladly-inboxes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Gladly REST API — Inboxes
  description: Gladly REST API — Inboxes. 2 operations. Self-contained Naftiko capability covering the Inboxes business surface
    of the Gladly Customer Service Platform.
  tags:
  - Gladly
  - Inboxes
  - Customer Service
  created: '2026-05-24'
  modified: '2026-05-24'
binds:
- namespace: env
  keys:
    GLADLY_ORGANIZATION: GLADLY_ORGANIZATION
    GLADLY_AGENT_EMAIL: GLADLY_AGENT_EMAIL
    GLADLY_API_TOKEN: GLADLY_API_TOKEN
capability:
  consumes:
  - type: http
    namespace: gladly-inboxes
    baseUri: https://{{env.GLADLY_ORGANIZATION}}.gladly.com
    description: Gladly REST API — Inboxes business capability.
    resources:
    - name: api-v1-inboxes
      path: /api/v1/inboxes
      operations:
      - name: getInboxes
        method: GET
        description: List Inboxes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters: []
    - name: api-v1-inboxes-inboxId
      path: /api/v1/inboxes/{inboxId}
      operations:
      - name: getInbox
        method: GET
        description: Get Inbox
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters: []
    authentication:
      type: basic
      username: '{{env.GLADLY_AGENT_EMAIL}}'
      password: '{{env.GLADLY_API_TOKEN}}'
  exposes:
  - type: rest
    namespace: gladly-inboxes-rest
    port: 8080
    description: REST adapter for Gladly Inboxes.
    resources:
    - path: /v1/api/v1/inboxes
      name: api-v1-inboxes
      description: REST surface for api-v1-inboxes.
      operations:
      - method: GET
        name: getInboxes
        description: List Inboxes
        call: gladly-inboxes.getInboxes
        with: {}
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/inboxes/{inboxId}
      name: api-v1-inboxes-inboxId
      description: REST surface for api-v1-inboxes-inboxId.
      operations:
      - method: GET
        name: getInbox
        description: Get Inbox
        call: gladly-inboxes.getInbox
        with: {}
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: gladly-inboxes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Gladly Inboxes.
    tools:
    - name: gladly-getInboxes
      description: List Inboxes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gladly-inboxes.getInboxes
      with: {}
      outputParameters:
      - type: object
        mapping: $.
    - name: gladly-getInbox
      description: Get Inbox
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gladly-inboxes.getInbox
      with: {}
      outputParameters:
      - type: object
        mapping: $.