Skip to content

Latest commit

 

History

History
567 lines (440 loc) · 22.7 KB

orders.md

File metadata and controls

567 lines (440 loc) · 22.7 KB

Orders

orders_api = client.orders

Class Name

OrdersApi

Methods

Create Order

Creates a new order that can include information about products for purchase and settings to apply to the purchase.

To pay for a created order, see Pay for Orders.

You can modify open orders using the UpdateOrder endpoint.

def create_order(self,
                body)

Parameters

Parameter Type Tags Description
body Create Order Request Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

Create Order Response

Example Usage

body = {}
body['order'] = {}
body['order']['id'] = 'id0'
body['order']['location_id'] = '057P5VYJ4A5X1'
body['order']['reference_id'] = 'my-order-001'
body['order']['source'] = {}
body['order']['source']['name'] = 'name6'
body['order']['customer_id'] = 'customer_id8'
body['order']['line_items'] = []

body['order']['line_items'].append({})
body['order']['line_items'][0]['uid'] = 'uid1'
body['order']['line_items'][0]['name'] = 'New York Strip Steak'
body['order']['line_items'][0]['quantity'] = '1'
body['order']['line_items'][0]['quantity_unit'] = {}
body['order']['line_items'][0]['quantity_unit']['measurement_unit'] = {}
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['custom_unit'] = {}
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['custom_unit']['name'] = 'name9'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['custom_unit']['abbreviation'] = 'abbreviation1'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['area_unit'] = 'IMPERIAL_SQUARE_INCH'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['length_unit'] = 'METRIC_KILOMETER'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['volume_unit'] = 'GENERIC_QUART'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['weight_unit'] = 'METRIC_MILLIGRAM'
body['order']['line_items'][0]['quantity_unit']['precision'] = 189
body['order']['line_items'][0]['note'] = 'note3'
body['order']['line_items'][0]['catalog_object_id'] = 'catalog_object_id5'
body['order']['line_items'][0]['base_price_money'] = {}
body['order']['line_items'][0]['base_price_money']['amount'] = 1599
body['order']['line_items'][0]['base_price_money']['currency'] = 'USD'

body['order']['line_items'].append({})
body['order']['line_items'][1]['uid'] = 'uid0'
body['order']['line_items'][1]['name'] = 'name0'
body['order']['line_items'][1]['quantity'] = '2'
body['order']['line_items'][1]['quantity_unit'] = {}
body['order']['line_items'][1]['quantity_unit']['measurement_unit'] = {}
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['custom_unit'] = {}
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['custom_unit']['name'] = 'name8'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['custom_unit']['abbreviation'] = 'abbreviation0'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['area_unit'] = 'IMPERIAL_ACRE'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['length_unit'] = 'IMPERIAL_INCH'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['volume_unit'] = 'GENERIC_PINT'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['weight_unit'] = 'METRIC_GRAM'
body['order']['line_items'][1]['quantity_unit']['precision'] = 188
body['order']['line_items'][1]['note'] = 'note4'
body['order']['line_items'][1]['catalog_object_id'] = 'BEMYCSMIJL46OCDV4KYIKXIB'
body['order']['line_items'][1]['modifiers'] = []

body['order']['line_items'][1]['modifiers'].append({})
body['order']['line_items'][1]['modifiers'][0]['uid'] = 'uid1'
body['order']['line_items'][1]['modifiers'][0]['catalog_object_id'] = 'CHQX7Y4KY6N5KINJKZCFURPZ'
body['order']['line_items'][1]['modifiers'][0]['name'] = 'name1'
body['order']['line_items'][1]['modifiers'][0]['base_price_money'] = {}
body['order']['line_items'][1]['modifiers'][0]['base_price_money']['amount'] = 53
body['order']['line_items'][1]['modifiers'][0]['base_price_money']['currency'] = 'TTD'
body['order']['line_items'][1]['modifiers'][0]['total_price_money'] = {}
body['order']['line_items'][1]['modifiers'][0]['total_price_money']['amount'] = 51
body['order']['line_items'][1]['modifiers'][0]['total_price_money']['currency'] = 'EUR'

