Amazon Supply Chain Data Integration Events API

The Data Integration Events API from Amazon Supply Chain — 1 operation(s) for data integration events.

Operations 2

GET /api/instances/{instanceId}/data-integration-events Amazon List Data Integration Events #
POST /api/instances/{instanceId}/data-integration-events Amazon Send Data Integration Event #

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/amazon-supply-chain-data-integration-events-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

amazon-supply-chain-data-integration-events-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AWS Supply Chain Bill of Materials Data Integration Events API
  description: AWS Supply Chain is a cloud-based application that works with your existing enterprise resource planning (ERP) and supply chain management systems to help you manage supply chain risks. It provides ML-powered insights and recommended actions to help mitigate supply chain disruptions.
  version: '2024-01-01'
  x-generated-from: documentation
servers:
- url: https://scn.amazonaws.com
  description: AWS Supply Chain API endpoint
security:
- hmac: []
tags:
- name: Data Integration Events
paths:
  /api/instances/{instanceId}/data-integration-events:
    get:
      operationId: ListDataIntegrationEvents
      summary: Amazon List Data Integration Events
      description: Lists data integration events for an instance
      tags:
      - Data Integration Events
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      parameters:
      - name: instanceId
        in: path
        required: true
        schema:
          type: string
      - name: eventType
        in: query
        schema:
          type: string
        description: Filter by event type
      - name: maxResults
        in: query
        schema:
          type: integer
      - name: nextToken
        in: query
        schema:
          type: string
      responses:
        '200':
          description: List of events
          content:
            application/json:
              schema:
                type: object
                properties:
                  events:
                    type: array
                    items:
                      $ref: '#/components/schemas/DataIntegrationEvent'
                  nextToken:
                    type: string
    post:
      operationId: SendDataIntegrationEvent
      summary: Amazon Send Data Integration Event
      description: Sends a data integration event
      tags:
      - Data Integration Events
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      parameters:
      - name: instanceId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - eventType
              - data
              - eventGroupId
              - eventTimestamp
              properties:
                eventType:
                  type: string
                  description: The event type
                data:
                  type: string
                  description: The event data payload
                eventGroupId:
                  type: string
                  description: The event group identifier
                eventTimestamp:
                  type: string
                  format: date-time
                  description: The event timestamp
                clientToken:
                  type: string
      responses:
        '200':
          description: Event sent
          content:
            application/json:
              schema:
                type: object
                properties:
                  eventId:
                    type: string
components:
  schemas:
    DataIntegrationEvent:
      type: object
      description: A data integration event
      properties:
        instanceId:
          type: string
          description: The instance identifier
        eventId:
          type: string
          description: The event identifier
        eventType:
          type: string
          description: The event type
        eventGroupId:
          type: string
          description: The event group identifier
        eventTimestamp:
          type: string
          format: date-time
          description: The event timestamp
        data:
          type: string
          description: The event data payload
  securitySchemes:
    hmac:
      type: apiKey
      name: Authorization
      in: header
      description: Amazon Signature authorization v4
      x-amazon-apigateway-authtype: awsSigv4