Toqio Email Configuration API

The Email Configuration API from Toqio — 1 operation(s) for email configuration.

Operations 4

POST /iam/api/customers/{customerId}/email/configuration Add a new email configuration #
DELETE /iam/api/customers/{customerId}/email/configuration Deleting an existing email configuration #
GET /iam/api/customers/{customerId}/email/configuration Retrieving data of an existing email configuration #
PUT /iam/api/customers/{customerId}/email/configuration Edit an email configuration #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/toqio-email-configuration-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

toqio-email-configuration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Custom Notifications Email Configuration API
  version: v1.0.0
servers:
- url: https://core.sandbox.toq.io/
  description: Simulation environment
- url: https://core.toq.io/
  description: Production environment
tags:
- name: Email Configuration
paths:
  /iam/api/customers/{customerId}/email/configuration:
    post:
      tags:
      - Email Configuration
      summary: Add a new email configuration
      description: ''
      operationId: createEmailConfiguration
      parameters:
      - name: customerId
        in: path
        description: ''
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: emailConfiguration
        in: query
        description: ''
        schema:
          $ref: '#/components/schemas/EmailConfigurationDTO'
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailConfigurationDTO'
        '400':
          description: Invalid input
        '422':
          description: Validation exception
      security:
      - clientCredentials: []
    delete:
      tags:
      - Email Configuration
      summary: Deleting an existing email configuration
      description: ''
      operationId: deleteEmailConfiguration
      parameters:
      - name: customerId
        in: path
        description: ''
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: emailType
        in: query
        description: ''
        required: false
        explode: false
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailConfigurationDTO'
        '400':
          description: Invalid url
        '404':
          description: Email Configuration not found
        '422':
          description: Validation exception
      security:
      - clientCredentials: []
    get:
      tags:
      - Email Configuration
      summary: Retrieving data of an existing email configuration
      description: ''
      operationId: getEmailConfiguration
      parameters:
      - name: customerId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: emailType
        in: query
        required: false
        explode: false
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EmailConfigurationDTO'
        '400':
          description: Invalid url
        '404':
          description: Email Configuration not found
        '422':
          description: Validation exception
      security:
      - clientCredentials: []
    put:
      tags:
      - Email Configuration
      summary: Edit an email configuration
      description: ''
      operationId: updateEmailConfiguration
      parameters:
      - name: customerId
        in: path
        description: ''
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: emailConfiguration
        in: query
        description: ''
        schema:
          $ref: '#/components/schemas/EmailConfigurationDTO'
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailConfigurationDTO'
        '400':
          description: Invalid input
        '422':
          description: Validation exception
      security:
      - clientCredentials: []
components:
  schemas:
    EmailConfigurationDTO:
      type: object
      properties:
        customerId:
          type: string
          description: ''
        type:
          type: string
          description: ''
        sender:
          type: string
          description: ''
      xml:
        name: '##default'
  securitySchemes:
    clientCredentials:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.toq.io/iam/oauth/token
          scopes: {}
x-source-pages:
- https://platform.toq.io/reference/createemailconfiguration
- https://platform.toq.io/reference/deleteemailconfiguration
- https://platform.toq.io/reference/getemailconfiguration
- https://platform.toq.io/reference/send-custom-notifications
- https://platform.toq.io/reference/updateemailconfiguration