Mirakl Incidents API

The Incidents API from Mirakl — 1 operation(s) for incidents.

Operations 1

PUT /api/orders/{order_id}/lines/{line}/resolve_incident OR64 - Mark an incident as resolved #

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/mirakl-incidents-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

mirakl-incidents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: '{% partial file="/partial-content/product/mmp/rest/seller/openapi-description.md" /%}'
  title: Mirakl Marketplace Incidents API
  version: ''
servers:
- description: URL to be replaced by your Mirakl instance URL
  url: https://your-instance.mirakl.net
tags:
- name: Incidents
paths:
  /api/orders/{order_id}/lines/{line}/resolve_incident:
    put:
      description: '<div class="api-description-extension">

        <div class="extension-title">Call Frequency</div>


        <div class="recommended-call-frequency">Recommended usage: At each incident resolution on an order line</div>

        <div class="max-call-frequency">Maximum usage: At each incident resolution on an order line</div>

        <div class="extension-title">Read More</div>


        <ul><li><a href="https://help.mirakl.com/bundle/sellers/page/topics/Mirakl/mmp/Seller/manage_orders/view_orders_incidents/solve_incidents.html">More context</a></li></ul></div>'
      operationId: OR64
      parameters:
      - description: Order identifier
        explode: false
        in: path
        name: order_id
        required: true
        schema:
          type: string
        style: simple
      - description: Order line identifier
        explode: false
        in: path
        name: line
        required: true
        schema:
          type: string
        style: simple
      - description: Use this parameter when your user has access to several shops. If not specified, the shop_id from your default shop will be used.
        explode: true
        in: query
        name: shop_id
        required: false
        schema:
          type: integer
          format: int64
        style: form
      requestBody:
        content:
          application/json:
            examples:
              application/json-0:
                summary: Example with business values (application/json)
                value:
                  reason_code: '8'
              application/json-auto:
                summary: Complete example with value types (application/json)
                value:
                  reason_code: string
            schema:
              $ref: '#/components/schemas/OR64_Request'
      responses:
        '204':
          description: No Content
      security:
      - Shop-API-Key:
        - ROLE_SHOP_ADMIN
        - ROLE_PARTNER_ORDER_INCIDENT_RESOLVE
      summary: OR64 - Mark an incident as resolved
      tags:
      - Incidents
components:
  schemas:
    OR64_Request:
      type: object
      properties:
        reason_code:
          type: string
          description: Incident resolution reason code
      required:
      - reason_code
  securitySchemes:
    Shop-API-Key:
      in: header
      name: Authorization
      type: apiKey
      x-authorization: '{{SHOP_KEY}}'
    shop_api_key:
      in: header
      name: Authorization
      type: apiKey
      x-authorization: '{{SHOP_KEY}}'
x-group-parameters: true