Sinch · Capability

Sinch Fax API — Fax to Email

Sinch Fax API — Fax to Email. 3 operations. Lead operation: Create a Fax-to-email Configuration. Self-contained Naftiko capability covering one Sinch business surface.

Run with Naftiko SinchFax to Email

What You Can Do

POST
Createfaxtoemail — Create a Fax-to-email Configuration
/v1/v3/projects/{project-id}/services/{service-id}/emails
GET
Listfaxtoemails — List Fax-to-email Configurations
/v1/v3/projects/{project-id}/services/{service-id}/emails
DELETE
Deletefaxtoemail — Delete a Fax-to-email Configuration
/v1/v3/projects/{project-id}/services/{service-id}/emails/{email}

MCP Tools

create-fax-email-configuration

Create a Fax-to-email Configuration

list-fax-email-configurations

List Fax-to-email Configurations

read-only idempotent
delete-fax-email-configuration

Delete a Fax-to-email Configuration

idempotent

Capability Spec

fax-fax-to-email.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sinch Fax API — Fax to Email
  description: 'Sinch Fax API — Fax to Email. 3 operations. Lead operation: Create a Fax-to-email Configuration. Self-contained
    Naftiko capability covering one Sinch business surface.'
  tags:
  - Sinch
  - Fax to Email
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SINCH_API_KEY: SINCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: fax-fax-to-email
    baseUri: https://fax.api.sinch.com
    description: Sinch Fax API — Fax to Email business capability. Self-contained, no shared references.
    resources:
    - name: v3-projects-project_id-services-service_id-emails
      path: /v3/projects/{project_id}/services/{service_id}/emails
      operations:
      - name: createfaxtoemail
        method: POST
        description: Create a Fax-to-email Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listfaxtoemails
        method: GET
        description: List Fax-to-email Configurations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v3-projects-project_id-services-service_id-emails-email
      path: /v3/projects/{project_id}/services/{service_id}/emails/{email}
      operations:
      - name: deletefaxtoemail
        method: DELETE
        description: Delete a Fax-to-email Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: email
          in: path
          type: string
          description: The email address to remove
          required: true
    authentication:
      type: bearer
      token: '{{env.SINCH_API_KEY}}'
  exposes:
  - type: rest
    namespace: fax-fax-to-email-rest
    port: 8080
    description: REST adapter for Sinch Fax API — Fax to Email. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v3/projects/{project-id}/services/{service-id}/emails
      name: v3-projects-project-id-services-service-id-emails
      description: REST surface for v3-projects-project_id-services-service_id-emails.
      operations:
      - method: POST
        name: createfaxtoemail
        description: Create a Fax-to-email Configuration
        call: fax-fax-to-email.createfaxtoemail
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listfaxtoemails
        description: List Fax-to-email Configurations
        call: fax-fax-to-email.listfaxtoemails
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/projects/{project-id}/services/{service-id}/emails/{email}
      name: v3-projects-project-id-services-service-id-emails-email
      description: REST surface for v3-projects-project_id-services-service_id-emails-email.
      operations:
      - method: DELETE
        name: deletefaxtoemail
        description: Delete a Fax-to-email Configuration
        call: fax-fax-to-email.deletefaxtoemail
        with:
          email: rest.email
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: fax-fax-to-email-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sinch Fax API — Fax to Email. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: create-fax-email-configuration
      description: Create a Fax-to-email Configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: fax-fax-to-email.createfaxtoemail
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-fax-email-configurations
      description: List Fax-to-email Configurations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: fax-fax-to-email.listfaxtoemails
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-fax-email-configuration
      description: Delete a Fax-to-email Configuration
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: fax-fax-to-email.deletefaxtoemail
      with:
        email: tools.email
      outputParameters:
      - type: object
        mapping: $.