Openprovider EasydmarcOrder API

The EasydmarcOrder API from Openprovider — 5 operation(s) for easydmarcorder.

Operations 6

GET /v1beta/easydmarcs Get easy dmarc #
POST /v1beta/easydmarcs Create easy dmarc #
GET /v1beta/easydmarcs/list List easy dmarc #
DELETE /v1beta/easydmarcs/{id} Delete easy dmarc #
POST /v1beta/easydmarcs/{id}/retry Retry easy dmarc #
GET /v1beta/easydmarcs/{id}/sso Get easy dmarc sso #

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/openprovider-easydmarcorder-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

openprovider-easydmarcorder-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: REST AdditionalData Easydmarc Order API
  version: 1.0.0-beta
servers:
- url: https://api.openprovider.eu
security:
- Bearer: []
tags:
- name: EasydmarcOrder
paths:
  /v1beta/easydmarcs:
    get:
      tags:
      - EasydmarcOrder
      summary: Get easy dmarc
      operationId: GetEasyDmarc
      parameters:
      - description: Domain name without extension.
        name: domain.name
        in: query
        schema:
          type: string
      - description: Domain extension.
        name: domain.extension
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/orderGetEasyDmarcResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
    post:
      tags:
      - EasydmarcOrder
      summary: Create easy dmarc
      operationId: CreateEasyDmarc
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/orderCreateEasyDmarcResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/orderCreateEasyDmarcRequest'
        required: true
  /v1beta/easydmarcs/list:
    get:
      tags:
      - EasydmarcOrder
      summary: List easy dmarc
      operationId: ListEasyDmarc
      parameters:
      - description: Search query limit.
        name: limit
        in: query
        schema:
          type: integer
          format: int32
          default: 100
      - description: Search query offset.
        name: offset
        in: query
        schema:
          type: integer
          format: int32
          default: 0
      - description: desc/asc.
        name: order_by.id
        in: query
        schema:
          type: string
      - description: Array of order statuses.
        name: status
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - description: Domain name without extension.
        name: domain.name
        in: query
        schema:
          type: string
      - description: Domain extension.
        name: domain.extension
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/orderListEasyDmarcResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
  /v1beta/easydmarcs/{id}:
    delete:
      tags:
      - EasydmarcOrder
      summary: Delete easy dmarc
      operationId: DeleteEasyDmarc
      parameters:
      - description: Easydmarc id (order number)
        name: id
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/orderDeleteEasyDmarcResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
  /v1beta/easydmarcs/{id}/retry:
    post:
      tags:
      - EasydmarcOrder
      summary: Retry easy dmarc
      operationId: RetryEasyDmarc
      parameters:
      - description: Easydmarc id (order number)
        name: id
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/orderRetryEasyDmarcResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/orderRetryEasyDmarcRequest'
        required: true
  /v1beta/easydmarcs/{id}/sso:
    get:
      tags:
      - EasydmarcOrder
      summary: Get easy dmarc sso
      operationId: GetEasyDmarcSso
      parameters:
      - description: Easy Dmarc id (order id)
        name: id
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - description: SSO url on behalf of the customer or reseller.
        name: type
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/orderGetEasyDmarcSsoResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
components:
  schemas:
    orderDeleteEasyDmarcResponse:
      type: object
      title: DeleteEasyDmarcResponse
      properties:
        code:
          type: integer
          format: int32
          title: Response code
        data:
          title: Response data
          $ref: '#/components/schemas/orderDeleteEasyDmarcResponseData'
        desc:
          type: string
          title: Response description
        maintenance:
          type: boolean
          format: boolean
          title: Indicates that the Openprovider system is temporarily unavailable because of maintenance
        warnings:
          type: array
          title: Contains warning responses if any
          items:
            $ref: '#/components/schemas/errorWarning'
      example:
        code: 0
        data:
          status: ACT
        desc: ''
    orderListEasyDmarcOrder:
      type: object
      title: ListEasyDmarcOrder
      properties:
        activated_at:
          type: string
          title: date when we order has been activated last time
        domain:
          title: Domain name and extension
          $ref: '#/components/schemas/orderDomain'
        expired_at:
          type: string
          title: date when order has been expired
        id:
          type: integer
          format: int32
          title: Order id number
        record_host:
          type: string
          title: Easy Dmarc CNAME record host
        record_type:
          type: string
          title: Easy Dmarc CNAME record type
        record_value:
          type: string
          title: Easy Dmarc CNAME record value
        renew_at:
          type: string
          title: date when we will request automatic renew
        status:
          type: string
          title: Status of order
      example:
        activated_at: '2019-01-01 0:00:01'
        domain:
          extension: london
          name: test4
        expired_at: '2019-01-01 0:00:01'
        id: 123456789
        record_host: ''
        record_type: ''
        record_value: ''
        renew_at: '2019-01-01 0:00:01'
        status: ''
    orderEasyDmarcOrder:
      type: object
      title: EasyDmarcOrder
      properties:
        activated_at:
          type: string
          title: date when we order has been activated last time
        domain:
          title: Domain name and extension
          $ref: '#/components/schemas/orderDomain'
        easydmarc_email_address:
          type: string
          title: Email address (fake) used in the easy dmarc account
        expired_at:
          type: string
          title: date when order has been expired
        id:
          type: integer
          format: int32
          title: Easydmarc id (order number)
        recent_easydmarc_action:
          title: Recent client chronicle action and additional information
          $ref: '#/components/schemas/orderRecentEasyDmarcAction'
        record_host:
          type: string
          title: Easy Dmarc CNAME record host
        record_type:
          type: string
          title: Easy Dmarc CNAME record type
        record_value:
          type: string
          title: Easy Dmarc CNAME record value
        renew_at:
          type: string
          title: date when we will request automatic renew
        status:
          type: string
          title: Status of easy dmarc
      example:
        activated_at: '2019-01-01 0:00:01'
        domain:
          extension: london
          name: test4
        easydmarc_email_address: ''
        expired_at: '2019-01-01 0:00:01'
        id: 123456789
        recent_easydmarc_action:
          message: ''
          recent_action: enabled
        record_host: ''
        record_type: ''
        record_value: ''
        renew_at: '2019-01-01 0:00:01'
        status: ''
    orderRetryEasyDmarcRequest:
      type: object
      title: RetryEasyDmarcRequest
      properties:
        id:
          type: integer
          format: int32
          title: Easydmarc id (order number)
      example:
        id: 123456789
    orderRecentEasyDmarcAction:
      type: object
      title: RecentEasyDmarcAction
      properties:
        message:
          type: string
          title: Additional information of last action if failed
        recent_action:
          type: string
          title: Recently triggered action on EasyDmarc API
      example:
        message: ''
        recent_action: enabled
    orderDeleteEasyDmarcResponseData:
      type: object
      title: DeleteEasyDmarcResponseData
      properties:
        status:
          type: string
          title: Easy Dmarc status
      example:
        status: ACT
    orderListEasyDmarcResponseData:
      type: object
      title: ListEasyDmarcResponseData
      properties:
        results:
          type: array
          title: Results list
          items:
            $ref: '#/components/schemas/orderListEasyDmarcOrder'
        total:
          type: integer
          format: int32
          title: Results count
      example:
        results:
        - activated_at: '2019-01-01 0:00:01'
          domain:
            extension: london
            name: test4
          expired_at: '2019-01-01 0:00:01'
          id: 123456789
          record_host: ''
          record_type: ''
          record_value: ''
          renew_at: '2019-01-01 0:00:01'
          status: ''
        total: 999
    orderCreateEasyDmarcRequest:
      type: object
      title: CreateEasyDmarcRequest
      properties:
        domain:
          title: Domain name and extension
          $ref: '#/components/schemas/orderDomain'
        owner_handle:
          type: string
          title: Domain owner handle value
      example:
        domain:
          extension: london
          name: test4
        owner_handle: XX123456-XX
    orderCreateEasyDmarcResponse:
      type: object
      title: CreateEasyDmarcResponse
      properties:
        code:
          type: integer
          format: int32
          title: Response code
        data:
          title: Response data
          $ref: '#/components/schemas/orderEasyDmarcOrder'
        desc:
          type: string
          title: Response description
        warnings:
          type: array
          title: Array of warning messages
          items:
            $ref: '#/components/schemas/errorWarning'
      example:
        code: 0
        data:
          activated_at: '2019-01-01 0:00:01'
          domain:
            extension: london
            name: test4
          easydmarc_email_address: ''
          expired_at: '2019-01-01 0:00:01'
          id: 123456789
          recent_easydmarc_action:
            message: ''
            recent_action: enabled
          record_host: ''
          record_type: ''
          record_value: ''
          renew_at: '2019-01-01 0:00:01'
          status: ''
        desc: ''
    orderGetEasyDmarcSsoResponse:
      type: object
      title: GetEasyDmarcSsoResponse
      properties:
        code:
          type: integer
          format: int32
          title: Response code
        data:
          title: Response data
          $ref: '#/components/schemas/orderGetEasyDmarcSsoResponseData'
        desc:
          type: string
          title: Response description
        maintenance:
          type: boolean
          format: boolean
          title: Indicates that the Openprovider system is temporarily unavailable because of maintenance
        warnings:
          type: array
          title: Contains warning responses if any
          items:
            $ref: '#/components/schemas/errorWarning'
      example:
        code: 0
        data:
          url: ''
        desc: ''
    orderDomain:
      type: object
      title: Domain
      properties:
        extension:
          type: string
          title: Domain extension
        name:
          type: string
          title: Domain name without extension
      example:
        extension: london
        name: test4
    orderGetEasyDmarcSsoResponseData:
      type: object
      title: GetEasyDmarcSsoResponseData
      properties:
        url:
          type: string
          title: Single sign on url along with one time passsword token as query params
      example:
        url: ''
    errorError:
      type: object
      title: Error
      properties:
        code:
          type: integer
          format: int32
          title: Error code
        data:
          type: string
          title: Additional error description
        desc:
          type: string
          title: Error description
      example:
        code: 0
        data: ''
        desc: ''
    orderGetEasyDmarcResponse:
      type: object
      title: GetEasyDmarcResponse
      properties:
        code:
          type: integer
          format: int32
          title: Response code
        data:
          title: Response data
          $ref: '#/components/schemas/orderEasyDmarcOrder'
        desc:
          type: string
          title: Response description
        maintenance:
          type: boolean
          format: boolean
          title: Indicates that the Openprovider system is temporarily unavailable because of maintenance
        warnings:
          type: array
          title: Contains warning responses if any
          items:
            $ref: '#/components/schemas/errorWarning'
      example:
        code: 0
        data:
          activated_at: '2019-01-01 0:00:01'
          domain:
            extension: london
            name: test4
          easydmarc_email_address: ''
          expired_at: '2019-01-01 0:00:01'
          id: 123456789
          recent_easydmarc_action:
            message: ''
            recent_action: enabled
          record_host: ''
          record_type: ''
          record_value: ''
          renew_at: '2019-01-01 0:00:01'
          status: ''
        desc: ''
    orderRetryEasyDmarcResponse:
      type: object
      title: RetryEasyDmarcResponse
      properties:
        code:
          type: integer
          format: int32
          title: Response code
        data:
          title: Response data
          $ref: '#/components/schemas/orderEasyDmarcOrder'
        desc:
          type: string
          title: Response description
        warnings:
          type: array
          title: Array of warning messages
          items:
            $ref: '#/components/schemas/errorWarning'
      example:
        code: 0
        data:
          activated_at: '2019-01-01 0:00:01'
          domain:
            extension: london
            name: test4
          easydmarc_email_address: ''
          expired_at: '2019-01-01 0:00:01'
          id: 123456789
          recent_easydmarc_action:
            message: ''
            recent_action: enabled
          record_host: ''
          record_type: ''
          record_value: ''
          renew_at: '2019-01-01 0:00:01'
          status: ''
        desc: ''
    orderListEasyDmarcResponse:
      type: object
      title: ListEasyDmarcResponse
      properties:
        code:
          type: integer
          format: int32
          title: Response code
        data:
          title: Response data
          $ref: '#/components/schemas/orderListEasyDmarcResponseData'
        desc:
          type: string
          title: Response description
        maintenance:
          type: boolean
          format: boolean
          title: Indicates if Openprovider API is on maintenance
        warnings:
          type: array
          title: Array of warning messages
          items:
            $ref: '#/components/schemas/errorWarning'
      example:
        code: 0
        data:
          results:
          - activated_at: '2019-01-01 0:00:01'
            domain:
              extension: london
              name: test4
            expired_at: '2019-01-01 0:00:01'
            id: 123456789
            record_host: ''
            record_type: ''
            record_value: ''
            renew_at: '2019-01-01 0:00:01'
            status: ''
          total: 999
        desc: ''
    errorWarning:
      type: object
      title: Warning
      properties:
        code:
          type: integer
          format: int32
          title: Warning code
        data:
          type: string
          title: Additional warning description
        desc:
          type: string
          title: Warning description
      example:
        code: 0
        data: ''
        desc: ''
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header
      x-linkTo: tag/descAuthentication
