ShopGo
1.0.0
1.0.0
  • Welcome
  • Developer Guides
    • Order Processing
    • Webhooks
      • Calculate Shipping Rates
  • Management API
    • Introduction
    • Authentication
      • Using User API Key
      • Using Platform API Key
    • Authorization
    • Objects
      • Primitives
      • Order
      • Payment
      • Shipment
      • Purchase
      • Adjustment
      • Charge
      • Attribute
    • API Endpoints
  • Platform API
    • Introduction
    • Authentication
    • Objects
    • API Endpoints
      • Tenant
Powered by GitBook
On this page

Was this helpful?

  1. Management API
  2. Objects

Shipment

Object model reference for Shipment object

Shipment

Physical or digital transfer of ordered goods/services

Attributes

Name

Type

Description

id

String

unique identifier

state

String

shipment state (ready, shipped or delivered)

source

address to pick shipment from

destination

address to deliver shipment to

created

shipment creation timestamp

provider

String

provider of shipping service

target_delivery

planned date and time of delivering shipment

Example

{
    "id": "1",
    "state": "shipped",
    "source": <Address>,
    "destination": <Address>,
    "created": <DateTime>,
    "provider": "matrix-rate",
    "target_delivery": <DateTime>,
}
PreviousPaymentNextPurchase

Last updated 4 years ago

Was this helpful?

Address
Address
DateTime
DateTime