AEB

AEB Workstation Service Agent API

Connection handler for the Workstation Service Agent

Operations 6

GET /wssagent/connect #
DELETE /wssagent/connect #
GET /wssagent/connection/{id} #
POST /wssagent/connection/{id} #
DELETE /wssagent/connection/{id} #
GET /wssagent/status #

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-workstationserviceagent-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-workstationserviceagent-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aeb Workstation Service Agent API
  version: '1.0'
  description: 'Operations tagged WorkstationServiceAgent across 11 of this provider''s published API definitions: aeb-bsm-openapi.json, aeb-carrier-connect-openapi.json, aeb-carrier-event-service-openapi.json, aeb-carrier-select-openapi.json, aeb-customs-broker-portal-openapi.json, aeb-customs-inventory-management-openapi.json, aeb-customs-management-openapi.json, aeb-document-service-openapi.json, aeb-logistics-cost-management-openapi.json, aeb-product-classification-openapi.json, aeb-trade-compliance-management-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://rz3.aeb.de/test2bsm/rest
- url: https://rz3.aeb.de/demo1cai/rest
- url: https://xnsg.dc.aeb.com/demo1ces/rest
- url: https://rz3.aeb.de/demo1routing/rest
- url: https://rz3.aeb.de/test2broker/rest
- url: https://rz3.aeb.de/test2cim/rest
- url: https://rz3.aeb.de/test2ici/rest
- url: https://rz3.aeb.de/demo1docs/rest
- url: https://rz3.aeb.de/demo1billing/rest
- url: https://rz3.aeb.de/test2cl/rest
- url: https://rz3.aeb.de/test4ce/rest
security:
- SWAGGER_AUTH_KEY: []
- BASIC_AUTH: []
tags:
- name: WorkstationServiceAgent
  description: Connection handler for the Workstation Service Agent
paths:
  /wssagent/connect:
    servers:
    - url: https://rz3.aeb.de/test2bsm/rest
    get:
      tags:
      - WorkstationServiceAgent
      description: Checks if workstation agent exists for given id, creates one if not exists and returns corresponding launch request. Returns response object.
      operationId: connect
      parameters:
      - name: id
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Response object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkstationSessionInfoDTO'
        '401':
          description: Authentication is missing.
      deprecated: true
    delete:
      tags:
      - WorkstationServiceAgent
      description: Ends existing workstation agent. Noop if there is no agent for the id.
      operationId: disconnect0
      parameters:
      - name: id
        in: query
        schema:
          type: string
      responses:
        '204':
          description: No content
        '401':
          description: Authentication is missing.
      deprecated: true
  /wssagent/connection/{id}:
    servers:
    - url: https://rz3.aeb.de/test2bsm/rest
    get:
      tags:
      - WorkstationServiceAgent
      description: Returns response object with information about given workstation service agent.
      operationId: status0
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: details
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: Response object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkstationSessionInfoDTO'
        '404':
          description: Unknown connection id.
        '401':
          description: Authentication is missing.
    post:
      tags:
      - WorkstationServiceAgent
      description: Checks if workstation agent exists for given id, creates one if not exists and returns corresponding launch request. Returns response object.
      operationId: connect0
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: userActivityTimeoutMS
        in: query
        description: User activity timeout (in ms). The time is counted from the last 'status' request. Not recommended to use values shorter than the typical print session duration.
        schema:
          type: integer
          format: int64
        examples:
          empty:
            description: empty
          default:
            description: default
            value: 7200000
      - name: registerTimeoutMS
        in: query
        description: Timeout (in ms) for the workstation agent launch request. The time is counted from the connection 'create' request that resulted with a launch request. Note that the agent launcher may require to download and install updates before making a connection.
        schema:
          type: integer
          format: int32
        examples:
          empty:
            description: empty
          default:
            description: default
            value: 1800000
      - name: processingTimeoutMS
        in: query
        description: Timeout (in ms) for the agent request server side processing. Should not be less than the client long polling interval (30s).
        schema:
          type: integer
          format: int32
        examples:
          empty:
            description: empty
          default:
            description: default
            value: 300000
      - name: nextPollingRequestTimeoutMS
        in: query
        description: Timeout (in ms) for the agent to send the next long polling request. Values smaller than 30-60 seconds may result in premature disconnection of sessions under unstable network conditions.
        schema:
          type: integer
          format: int32
        examples:
          empty:
            description: empty
          default:
            description: default
            value: 60000
      responses:
        '200':
          description: Response object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkstationSessionInfoDTO'
        '401':
          description: Authentication is missing.
    delete:
      tags:
      - WorkstationServiceAgent
      description: Ends existing workstation agent. Noop if there is no agent for the id.
      operationId: disconnect1
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No content
        '401':
          description: Authentication is missing.
  /wssagent/status:
    servers:
    - url: https://rz3.aeb.de/test2bsm/rest
    get:
      tags:
      - WorkstationServiceAgent
      description: Returns response object with information about given workstation service agent.
      operationId: status
      parameters:
      - name: id
        in: query
        schema:
          type: string
      - name: details
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: Response object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkstationSessionInfoDTO'
        '401':
          description: Authentication is missing.
      deprecated: true