body['order']['line_items'][1]['applied_discounts'] = []

body['order']['line_items'][1]['applied_discounts'].append({})
body['order']['line_items'][1]['applied_discounts'][0]['uid'] = 'uid4'
body['order']['line_items'][1]['applied_discounts'][0]['discount_uid'] = 'one-dollar-off'
body['order']['line_items'][1]['applied_discounts'][0]['applied_money'] = {}
body['order']['line_items'][1]['applied_discounts'][0]['applied_money']['amount'] = 164
body['order']['line_items'][1]['applied_discounts'][0]['applied_money']['currency'] = 'CUC'


body['order']['taxes'] = []

body['order']['taxes'].append({})
body['order']['taxes'][0]['uid'] = 'state-sales-tax'
body['order']['taxes'][0]['catalog_object_id'] = 'catalog_object_id1'
body['order']['taxes'][0]['name'] = 'State Sales Tax'
body['order']['taxes'][0]['type'] = 'UNKNOWN_TAX'
body['order']['taxes'][0]['percentage'] = '9'
body['order']['taxes'][0]['scope'] = 'ORDER'

body['order']['discounts'] = []

body['order']['discounts'].append({})
body['order']['discounts'][0]['uid'] = 'labor-day-sale'
body['order']['discounts'][0]['catalog_object_id'] = 'catalog_object_id5'
body['order']['discounts'][0]['name'] = 'Labor Day Sale'
body['order']['discounts'][0]['type'] = 'FIXED_PERCENTAGE'
body['order']['discounts'][0]['percentage'] = '5'
body['order']['discounts'][0]['scope'] = 'ORDER'

body['order']['discounts'].append({})
body['order']['discounts'][1]['uid'] = 'membership-discount'
body['order']['discounts'][1]['catalog_object_id'] = 'DB7L55ZH2BGWI4H23ULIWOQ7'
body['order']['discounts'][1]['name'] = 'name2'
body['order']['discounts'][1]['type'] = 'FIXED_AMOUNT'
body['order']['discounts'][1]['percentage'] = 'percentage0'
body['order']['discounts'][1]['scope'] = 'ORDER'

body['order']['discounts'].append({})
body['order']['discounts'][2]['uid'] = 'one-dollar-off'
body['order']['discounts'][2]['catalog_object_id'] = 'catalog_object_id7'
body['order']['discounts'][2]['name'] = 'Sale - $1.00 off'
body['order']['discounts'][2]['type'] = 'VARIABLE_PERCENTAGE'
body['order']['discounts'][2]['percentage'] = 'percentage1'
body['order']['discounts'][2]['amount_money'] = {}
body['order']['discounts'][2]['amount_money']['amount'] = 100
body['order']['discounts'][2]['amount_money']['currency'] = 'USD'
body['order']['discounts'][2]['scope'] = 'LINE_ITEM'

body['idempotency_key'] = '8193148c-9586-11e6-99f9-28cfe92138cf'

result = orders_api.create_order(body)

if result.is_success():
    print(result.body)
elif result.is_error():
    print(result.errors)

Batch Retrieve Orders

Retrieves a set of orders by their IDs.

If a given order ID does not exist, the ID is ignored instead of generating an error.

def batch_retrieve_orders(self,
                         body)

Parameters

Parameter Type Tags Description
body Batch Retrieve Orders Request Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

Batch Retrieve Orders Response

Example Usage

body = {}
body['location_id'] = '057P5VYJ4A5X1'
body['order_ids'] = ['CAISEM82RcpmcFBM0TfOyiHV3es', 'CAISENgvlJ6jLWAzERDzjyHVybY']

result = orders_api.batch_retrieve_orders(body)

if result.is_success():
    print(result.body)
elif result.is_error():
    print(result.errors)

Calculate Order

Enables applications to preview order pricing without creating an order.