x-tagGroups:
- name: Introduction
  tags:
  - descAbout
  - descGettingStarted
  - descEndpoints
  - descAuthentication
- name: Quick Start
  tags:
  - descCustomerQuickstart
  - descDomainQuickstart
  - descTLDQuickstart
  - descDNSQuickstart
  - descSSLQuickstart
- name: Auth
  tags:
  - Auth
  - SpamExpert
- name: Billing
  tags:
  - InvoiceService
  - Payment
  - Transaction
- name: DNS
  tags:
  - DomainToken
  - NameserverService
  - NsGroupService
  - TemplateService
  - ZoneService
  - ZoneRecordService
- name: Domain
  tags:
  - DomainService
  - AdditionalData
  - CustomerAdditionalData
  - DomainPriceService
  - AuthCode
  - TldService
- name: EasyDmarc
  tags:
  - EasydmarcOrder
- name: Email template
  tags:
  - Email
- name: License
  tags:
  - LicenseService
- name: Reseller/Customer
  tags:
  - ContactService
  - Customer
  - EmailVerification
  - ResellerService
  - Settings
  - Statistics
  - TagService
- name: Spam Experts
  tags:
  - SEDomain
- name: SSL
  tags:
  - ApproverEmail
  - Csr
  - Order
  - OrderApproverEmail
  - OtpToken
  - Product