INRIX Email Template API

The EmailTemplate API from INRIX — 2 operation(s) for emailtemplate.

Operations 5

GET /v1/emailtemplates/{id} #
PUT /v1/emailtemplates/{id} #
DELETE /v1/emailtemplates/{id} #
GET /v1/emailtemplates #
POST /v1/emailtemplates #

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/inrix-emailtemplate-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

inrix-emailtemplate-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: Inrix.UserAccounts.Web Email Template API
servers:
- url: https://uas-api.inrix.com/Inrix.UserAccountsSystem.Web_deploy
tags:
- name: EmailTemplate
paths:
  /v1/emailtemplates/{id}:
    get:
      tags:
      - EmailTemplate
      operationId: EmailTemplate_Get
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
    put:
      tags:
      - EmailTemplate
      operationId: EmailTemplate_Put
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InrixEmailTemplate'
          text/json:
            schema:
              $ref: '#/components/schemas/InrixEmailTemplate'
          application/xml:
            schema:
              $ref: '#/components/schemas/InrixEmailTemplate'
          text/xml:
            schema:
              $ref: '#/components/schemas/InrixEmailTemplate'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/InrixEmailTemplate'
        required: true
    delete:
      tags:
      - EmailTemplate
      operationId: EmailTemplate_Delete
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
  /v1/emailtemplates:
    get:
      tags:
      - EmailTemplate
      operationId: EmailTemplate_Get
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
    post:
      tags:
      - EmailTemplate
      operationId: EmailTemplate_Post
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
            application/xml:
              schema:
                type: object
            text/xml:
              schema:
                type: object
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InrixEmailTemplate'
          text/json:
            schema:
              $ref: '#/components/schemas/InrixEmailTemplate'
          application/xml:
            schema:
              $ref: '#/components/schemas/InrixEmailTemplate'
          text/xml:
            schema:
              $ref: '#/components/schemas/InrixEmailTemplate'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/InrixEmailTemplate'
        required: true
components:
  schemas:
    InrixEmailTemplate:
      type: object
      properties:
        SerializeForStorage:
          type: boolean
        id:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        name:
          type: string
        templates:
          type: array
          items:
            $ref: '#/components/schemas/Template'
        createdBy:
          type: string
        createdDate:
          format: date-time
          type: string
        modifiedBy:
          type: string
        modifiedDate:
          format: date-time
          type: string
        devId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
    Template:
      type: object
      properties:
        subject:
          type: string
        body:
          type: string
        locale:
          type: string