Forta Health Email Cron Configs API

The email_cron_configs API from Forta Health — 3 operation(s) for email_cron_configs.

Operations 6

GET /api/v1/email_cron_configs/ List Email Cron Configs #
POST /api/v1/email_cron_configs/ Create Email Cron Config #
GET /api/v1/email_cron_configs/{config_id}/ Get Email Cron Config #
PATCH /api/v1/email_cron_configs/{config_id}/ Update Email Cron Config #
DELETE /api/v1/email_cron_configs/{config_id}/ Delete Email Cron Config #
POST /api/v1/email_cron_configs/{config_id}/preview/ Preview Email Cron Config #

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/forta-health-email-cron-configs-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

forta-health-email-cron-configs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Forta Health Email Cron Configs API
  version: 0.1.0
  description: 'Operations tagged email_cron_configs across 2 of this provider''s published API definitions: forta-health-email-cron-configs-api-openapi.yml, forta-health-platform-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.prod.fortahealth.com/api/v1/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: email_cron_configs
paths:
  /api/v1/email_cron_configs/:
    get:
      tags:
      - email_cron_configs
      summary: List Email Cron Configs
      operationId: list_email_cron_configs_api_v1_email_cron_configs__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/EmailCronConfigResponse'
                type: array
                title: Response List Email Cron Configs Api V1 Email Cron Configs  Get
      security:
      - HTTPBearer: []
    post:
      tags:
      - email_cron_configs
      summary: Create Email Cron Config
      operationId: create_email_cron_config_api_v1_email_cron_configs__post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailCronConfigCreate'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailCronConfigResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
    servers:
    - url: https://api.prod.fortahealth.com/api/v1/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /api/v1/email_cron_configs/{config_id}/:
    get:
      tags:
      - email_cron_configs
      summary: Get Email Cron Config
      operationId: get_email_cron_config_api_v1_email_cron_configs__config_id___get
      security:
      - HTTPBearer: []
      parameters:
      - name: config_id
        in: path
        required: true
        schema:
          type: integer
          title: Config Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailCronConfigResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    patch:
      tags:
      - email_cron_configs
      summary: Update Email Cron Config
      operationId: update_email_cron_config_api_v1_email_cron_configs__config_id___patch
      security:
      - HTTPBearer: []
      parameters:
      - name: config_id
        in: path
        required: true
        schema:
          type: integer
          title: Config Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailCronConfigPatch'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailCronConfigResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - email_cron_configs
      summary: Delete Email Cron Config
      operationId: delete_email_cron_config_api_v1_email_cron_configs__config_id___delete
      security:
      - HTTPBearer: []
      parameters:
      - name: config_id
        in: path
        required: true
        schema:
          type: integer
          title: Config Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://api.prod.fortahealth.com/api/v1/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /api/v1/email_cron_configs/{config_id}/preview/:
    post:
      tags:
      - email_cron_configs
      summary: Preview Email Cron Config
      operationId: preview_email_cron_config_api_v1_email_cron_configs__config_id__preview__post
      security:
      - HTTPBearer: []
      parameters:
      - name: config_id
        in: path
        required: true
        schema:
          type: integer
          title: Config Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailCronConfigPreviewRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailCronConfigPreviewResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://api.prod.fortahealth.com/api/v1/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    EmailCronConfigCreate:
      properties:
        job_key:
          type: string
          title: Job Key
        enabled:
          type: boolean
          title: Enabled
          default: true
        subject:
          anyOf:
          - type: string
          - type: 'null'
          title: Subject
        html_body:
          anyOf:
          - type: string
          - type: 'null'
          title: Html Body
        recipients:
          anyOf:
          - items:
              type: string
              format: email
            type: array
          - type: 'null'
          title: Recipients
        error_notification_recipient:
          anyOf:
          - type: string
            format: email
          - type: 'null'
          title: Error Notification Recipient
        days_of_week:
          anyOf:
          - items:
              type: string
              enum:
              - MON
              - TUE
              - WED
              - THU
              - FRI
              - SAT
              - SUN
            type: array
          - type: 'null'
          title: Days Of Week
      type: object
      required:
      - job_key
      title: EmailCronConfigCreate
    EmailCronConfigResponse:
      properties:
        id:
          type: integer
          title: Id
        job_key:
          type: string
          title: Job Key
        enabled:
          type: boolean
          title: Enabled
        subject:
          anyOf:
          - type: string
          - type: 'null'
          title: Subject
        html_body:
          anyOf:
          - type: string
          - type: 'null'
          title: Html Body
        recipients:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Recipients
        error_notification_recipient:
          anyOf:
          - type: string
          - type: 'null'
          title: Error Notification Recipient
        days_of_week:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Days Of Week
        updated_by:
          anyOf:
          - type: string
          - type: 'null'
          title: Updated By
        is_runnable:
          type: boolean
          title: Is Runnable
          readOnly: true
      type: object
      required:
      - id
      - job_key
      - enabled
      - is_runnable
      title: EmailCronConfigResponse
    EmailCronConfigPreviewRequest:
      properties:
        subject:
          anyOf:
          - type: string
          - type: 'null'
          title: Subject
        html_body:
          anyOf:
          - type: string
          - type: 'null'
          title: Html Body
      type: object
      title: EmailCronConfigPreviewRequest
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    EmailCronConfigPatch:
      properties:
        enabled:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Enabled
        subject:
          anyOf:
          - type: string
          - type: 'null'
          title: Subject
        html_body:
          anyOf:
          - type: string
          - type: 'null'
          title: Html Body
        recipients:
          anyOf:
          - items:
              type: string
              format: email
            type: array
          - type: 'null'
          title: Recipients
        error_notification_recipient:
          anyOf:
          - type: string
            format: email
          - type: 'null'
          title: Error Notification Recipient
        days_of_week:
          anyOf:
          - items:
              type: string
              enum:
              - MON
              - TUE
              - WED
              - THU
              - FRI
              - SAT
              - SUN
            type: array
          - type: 'null'
          title: Days Of Week
      type: object
      title: EmailCronConfigPatch
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EmailCronConfigPreviewResponse:
      properties:
        subject_rendered:
          type: string
          title: Subject Rendered
        html_rendered:
          type: string
          title: Html Rendered
        recipients_resolved:
          items:
            type: string
          type: array
          title: Recipients Resolved
        has_data:
          type: boolean
          title: Has Data
      type: object
      required:
      - subject_rendered
      - html_rendered
      - recipients_resolved
      - has_data
      title: EmailCronConfigPreviewResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
x-refined-from:
- forta-health-email-cron-configs-api-openapi.yml
- forta-health-platform-openapi.yml