components:
  schemas:
    WorkstationSessionInfoDTO:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
          - UNKNOWN
          - LAUNCH_REQUEST
          - LAUNCHING
          - CONNECTED
        info:
          $ref: '#/components/schemas/DesktopAgentInfo'
    DesktopAgentInfo:
      type: object
      properties:
        id:
          type: string
        registeredTime:
          type: string
          format: date-time
        cloudServiceAgent:
          type: boolean
        cloudAgent:
          type: boolean
        diagnosticAgent:
          type: boolean
        mainWorkstationAgent:
          type: boolean
        childWorkstationAgent:
          type: boolean
        clientId:
          type: string
        locationLabel:
          type: string
        workstationSessionId:
          type: string
        processInfo:
          $ref: '#/components/schemas/ProcessInfo'
        launcherInfo:
          $ref: '#/components/schemas/LauncherInfo'
        sessionInfo:
          $ref: '#/components/schemas/SessionInfo'
        tracingInfo:
          $ref: '#/components/schemas/TracingInfo'
        perfMonitoringInfo:
          $ref: '#/components/schemas/PerfMonitoringInfo'
        lastNetworkActivityTime:
          type: string
          format: date-time
    LauncherInfo:
      type: object
      properties:
        version:
          type: string
        zoneName:
          type: string
    ProcessInfo:
      type: object
      properties:
        host:
          type: string
        os:
          type: string
        pid:
          type: string
        name:
          type: string
        user:
          type: string
        initError:
          type: string
    SessionInfo:
      type: object
      properties:
        userName:
          type: string
    PerfMonitoringInfo:
      type: object
      properties:
        createdToRegisteredDurationMs:
          type: integer
          format: int64
        createdToFirstNetworkActivityDurationMs:
          type: integer
          format: int64
        createdToLaunchRequestedDurationMs:
          type: integer
          format: int64
    TracingInfo:
      type: object
      properties:
        enabled:
          type: boolean
        debugEnabled:
          type: boolean
        count:
          type: integer
          format: int32
        size:
          type: integer
          format: int64
        oldestTime:
          type: string
          format: date-time
        newestTime:
          type: string
          format: date-time
  securitySchemes:
    SWAGGER_AUTH_KEY:
      type: apiKey
      name: X-XNSG_WEB_TOKEN
      in: header
    BASIC_AUTH:
      type: http
      scheme: basic
x-refined-from:
- aeb-bsm-openapi.json
- aeb-carrier-connect-openapi.json
- aeb-carrier-event-service-openapi.json
- aeb-carrier-select-openapi.json
- aeb-customs-broker-portal-openapi.json
- aeb-customs-inventory-management-openapi.json
- aeb-customs-management-openapi.json
- aeb-document-service-openapi.json
- aeb-logistics-cost-management-openapi.json
- aeb-product-classification-openapi.json
- aeb-trade-compliance-management-openapi.json
x-proxy-enabled: false