def calculate_order(self,
                   body)

Parameters

Parameter Type Tags Description
body Calculate Order Request Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

Calculate Order Response

Example Usage

body = {}
body['order'] = {}
body['order']['id'] = 'id0'
body['order']['location_id'] = 'D7AVYMEAPJ3A3'
body['order']['reference_id'] = 'reference_id8'
body['order']['source'] = {}
body['order']['source']['name'] = 'name6'
body['order']['customer_id'] = 'customer_id8'
body['order']['line_items'] = []

body['order']['line_items'].append({})
body['order']['line_items'][0]['uid'] = 'uid1'
body['order']['line_items'][0]['name'] = 'Item 1'
body['order']['line_items'][0]['quantity'] = '1'
body['order']['line_items'][0]['quantity_unit'] = {}
body['order']['line_items'][0]['quantity_unit']['measurement_unit'] = {}
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['custom_unit'] = {}
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['custom_unit']['name'] = 'name9'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['custom_unit']['abbreviation'] = 'abbreviation1'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['area_unit'] = 'IMPERIAL_SQUARE_INCH'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['length_unit'] = 'METRIC_KILOMETER'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['volume_unit'] = 'GENERIC_QUART'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['weight_unit'] = 'METRIC_MILLIGRAM'
body['order']['line_items'][0]['quantity_unit']['precision'] = 189
body['order']['line_items'][0]['note'] = 'note3'
body['order']['line_items'][0]['catalog_object_id'] = 'catalog_object_id5'
body['order']['line_items'][0]['base_price_money'] = {}
body['order']['line_items'][0]['base_price_money']['amount'] = 500
body['order']['line_items'][0]['base_price_money']['currency'] = 'USD'

body['order']['line_items'].append({})
body['order']['line_items'][1]['uid'] = 'uid0'
body['order']['line_items'][1]['name'] = 'Item 2'
body['order']['line_items'][1]['quantity'] = '2'
body['order']['line_items'][1]['quantity_unit'] = {}
body['order']['line_items'][1]['quantity_unit']['measurement_unit'] = {}
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['custom_unit'] = {}
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['custom_unit']['name'] = 'name8'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['custom_unit']['abbreviation'] = 'abbreviation0'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['area_unit'] = 'IMPERIAL_ACRE'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['length_unit'] = 'IMPERIAL_INCH'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['volume_unit'] = 'GENERIC_PINT'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['weight_unit'] = 'METRIC_GRAM'
body['order']['line_items'][1]['quantity_unit']['precision'] = 188
body['order']['line_items'][1]['note'] = 'note4'
body['order']['line_items'][1]['catalog_object_id'] = 'catalog_object_id6'
body['order']['line_items'][1]['base_price_money'] = {}
body['order']['line_items'][1]['base_price_money']['amount'] = 300
body['order']['line_items'][1]['base_price_money']['currency'] = 'USD'

body['order']['discounts'] = []

body['order']['discounts'].append({})
body['order']['discounts'][0]['uid'] = 'uid1'
body['order']['discounts'][0]['catalog_object_id'] = 'catalog_object_id5'
body['order']['discounts'][0]['name'] = '50% Off'
body['order']['discounts'][0]['type'] = 'FIXED_PERCENTAGE'
body['order']['discounts'][0]['percentage'] = '50'
body['order']['discounts'][0]['scope'] = 'ORDER'

body['proposed_rewards'] = []

body['proposed_rewards'].append({})
body['proposed_rewards'][0]['id'] = 'id6'
body['proposed_rewards'][0]['reward_tier_id'] = 'reward_tier_id2'

body['proposed_rewards'].append({})
body['proposed_rewards'][1]['id'] = 'id7'
body['proposed_rewards'][1]['reward_tier_id'] = 'reward_tier_id3'

body['proposed_rewards'].append({})
body['proposed_rewards'][2]['id'] = 'id8'
body['proposed_rewards'][2]['reward_tier_id'] = 'reward_tier_id4'


result = orders_api.calculate_order(body)

