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

Payment

Object model reference for Payment object

Payment

Monetary transfer that impacts order settlement status

Attributes

Name

Type

Description

total

monetary value of payment

method

String

payment method

created

payment creation timestamp

transaction_data

Object

arbitrary and service-specific payment log data

Example

{
    "total": <Money>,
    "method": "cash_on_delivery",
    "created": <DateTime>,
    "transaction_data": {}
}

Payment Methods

The method parameter can take one of the following values:

  • cash_on_delivery

  • credit_card

  • refund

PreviousOrderNextShipment

Last updated 4 years ago

Was this helpful?

Money
DateTime