Order API
An 'order' is our developer term for a pseudo-entity that maps to the CiviCRM contribution object but also encompasses related entities like line items, memberships, event registrations and underlying financial entities. There is no single 'order' table but the top level order information is stored in the civicrm_contribution table.
The Order API is intended to be used as the primary API for adding, updating, and deleting orders. When using the Order API you should:
- Rely on the Order API to create related objects like line items, memberships and event registrations. (Don't pre-create them)
- Always create orders in a pending state (unfortunately you need to pass contribution_status_id = Pending in for historical reasons).
- Expect the status of contribution and any related memberships or event registrations to be Pending.
- Call Payment.create to record any payments that have been made against the order.
- Rely on adding payments to transition any relate entities to completed.
You should NOT
- Pre-create line items memberships or event registrations
- Update the status of an order to Completed using any method OTHER than adding payments to it (Payment.create api)
Sample Order.create
for Simple Contribution¶
Here is how to record a simple donation.
Step 1¶
Call Order.create
with a structure like the below. Note that we always create orders with status Pending (but see Step 2 below). From version 5.39 onwards you do not need to set contribution_status_id (and anything you do pass in will be ignored).
{
"contact_id": 202,
"total_amount": 1.23,
"financial_type_id": "Donation",
"receive_date": "2019-10-08",
"contribution_status_id": "Pending",
"line_items" : [
{
"params": { },
"line_item": [
{
"qty": 1,
"unit_price": 1.23,
"line_total": 1.23,
"price_field_id": 1,
}
]
}
]
}
Things to note:
-
The outer array keys mostly refer to the Contribution record. We set the
contribution_status_id
toPending
when we create an order. -
The
line_items
value is an array of objects each havingparams
which describes an entity that needs to be created, and aline_item
key, described next. -
The
line_item
structure is also an array of line items that all belong to the entity described in theparams
structure. In this example theparams
structure is empty, and we have a single item underline_item
which therefore is not related to anything other than the contribution. -
The
line_item
structures useprice_field_id
. This relates to a particular field in a price set. For our simple contribution we can use1
for which is a special default price field that is always available. -
The
line_total
must equal theunit_price
×qty
Info
If you provide a value to total_amount
as we have above, it must equal the sum of all the line_total
values. Before 5.20 there was a bug that required the top-level total_amount
was provided, but from 5.20 onward you can omit this and it will be calculated automatically from the sum of the line_items
.
Currently the data returned from Order.create
shows only the fields from the created Contribution. However an Order.get
API call for the ID will also include an array of line_items
(see below for example).
Step 2¶
Now we have our order set up we can complete the order by adding a payment for the total value: so we call the Payment.create
API with at least the following parameters:
{
"contribution_id": 12345,
"total_amount": 1.23
}
The Payment API works with the Order API to update the records, and an Order.getsingle
request for the contribution will give something like the following:
{
"contact_id": "202",
"contact_type": "Individual",
"contact_sub_type": "",
"sort_name": "admin@example.com",
"display_name": "admin@example.com",
"contribution_id": "95",
"currency": "USD",
"contribution_recur_id": "",
"contribution_status_id": "1",
"contribution_campaign_id": "",
"payment_instrument_id": "4",
"receive_date": "2019-10-08 12:42:35",
"non_deductible_amount": "0.00",
"total_amount": "1.23",
"fee_amount": "0.00",
"net_amount": "1.23",
"trxn_id": "",
"invoice_id": "",
"invoice_number": "",
"contribution_cancel_date": "",
"cancel_reason": "",
"receipt_date": "2019-10-08 12:42:36",
"thankyou_date": "",
"contribution_source": "",
"amount_level": "",
"is_test": "0",
"is_pay_later": "0",
"contribution_check_number": "",
"financial_account_id": "1",
"accounting_code": "4200",
"campaign_id": "",
"contribution_campaign_title": "",
"financial_type_id": "1",
"contribution_note": "",
"contribution_batch": "",
"civicrm_value_donor_information_3_id": "",
"custom_6": "",
"custom_5": "",
"contribution_recur_status": "Completed",
"payment_instrument": "Check",
"contribution_status": "Completed",
"financial_type": "Donation",
"check_number": "",
"instrument_id": "4",
"cancel_date": "",
"id": "95",
"contribution_type_id": "1",
"line_items": [
{
"id": "97",
"entity_table": "civicrm_contribution",
"entity_id": "95",
"contribution_id": "95",
"price_field_id": "1",
"qty": "1.00",
"unit_price": "1.23",
"line_total": "1.23",
"price_field_value_id": "1",
"financial_type_id": "1",
"non_deductible_amount": "0.00",
"contribution_type_id": "1"
}
]
}
Notes:
-
The
contribution_status_id
is now set to 1 (Completed). -
The line item has inherited the
financial_type_id
from the contribution.
Behind the scenes these API calls have created lots of financial records as listed below. These records will not be removed no matter what happens to the contribution; if the contribution is cancelled/refunded, more financial records are added to create bookkeeping adjustment transactions that achieve the desired accounting result, including the preservation of an auditable log.
- A financial item is created against each line item. If there is sales tax, for each tax on the line item an additional financial item is created.
- A row in the
civicrm_financial_trxn
table that describes the financial transaction; the transfer of funds between two accounts from the company's chart of accounts (e.g. in Xero/QuickBooks etc.) - A row in
civicrm_entity_financial_trxn
links the financial item to a Financial Transaction. - Another row in
civicrm_entity_financial_trxn
links that financial transaction back to the Contribution.
Sample Order.create for Single Membership¶
Here is how to create an order for a single membership of type "General". Again, we follow the 2 steps: Create the order, then complete the order with the Payment API.
Here's the parameters for the Order.create
call, which will create a Pending
Contribution, with a Pending Membership.
{
"contact_id": 202,
"total_amount": 100.00,
"financial_type_id": "Member Dues",
"receive_date": "2019-10-08",
"contribution_status_id": "Pending",
"line_items" : [
{
"params": {
"membership_type_id": "General",
"contact_id": 202,
"skipStatusCal": 1,
"status_id": "Pending"
},
"line_item": [
{
"entity_table":"civicrm_membership",
"price_field_id":"4",
"price_field_value_id":"7",
"qty":"1",
"unit_price":"100.00",
"line_total":"100.00"
}
]
}
]
}
After this, when we call Payment.create
to complete the transaction the membership becomes live and its status will be recalculated (e.g. to 'New').
The Order.get
request returns all the information about the contribution, the line items and the related membership:
{
"contact_id": "202",
"contact_type": "Individual",
"contact_sub_type": "",
"sort_name": "Wilma",
"display_name": "Wilma",
"contribution_id": "101",
"currency": "USD",
"contribution_recur_id": "",
"contribution_status_id": "1",
"contribution_campaign_id": "",
"payment_instrument_id": "4",
"receive_date": "2019-10-09 17:13:10",
"non_deductible_amount": "0.00",
"total_amount": "100.00",
"fee_amount": "0.00",
"net_amount": "100.00",
"trxn_id": "",
"invoice_id": "",
"invoice_number": "",
"contribution_cancel_date": "",
"cancel_reason": "",
"receipt_date": "2019-10-09 17:13:10",
"thankyou_date": "",
"contribution_source": "",
"amount_level": "",
"is_test": "0",
"is_pay_later": "0",
"contribution_check_number": "",
"financial_account_id": "2",
"accounting_code": "4400",
"campaign_id": "",
"contribution_campaign_title": "",
"financial_type_id": "2",
"contribution_note": "",
"contribution_batch": "",
"civicrm_value_donor_information_3_id": "",
"custom_6": "",
"custom_5": "",
"contribution_recur_status": "Completed",
"payment_instrument": "Check",
"contribution_status": "Completed",
"financial_type": "Member Dues",
"check_number": "",
"instrument_id": "4",
"cancel_date": "",
"id": "101",
"contribution_type_id": "2",
"line_items": [
{
"id": "103",
"entity_table": "civicrm_membership",
"entity_id": "33",
"contribution_id": "101",
"price_field_id": "4",
"qty": "1.00",
"unit_price": "100.00",
"line_total": "100.00",
"price_field_value_id": "7",
"financial_type_id": "2",
"non_deductible_amount": "0.00",
"contribution_type_id": "2"
}
]
}
Note
skipStatusCal
is deprecated and will have no effect via the Order.create
API from CiviCRM 5.41.1 forward. It will not cause harm to leave it in for backward compatibility for now, so if your code needs to support earlier versions of CiviCRM you might want to leave that parameter in place.
Membership dates, statuses and renewals¶
If you wish to renew an existing membership using the Order.create
API, you need to add the Membership ID into the entity params; in the above example this would be indexed at $apiParams['line_items'][0]['params']['id']
.
Membership dates (join_date
, start_date
, end_date
) may be included in the line item's params
list and generally, when provided, those dates will be used. However this should normally be avoided for live use, but may be useful for historical imports or special cases; i.e. normally, you should not provide these date parameters.
When dates are not provided:
For new memberships, start_date
will be today; the join_date
will also be set to today; the end_date
is calculated from the membership type's membership term. The membership status is always created as pending, updated when a Payment.create
call is made for a payment that completes the fee.
For renewals, no dates/statuses are updated from an Order.create
call, leaving the existing membership untouched. However, when the Payment.create
call that completes the fee is made, the start_date
and end_date
are updated but not the join_date
. The dates are updated differently according to whether the membership is still live or not:
-
If the renewal payment happens to before/on the
end_date
of the membership, thestart_date
is left alone, but theend_date
is extended by a membership term. So you can pay your renewal early and add an extra year (for example) to your membership. -
If the renewal payment happens after the
end_date
(i.e. expired/grace membership), then thestart_date
is set to today, and theend_date
is set to a membership term after today. Note that this can result in a membership appearing to have been continuous, with no record of there having been a gap (because there is a single membership record with ajoin_date
still set to the start of the original membership). This is the subject of ongoing discussion as it suits some situations better than others.
Developers are advised to read the code for testAddOrderForMembershipWithDates() and especially the dataProvider function that follows this for commented examples.
Sample Order.create for Single Event Registration¶
Here is how to create an order for a single ticket purchase for an event.
{
"contact_id": 202,
"total_amount": 1000.00,
"financial_type_id": "Event fee",
"receive_date": "2019-10-08",
"contribution_status_id": "Pending",
"line_items" : [
{
"params": {
"event_id": 3,
"contact_id": 202,
"role_id": "Attendee",
"status_id": "Pending from incomplete transaction"
},
"line_item": [
{
"entity_table":"civicrm_participant",
"price_field_id":"7",
"price_field_value_id":"14",
"qty":"1",
"unit_price":"1000.00",
"line_total":"1000.00"
}
]
}
]
}
Notes:
- As with the other examples, we call it with
contribution_status_id
Pending
. - The
params
define the participant. - The
line_item
entry defines the price field and its value. - On calling
Payment.create
for this order, the participant's status would be changed to Registered.
Info
Before 5.20 there was a bug such that you had to pass in "status_id": "Pending from incomplete transaction"
otherwise the participant was created as Registered even before the paymnet has been made.
Transitioning from Contribution.transact api to Order api¶
Contribution.transact api was a v2 api that we left in place in v3. It has never had unit tests & has never been supported. Unfortunately by not being more aggressive about deprecating it some sites have adopted it.
The Contribution.transact api will create a 'simple' contribution and process a payment. It will not create the line items correctly for anything other than a straight forward donation and does not follow our practice of creating a pending contribution and then adding a payment. It's likely there are other unknown gaps in how it works.
The simplest first step to migrate off it is to replace the order api call with a call that follows the recommended flow but still does not address the line item creation gaps & it is recommended you look at the patterns above to do that. This first step looks like
// Start with the same parameters as Contribution.transact.
$params = $transactParams;
// It would be better just to include the relevant params but....
$paymentParams = $transactParams;
$params['contribution_status_id'] = 'Pending';
if (!isset($params['invoice_id'])) {
// Set an invoice_id here if you have not already done so.
// Potentially Order api should do this https://lab.civicrm.org/dev/financial/issues/78
}
if (!isset($params['invoiceID'])) {
// This would be required prior to https://lab.civicrm.org/dev/financial/issues/77
$params['invoiceID'] = $params['invoice_id'];
}
$order = civicrm_api3('Order', 'create', $params);
try {
// Use the Payment Processor to attempt to take the actual payment. You may
// pass in other params here, too.
civicrm_api3('PaymentProcessor', 'pay', [
'payment_processor_id' => $params['payment_processor_id'],
'contribution_id' => $order['id'],
'amount' => $params['total_amount'],
]);
// Assuming the payment was taken, record it which will mark the Contribution
// as Completed and update related entities.
civicrm_api3('Payment', 'create', [
'contribution_id' => $order['id'],
'total_amount' => $params['amount'],
'payment_instrument_id' => $params['payment_instrument_id'],
// If there is a processor, provide it:
'payment_processor_id' => $params['payment_processor_id'],
]);
}
catch (Exception $e) {
// it failed
}
The above is a few more lines but it is an important step towards transitioning to a supported method and away from a flawed api.