if result.is_success():
    print(result.body)
elif result.is_error():
    print(result.errors)

Search Orders

Search all orders for one or more locations. Orders include all sales, returns, and exchanges regardless of how or when they entered the Square ecosystem (such as Point of Sale, Invoices, and Connect APIs).

SearchOrders requests need to specify which locations to search and define a SearchOrdersQuery object that controls how to sort or filter the results. Your SearchOrdersQuery can:

Set filter criteria. Set the sort order. Determine whether to return results as complete Order objects or as OrderEntry objects.

Note that details for orders processed with Square Point of Sale while in offline mode might not be transmitted to Square for up to 72 hours. Offline orders have a created_at value that reflects the time the order was created, not the time it was subsequently transmitted to Square.

def search_orders(self,
                 body)

Parameters

Parameter Type Tags Description
body Search Orders Request Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

Search Orders Response

Example Usage

body = {}
body['location_ids'] = ['057P5VYJ4A5X1', '18YC4JDH91E1H']
body['cursor'] = 'cursor0'
body['query'] = {}
body['query']['filter'] = {}
body['query']['filter']['state_filter'] = {}
body['query']['filter']['state_filter']['states'] = ['COMPLETED']
body['query']['filter']['date_time_filter'] = {}
body['query']['filter']['date_time_filter']['created_at'] = {}
body['query']['filter']['date_time_filter']['created_at']['start_at'] = 'start_at8'
body['query']['filter']['date_time_filter']['created_at']['end_at'] = 'end_at4'
body['query']['filter']['date_time_filter']['updated_at'] = {}
body['query']['filter']['date_time_filter']['updated_at']['start_at'] = 'start_at6'
body['query']['filter']['date_time_filter']['updated_at']['end_at'] = 'end_at6'
body['query']['filter']['date_time_filter']['closed_at'] = {}
body['query']['filter']['date_time_filter']['closed_at']['start_at'] = '2018-03-03T20:00:00+00:00'
body['query']['filter']['date_time_filter']['closed_at']['end_at'] = '2019-03-04T21:54:45+00:00'
body['query']['filter']['fulfillment_filter'] = {}
body['query']['filter']['fulfillment_filter']['fulfillment_types'] = ['SHIPMENT']
body['query']['filter']['fulfillment_filter']['fulfillment_states'] = ['CANCELED', 'FAILED']
body['query']['filter']['source_filter'] = {}
body['query']['filter']['source_filter']['source_names'] = ['source_names8']
body['query']['filter']['customer_filter'] = {}
body['query']['filter']['customer_filter']['customer_ids'] = ['customer_ids5', 'customer_ids6']
body['query']['sort'] = {}
body['query']['sort']['sort_field'] = 'CLOSED_AT'
body['query']['sort']['sort_order'] = 'DESC'
body['limit'] = 3
body['return_entries'] = True

result = orders_api.search_orders(body)

if result.is_success():
    print(result.body)
elif result.is_error():
    print(result.errors)

Retrieve Order

Retrieves an Order by ID.

def retrieve_order(self,
                  order_id)

Parameters

Parameter Type Tags Description
order_id string Template, Required The ID of the order to retrieve.

Response Type

Retrieve Order Response

Example Usage

order_id = 'order_id6'

result = orders_api.retrieve_order(order_id)

if result.is_success():
    print(result.body)
elif result.is_error():
    print(result.errors)

Update Order

Updates an open order by adding, replacing, or deleting fields. Orders with a COMPLETED or CANCELED state cannot be updated.

An UpdateOrder request requires the following:

  • The order_id in the endpoint path, identifying the order to update.
  • The latest version of the order to update.
  • The sparse order containing only the fields to update and the version to which the update is being applied.
  • If deleting fields, the dot notation paths identifying the fields to clear.

To pay for an order, see Pay for Orders.

def update_order(self,
                order_id,
                body)

Parameters

Parameter Type Tags Description
order_id string Template, Required The ID of the order to update.
body Update Order Request Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

