Magaya

Magaya is a logistics and supply chain software company whose cloud Digital Freight Platform runs freight forwarding, warehouse management, customs compliance, rate management, and a digital customer experience portal. Magaya exposes programmatic access to the logistics objects inside a customer's system - Shipments, Warehouse Receipts, Invoices, Items, and financial Transactions - through the Magaya API (a SOAP/XML Web Service) and the newer Magaya Open API collection of web services, plus a REST Digital Freight Portal API inherited from the Qwyk acquisition. API access is gated behind a Magaya subscription and a dedicated API user configured in the customer's own tenant (base URL of the form https://SYSTEMID.magayacloud.com/api); the reference documentation is public but runtime access requires a licensed system, so the resource paths below are honestly modeled from Magaya's published object model rather than confirmed against an open self-serve reference.

5 APIs 0 Features
LogisticsSupply ChainFreight ForwardingWarehouse ManagementShippingCustomsTransportation

APIs

Magaya Shipments API

Programmatic access to air, ocean, and ground shipments in a Magaya system - list, retrieve, and create shipment records with their consignee, shipper, routing, cargo, and miles...

Magaya Warehouse Receipts API

Access warehouse receipts and the cargo pieces, weights, volumes, and inventory balances they record as goods are received into a Magaya-managed warehouse. Supports listing, ret...

Magaya Invoices API

Read and create accounts-receivable invoices with their line-item charges, currency, taxes, and links to the shipment or warehouse receipt being billed. Modeled from the Magaya ...

Magaya Items API

Manage item and commodity master data - the parts, products, and packaging definitions referenced by shipments, warehouse receipts, and orders, including descriptions, part numb...

Magaya Transactions API

Generic access to Magaya transaction documents - pickup orders, bookings, quotations, sales orders, purchase orders, cargo releases, and other dated transaction records - that s...

Collections

Pricing Plans

Magaya Plans Pricing

2 plans

PLANS

Rate Limits

Magaya Rate Limits

3 limits

RATE LIMITS

FinOps

Magaya Finops

FINOPS

Resources

🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
APIReference
APIReference
📝
SignUp
SignUp
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Magaya API (Modeled)
  version: 0.1-modeled
request:
  auth:
    type: basic
    username: '{{apiUsername}}'
    password: '{{apiPassword}}'
items:
- info:
    name: Shipments
    type: folder
  items:
  - info:
      name: List shipments
      type: http
    http:
      method: GET
      url: https://SYSTEMID.magayacloud.com/api/shipments
    docs: Lists shipments in the Magaya system. Modeled endpoint; access requires a Magaya subscription and configured API
      user.
  - info:
      name: Create a shipment
      type: http
    http:
      method: POST
      url: https://SYSTEMID.magayacloud.com/api/shipments
      body:
        type: json
        data: '{ "mode": "Ocean" }'
    docs: Creates a shipment. Modeled endpoint.
  - info:
      name: Retrieve a shipment
      type: http
    http:
      method: GET
      url: https://SYSTEMID.magayacloud.com/api/shipments/:guid
      params:
      - name: guid
        value: ''
        type: path
        description: Magaya object GUID.
    docs: Retrieves a shipment by GUID. Modeled endpoint.
- info:
    name: Warehouse Receipts
    type: folder
  items:
  - info:
      name: List warehouse receipts
      type: http
    http:
      method: GET
      url: https://SYSTEMID.magayacloud.com/api/warehouse-receipts
    docs: Lists warehouse receipts. Modeled endpoint.
  - info:
      name: Retrieve a warehouse receipt
      type: http
    http:
      method: GET
      url: https://SYSTEMID.magayacloud.com/api/warehouse-receipts/:guid
      params:
      - name: guid
        value: ''
        type: path
        description: Magaya object GUID.
    docs: Retrieves a warehouse receipt by GUID. Modeled endpoint.
- info:
    name: Invoices
    type: folder
  items:
  - info:
      name: List invoices
      type: http
    http:
      method: GET
      url: https://SYSTEMID.magayacloud.com/api/invoices
    docs: Lists accounts-receivable invoices. Modeled endpoint.
  - info:
      name: Retrieve an invoice
      type: http
    http:
      method: GET
      url: https://SYSTEMID.magayacloud.com/api/invoices/:guid
      params:
      - name: guid
        value: ''
        type: path
        description: Magaya object GUID.
    docs: Retrieves an invoice by GUID. Modeled endpoint.
- info:
    name: Items
    type: folder
  items:
  - info:
      name: List items
      type: http
    http:
      method: GET
      url: https://SYSTEMID.magayacloud.com/api/items
    docs: Lists item and commodity master data. Modeled endpoint.
  - info:
      name: Retrieve an item
      type: http
    http:
      method: GET
      url: https://SYSTEMID.magayacloud.com/api/items/:guid
      params:
      - name: guid
        value: ''
        type: path
        description: Magaya object GUID.
    docs: Retrieves an item by GUID. Modeled endpoint.
- info:
    name: Transactions
    type: folder
  items:
  - info:
      name: List transactions
      type: http
    http:
      method: GET
      url: https://SYSTEMID.magayacloud.com/api/transactions?type=Booking
      params:
      - name: type
        value: Booking
        type: query
        description: Transaction type filter.
    docs: Lists Magaya transaction documents. Modeled endpoint.
  - info:
      name: Retrieve a transaction
      type: http
    http:
      method: GET
      url: https://SYSTEMID.magayacloud.com/api/transactions/:guid
      params:
      - name: guid
        value: ''
        type: path
        description: Magaya object GUID.
    docs: Retrieves a transaction by GUID. Modeled endpoint.