AEB

AEB Push API Rest Endpoint API

PushApi for carrier events.

Operations 1

POST /PushApi/v1/push Receives carrier event data. #

Documentation

📖
Documentation
https://customsmanagement.docs.developers.aeb.com/
📖
APIReference
https://customsmanagement.docs.developers.aeb.com/reference/how-to-use-the-api-reference
📖
GettingStarted
https://customsmanagement.docs.developers.aeb.com/docs/your-first-consignment
📖
Documentation
https://customsmanagement.docs.developers.aeb.com/docs/about-product-classification
📖
Documentation
https://trade-compliance.docs.developers.aeb.com/
📖
APIReference
https://trade-compliance.docs.developers.aeb.com/reference/compliance-foundation
📖
GettingStarted
https://trade-compliance.docs.developers.aeb.com/docs/accessing-the-rest-services
📖
Documentation
https://transport-freight-management.docs.developers.aeb.com/
📖
APIReference
https://transport-freight-management.docs.developers.aeb.com/reference/shipping
📖
APIReference
https://transport-freight-management.docs.developers.aeb.com/reference/createroutingtask
📖
APIReference
https://transport-freight-management.docs.developers.aeb.com/reference/getshipmentsevents
📖
Documentation
https://transport-freight-management.docs.developers.aeb.com/docs/carrier-event-service/llms.txt
📖
APIReference
https://transport-freight-management.docs.developers.aeb.com/reference/getbillingscenario
📖
Documentation
https://transport-freight-management.docs.developers.aeb.com/docs/logistics-cost-management/llms.txt
📖
APIReference
https://transport-freight-management.docs.developers.aeb.com/reference/getworkstations
📖
Documentation
https://transport-freight-management.docs.developers.aeb.com/docs/document-service/llms.txt
📖
Documentation
https://sap-plugins.docs.developers.aeb.com/

Specifications

SDKs

Other Resources

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/aeb-pushapirestendpoint-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

aeb-pushapirestendpoint-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Carrier Event Service HTTP Push API Rest Endpoint API
  description: Thank you for using our HTTP API documentation.
  version: '1.0'
servers:
- url: https://xnsg.dc.aeb.com/demo1ces/rest
security:
- SWAGGER_AUTH_KEY: []
- BASIC_AUTH: []
tags:
- name: PushAPIRestEndpoint
  description: PushApi for carrier events.
paths:
  /PushApi/v1/push:
    post:
      tags:
      - PushAPIRestEndpoint
      summary: Receives carrier event data.
      description: Receives carrier specific data in a generic request object. The endpoint deserializes the data and pushes it for further processing into the system.
      operationId: push
      requestBody:
        description: The carrier data
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PushApiRequestDTO'
            examples:
              A typical example for encoded CSV data:
                description: A typical example for encoded CSV data
                value:
                  content:
                    contentBase64: dHJhY2tpbmdOdW1iZXI7ZXZlbnRJZGVudENvZGU7ZGF0ZTt0aW1lO3RpbWV6b25lO2N1c3RvbWVyUmVmO3JlYXNvbg0KMDA5ODg0O0RFUDsyMDIyLTA4LTEyOzE0OjA4OjEyO0V1cm9wZS9CZXJsaW47QTMzOTMzOw==
          application/xml:
            schema:
              $ref: '#/components/schemas/PushApiRequestDTO'
            examples:
              A typical example for encoded CSV data:
                description: A typical example for encoded CSV data
                value:
                  content:
                    contentBase64: dHJhY2tpbmdOdW1iZXI7ZXZlbnRJZGVudENvZGU7ZGF0ZTt0aW1lO3RpbWV6b25lO2N1c3RvbWVyUmVmO3JlYXNvbg0KMDA5ODg0O0RFUDsyMDIyLTA4LTEyOzE0OjA4OjEyO0V1cm9wZS9CZXJsaW47QTMzOTMzOw==
      responses:
        '204':
          description: Success, no content
        '400':
          description: Client request error
          content:
            application/json:
              example:
                errorMessage: No request content available
            application/xml:
              example:
                errorMessage: No request content available
        '401':
          description: Client request error
          content:
            application/json:
              examples:
                Authentication error:
                  description: When not authentication data has been provided or the authentication data are invalid
                  value:
                    errorMessage: Authentication required
            application/xml:
              examples:
                Authentication error:
                  description: When not authentication data has been provided or the authentication data are invalid
                  value:
                    errorMessage: Authentication required
        '500':
          description: Server error
          content:
            application/json:
              example:
                errorMessage: Adapter is not active
                errorCause: javax.ws.rs.ServerErrorException
            application/xml:
              example:
                errorMessage: Adapter is not active
                errorCause: javax.ws.rs.ServerErrorException
      security:
      - BASIC_AUTH: []
components:
  schemas:
    PushApiRequestContentDTO:
      type: object
      properties:
        contentBase64:
          type: string
    PushApiRequestDTO:
      type: object
      properties:
        content:
          $ref: '#/components/schemas/PushApiRequestContentDTO'
      description: DTO for sending data to the push api
      xml:
        name: pushApiRequestDTO
  securitySchemes:
    SWAGGER_AUTH_KEY:
      type: apiKey
      name: X-XNSG_WEB_TOKEN
      in: header
    BASIC_AUTH:
      type: http
      scheme: basic
x-proxy-enabled: false