SendGrid · Capability

Twilio SendGrid Single Sign-On API — SSO Certificates

Twilio SendGrid Single Sign-On API — SSO Certificates. 5 operations. Lead operation: Create an SSO Certificate. Self-contained Naftiko capability covering one Sendgrid business surface.

Run with Naftiko SendgridSSO Certificates

What You Can Do

POST
Createssocertificate — Create an SSO Certificate
/v1/v3/sso/certificates
GET
Getssocertificate — Get an SSO Certificate
/v1/v3/sso/certificates/{cert-id}
PATCH
Updatessocertificate — Update SSO Certificate
/v1/v3/sso/certificates/{cert-id}
DELETE
Deletessocertificate — Delete an SSO Certificate
/v1/v3/sso/certificates/{cert-id}
GET
Listssointegrationcertificate — Get All SSO Certificates by Integration
/v1/v3/sso/integrations/{integration-id}/certificates

MCP Tools

create-sso-certificate

Create an SSO Certificate

get-sso-certificate

Get an SSO Certificate

read-only idempotent
update-sso-certificate

Update SSO Certificate

idempotent
delete-sso-certificate

Delete an SSO Certificate

idempotent
get-all-sso-certificates-integration

Get All SSO Certificates by Integration

read-only idempotent

Capability Spec

tsg_sso_v3-sso-certificates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Twilio SendGrid Single Sign-On API — SSO Certificates
  description: 'Twilio SendGrid Single Sign-On API — SSO Certificates. 5 operations. Lead operation: Create an SSO Certificate.
    Self-contained Naftiko capability covering one Sendgrid business surface.'
  tags:
  - Sendgrid
  - SSO Certificates
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SENDGRID_API_KEY: SENDGRID_API_KEY
capability:
  consumes:
  - type: http
    namespace: tsg_sso_v3-sso-certificates
    baseUri: https://api.sendgrid.com
    description: Twilio SendGrid Single Sign-On API — SSO Certificates business capability. Self-contained, no shared references.
    resources:
    - name: v3-sso-certificates
      path: /v3/sso/certificates
      operations:
      - name: createssocertificate
        method: POST
        description: Create an SSO Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v3-sso-certificates-cert_id
      path: /v3/sso/certificates/{cert_id}
      operations:
      - name: getssocertificate
        method: GET
        description: Get an SSO Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatessocertificate
        method: PATCH
        description: Update SSO Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletessocertificate
        method: DELETE
        description: Delete an SSO Certificate
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v3-sso-integrations-integration_id-certificates
      path: /v3/sso/integrations/{integration_id}/certificates
      operations:
      - name: listssointegrationcertificate
        method: GET
        description: Get All SSO Certificates by Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SENDGRID_API_KEY}}'
  exposes:
  - type: rest
    namespace: tsg_sso_v3-sso-certificates-rest
    port: 8080
    description: REST adapter for Twilio SendGrid Single Sign-On API — SSO Certificates. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/v3/sso/certificates
      name: v3-sso-certificates
      description: REST surface for v3-sso-certificates.
      operations:
      - method: POST
        name: createssocertificate
        description: Create an SSO Certificate
        call: tsg_sso_v3-sso-certificates.createssocertificate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/sso/certificates/{cert-id}
      name: v3-sso-certificates-cert-id
      description: REST surface for v3-sso-certificates-cert_id.
      operations:
      - method: GET
        name: getssocertificate
        description: Get an SSO Certificate
        call: tsg_sso_v3-sso-certificates.getssocertificate
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatessocertificate
        description: Update SSO Certificate
        call: tsg_sso_v3-sso-certificates.updatessocertificate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletessocertificate
        description: Delete an SSO Certificate
        call: tsg_sso_v3-sso-certificates.deletessocertificate
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/sso/integrations/{integration-id}/certificates
      name: v3-sso-integrations-integration-id-certificates
      description: REST surface for v3-sso-integrations-integration_id-certificates.
      operations:
      - method: GET
        name: listssointegrationcertificate
        description: Get All SSO Certificates by Integration
        call: tsg_sso_v3-sso-certificates.listssointegrationcertificate
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tsg_sso_v3-sso-certificates-mcp
    port: 9090
    transport: http
    description: MCP adapter for Twilio SendGrid Single Sign-On API — SSO Certificates. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: create-sso-certificate
      description: Create an SSO Certificate
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tsg_sso_v3-sso-certificates.createssocertificate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-sso-certificate
      description: Get an SSO Certificate
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tsg_sso_v3-sso-certificates.getssocertificate
      outputParameters:
      - type: object
        mapping: $.
    - name: update-sso-certificate
      description: Update SSO Certificate
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: tsg_sso_v3-sso-certificates.updatessocertificate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-sso-certificate
      description: Delete an SSO Certificate
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: tsg_sso_v3-sso-certificates.deletessocertificate
      outputParameters:
      - type: object
        mapping: $.
    - name: get-all-sso-certificates-integration
      description: Get All SSO Certificates by Integration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tsg_sso_v3-sso-certificates.listssointegrationcertificate
      outputParameters:
      - type: object
        mapping: $.