Update Order Response

Example Usage

order_id = 'order_id6'
body = {}
body['order'] = {}
body['order']['id'] = 'id0'
body['order']['location_id'] = 'location_id4'
body['order']['reference_id'] = 'reference_id8'
body['order']['source'] = {}
body['order']['source']['name'] = 'name6'
body['order']['customer_id'] = 'customer_id8'
body['order']['line_items'] = []

body['order']['line_items'].append({})
body['order']['line_items'][0]['uid'] = 'uid1'
body['order']['line_items'][0]['name'] = 'name1'
body['order']['line_items'][0]['quantity'] = 'quantity7'
body['order']['line_items'][0]['quantity_unit'] = {}
body['order']['line_items'][0]['quantity_unit']['measurement_unit'] = {}
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['custom_unit'] = {}
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['custom_unit']['name'] = 'name9'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['custom_unit']['abbreviation'] = 'abbreviation1'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['area_unit'] = 'IMPERIAL_SQUARE_INCH'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['length_unit'] = 'METRIC_KILOMETER'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['volume_unit'] = 'GENERIC_QUART'
body['order']['line_items'][0]['quantity_unit']['measurement_unit']['weight_unit'] = 'METRIC_MILLIGRAM'
body['order']['line_items'][0]['quantity_unit']['precision'] = 189
body['order']['line_items'][0]['note'] = 'note3'
body['order']['line_items'][0]['catalog_object_id'] = 'catalog_object_id5'

body['order']['line_items'].append({})
body['order']['line_items'][1]['uid'] = 'uid0'
body['order']['line_items'][1]['name'] = 'name0'
body['order']['line_items'][1]['quantity'] = 'quantity6'
body['order']['line_items'][1]['quantity_unit'] = {}
body['order']['line_items'][1]['quantity_unit']['measurement_unit'] = {}
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['custom_unit'] = {}
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['custom_unit']['name'] = 'name8'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['custom_unit']['abbreviation'] = 'abbreviation0'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['area_unit'] = 'IMPERIAL_ACRE'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['length_unit'] = 'IMPERIAL_INCH'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['volume_unit'] = 'GENERIC_PINT'
body['order']['line_items'][1]['quantity_unit']['measurement_unit']['weight_unit'] = 'METRIC_GRAM'
body['order']['line_items'][1]['quantity_unit']['precision'] = 188
body['order']['line_items'][1]['note'] = 'note4'
body['order']['line_items'][1]['catalog_object_id'] = 'catalog_object_id6'

body['fields_to_clear'] = ['fields_to_clear7', 'fields_to_clear8']
body['idempotency_key'] = 'idempotency_key2'

result = orders_api.update_order(order_id, body)

if result.is_success():
    print(result.body)
elif result.is_error():
    print(result.errors)

Pay Order

Pay for an order using one or more approved payments or settle an order with a total of 0.

The total of the payment_ids listed in the request must be equal to the order total. Orders with a total amount of 0 can be marked as paid by specifying an empty array of payment_ids in the request.

To be used with PayOrder, a payment must:

  • Reference the order by specifying the order_id when creating the payment. Any approved payments that reference the same order_id not specified in the payment_ids is canceled.
  • Be approved with delayed capture. Using a delayed capture payment with PayOrder completes the approved payment.
def pay_order(self,
             order_id,
             body)

Parameters

Parameter Type Tags Description
order_id string Template, Required The ID of the order being paid.
body Pay Order Request Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

Pay Order Response

Example Usage

order_id = 'order_id6'
body = {}
body['idempotency_key'] = 'c043a359-7ad9-4136-82a9-c3f1d66dcbff'
body['order_version'] = 82
body['payment_ids'] = ['EnZdNAlWCmfh6Mt5FMNST1o7taB', '0LRiVlbXVwe8ozu4KbZxd12mvaB']

result = orders_api.pay_order(order_id, body)

if result.is_success():
    print(result.body)
elif result.is_error():
    print(result.errors)