Mile Promotion Bundle API

The Promotion Bundle API from Mile — 2 operation(s) for promotion bundle.

Operations 2

POST /api/v1/partners/promotion/bundle/create Create Promotion Bundle with multiple products #
GET /api/v1/partners/promotion/bundle/get Get Promotion Bundle details #

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/mile-promotion-bundle-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

mile-promotion-bundle-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Documentation Aramex Promotion Bundle API
  description: Api Documentation
  version: 1.0.0
servers:
- url: https://lastmile.milenow.com/index.php
  description: Api Documentation
security:
- Bearer: []
tags:
- name: Promotion Bundle
paths:
  /api/v1/partners/promotion/bundle/create:
    post:
      tags:
      - Promotion Bundle
      summary: Create Promotion Bundle with multiple products
      description: This call creates promotion bundle entries with the same bundle code for multiple products
      operationId: post_app_apiv1_trackingapi_createpromotionbundle
      parameters:
      - name: access_token
        in: query
        description: Access Token
        schema:
          type: string
      - name: bundle_code
        in: query
        description: Bundle Code (Required)
        required: true
        schema:
          type: string
      - name: bundle_price
        in: query
        description: Bundle Price (Required)
        required: true
        schema:
          type: string
      - name: bundle_name
        in: query
        description: Bundle Name (Optional)
        required: false
        schema:
          type: string
      - name: product_items
        in: query
        description: 'Product Items in JSON format. Required format: [{"external_code":"SKU123","product_name":"iPhone 15","quantity":2}]. Either external_code or product_name is required along with quantity.'
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the created promotion bundle entries
  /api/v1/partners/promotion/bundle/get:
    get:
      tags:
      - Promotion Bundle
      summary: Get Promotion Bundle details
      description: This call retrieves promotion bundle entries by bundle code, name, or search term
      operationId: get_app_apiv1_trackingapi_getpromotionbundle
      parameters:
      - name: access_token
        in: query
        description: Access Token
        schema:
          type: string
      - name: bundle_code
        in: query
        description: Bundle Code (Optional - use either bundle_code or bundle_name)
        required: false
        schema:
          type: string
      - name: bundle_name
        in: query
        description: Bundle Name (Optional - use either bundle_code or bundle_name)
        required: false
        schema:
          type: string
      - name: search
        in: query
        description: Search term for bundle name (Optional)
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Returns promotion bundle entries
components:
  securitySchemes:
    Bearer:
      type: http
      bearerFormat: JWT
      scheme: bearer