Orders
Orders contain information about the line items in an order, the corresponding Recharge subscription ID for the order, and IDs for a corresponding order if one is created on an external ecommerce platform.
Understanding orders
In Recharge's direct integrations, an order is created in Recharge after we've successfully processed a Charge. When using our API Integration, you should create an Order record in your external integration to maintain consistency between data in Recharge and on your external platform. See syncing orders via API integration for more information.
The orders resource also contains some information about the customer. See Addresses and Customers for detailed billing information.
At this time, you can only update orders that are prepaid queued order. These items have been paid ahead of time by the customer but are set to be delivered on a recurring cycle. An order contains all the same JSON data as the charge. In case of a prepaid order creation, the order will be queued for a particular date and submitted on that date to the external eCommerce platform.
The following table details which scopes are required to read and write the orders record.
Scope | Description |
---|---|
read_orders | Required to read orders record. |
write_orders | Required to write to the orders record. |
Type attribute
The type
attribute helps characterise an order
. It can take 2 values: CHECKOUT
or RECURRING
.
CHECKOUT
- this means the order was placed through the checkout by the userRECURRING
- any order which is not aCHECKOUT
Updating line items
You can only update line_item
properties directly on the Orders object if it is a prepaid subscription.
To update an Order's line_items
, you must update the corresponding Subscription, which will then generate a new Charge. You must make changes to the Order line_items
this way because the values of this property are inherited from the Charge model.
Warning:
When updating
line_items
you must provide all the JSON data that was inline_items
before the update, as the data you provide in aPUT
overrides the previous record and only new data will remain.
Additionally, you can leverage the line_items.properties
on an order
to store additional information in an order. The attribute takes an array of name
|value
pairs. line_items
of an order is an inherited parameter from the charge
object which itself is a collection of the subscriptions
linked to this charge. When a charge
is processed the properties
are inherited by the resulting order(s)
.
There are 2 possible scenarios:
-
You want to add information to an order that already exists
This is the case if you are using a prepaid subscription where all orders for the prepaid subscription are generated upon the payment of the subscription. Or alternatively you are looking to update an order whose charge has already been processed. In both cases there is an existingorder
object(s) for you to update.
In this situation you will need to find the relevant object(s) and update them directly using the [order update] (https://developer.rechargepayments.com/v1?shell#update-an-order) endpoint. -
You are looking to add information to future orders
In this case theorder
objects do not yet exist and you want those properties to be inherited by all futureorders
. Therefore you need to look for the correspondingsubscription
and update thesubscription.properties
with the relevant details you need to carry over on the future order(s).
Any futurecharges
involving thissubscription
will carry theproperties
of thissubscription
in itsline_items
.
But what about
QUEUED
charges? Uponsubscription
update we make sure to regenerate the charge objects inQUEUED
state which are linked to this subscription and the newproperties
you added will be then appear on the regeneratedcharges
.
Once the charges are processed at their scheduled_at
time the order(s)
will be generated and will contain the new properties
in their line_items
.
Orders FAQs
If I create an order in Shopify through Shopify API what is needed for the order to appear on the Recharge order list?
In that case you should also create it in Recharge. You’d create the customer, address, and subscription which would schedule the next future charge. It’s the same concept as if you had added them [manually via the Recharge UI] (https://support.rechargepayments.com/hc/en-us/articles/360008682754-Adding-a-customer-to-Recharge-manually).
Why do some of my orders have value of null
for shopify_order_id
or external_order_id
?
null
for shopify_order_id
or external_order_id
?- If you are not using an external order management platform
This field will remainnull
as it is related to the reference to the matching order in your external order management platform. - If you are using an external order management platform (aka OMS)
- If you are using one of our existing e-commerce integration
Theexternal_ order_id
orshopify_order_id
will only be populated once theorder
has been created in the OMS and we have received confirmation of the correspondingorder_id
in the OMS. - If you are using a custom OMS integration and you would like to make sure to keep track in Recharge of the corresponding order_ids in your OMS, you will need to make sure that the process you use to extract the orders generated in Recharge also update the said orders with the relevant ids.
- If you are using one of our existing e-commerce integration
Updated 7 months ago