Mavrck Email Suppressions API

The Email Suppressions API from Mavrck — 1 operation(s) for email suppressions.

OpenAPI Specification

mavrck-email-suppressions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  description: Identify your most influential customers and activate them to drive more conversions on social.
  title: MAVRCK.IO Email Suppressions API
servers:
- url: http://app.splashscore.com/v1
- url: https://app.splashscore.com/v1
security:
- apiKey: []
tags:
- name: Email Suppressions
paths:
  /v1/email-blocklist/{email}:
    delete:
      operationId: deleteEmailBlocklist
      responses:
        '200':
          description: Email removed from blocklists
        '400':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidateErrorJSON'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
        '500':
          description: Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerError'
      description: 'Remove an email address from all SendGrid suppression groups.

        This endpoint will attempt to remove the specified email from all existing

        suppression groups (bounces, blocks, spam reports, unsubscribes, etc.)'
      tags:
      - Email Suppressions
      parameters:
      - description: The email address to remove from blocklists
        in: path
        name: email
        required: true
        schema:
          type: string
components:
  schemas:
    NotFoundError:
      properties:
        message:
          type: string
          enum:
          - Resource Not Found
        details:
          properties: {}
          additionalProperties:
            additionalProperties: true
          type: object
      required:
      - message
      - details
      type: object
      additionalProperties: false
    ServerError:
      properties:
        message:
          type: string
          enum:
          - Server Error
        details:
          properties: {}
          additionalProperties:
            additionalProperties: true
          type: object
      required:
      - message
      - details
      type: object
      additionalProperties: false
    ValidateErrorJSON:
      properties:
        message:
          type: string
          enum:
          - Validation failed
        details:
          properties: {}
          additionalProperties:
            additionalProperties: true
          type: object
      required:
      - message
      - details
      type: object
      additionalProperties: false
  securitySchemes:
    apiKey:
      type: apiKey
      name: api-key
      in: header