Custom unique identifier that can be used to lookup an order. This typically is the primary key of the order located in a system outside of the Malomo Platform.
created_at
When an Order was created on the Malomo Platform.
customer
Customer an Order belongs to.
email
Email address that should be used for communication about an order. This email address may be different from the Customer email address.
id
Unique identifier for an Order.
meta
Additional, arbitrary information attached to an Order. These can be useful for storing additional information about an order in a structured format.
number
A number identifying an order placed by a customer.
shipments
Shipments associated with an Order.
updated_at
When an Order was last updated.
Create an Order
POSThttps://api.gomalomo.com/orders
Request Body
Name
Type
Description
alternate_id
string
Custom unique identifier that can be used to lookup an Order.
customer
object
Customer object used to assign a Customer to an Order.
email
string
Email address to be used for communication with a customer about a specific order.
meta
object
Additional, arbitrary information attached to an Order.
number
string
A number identifying an order placed by a customer.
shipments
array
An array of Shipment objects containing both a carrier and tracking_code.
Email address of the Customer associated with the Order to retrieve.
Retrieve a List of Orders
GEThttps://api.gomalomo.com/orders
Query Parameters
Name
Type
Description
prev
string
Retrieve orders before a given cursor.
next
string
Retrieve orders after a given cursor.
Update an Order
PUThttps://api.gomalomo.com/orders/:id
Path Parameters
Name
Type
Description
id
string
Unique identifier of the order to update
Request Body
Name
Type
Description
customer
object
Customer object used to assign a Customer to an Order. If a value of null is provided the customer will be removed from the order.
email
string
Email address to be used for communication with a customer about a specific order.
meta
object
Additional, arbitrary information attached to an Order.
shipments
array
An array of objects containing both a carrier and tracking_code. Note that this must be a complete list of carrier and tracking_code combinations for an Order. If a carrier and tracking_code that currently exist on an Order are not supplied that Shipment will be removed from the Order.