Retrieve orders from integrations

GET {{baseUrl}}/orders?integration=<integer>&order_number=<string>&order_id=<string>&status=<string>&order_created_at=<date>&order_created_at_min=<date>&order_created_at_max=<date>&order_updated_at=<date>&order_updated_at_min=<date>&order_updated_at_max=<date>&sort=<string>&page_size=100&cursor=<string>

Note that this section describes a beta version of the Orders API. Currently only Sendcloud API integrations are supported. You can get the list of orders via the API the same way you can find it on the Incoming Orders panel. The endpoint is paginated, you can navigate through the results by using the URLs of the next and prev fields in the Link response header.

Request Params

KeyDatatypeRequiredDescription
integrationstringFilter orders by integration ID or IDs. Use comma separated list, for example "/?integration=41,68,419". To obtain the integration IDs, you can utilize the integration endpoint listings.
order_numberstringFilter orders by a specific order number. For example "/?order_number=ORDER_284565". The filter handles capital letters the same as lowercase letters. The field used is order_number within the Order model
order_idstringFilter orders by a specific order id. For example "/?order_id=1896e94b-c01b-4e73-a9e7-57f51c8a4c77". The filter handles capital letters the same as lowercase letters. The field used is order_id within the Order model
statusstringFilter orders based on their status. For example "/?status=unshipped". The filter handles capital letters the same as lowercase letters. The field used is order_details -> status within the Order model
order_created_atstringFilter orders based on a specific date. For example "/?order_created_at=2023-04-28". The field used is order_details -> order_created_at within the Order model
order_created_at_minstringFilter orders that are created at or after a specific date. For example "/?order_created_at_min=2023-04-28". The field used is order_details -> order_created_at within the Order model
order_created_at_maxstringFilter orders that are created at or before a specific date. For example "/?order_created_at_max=2023-04-28". The field used is order_details -> order_created_at within the Order model
order_updated_atstringFilter orders based on a specific date. For example "/?order_updated_at=2023-04-28". The field used is order_details -> order_updated_at within the Order model
order_updated_at_minstringFilter orders that are created at or after a specific date. For example "/?order_updated_at_min=2023-04-28". The field used is order_details -> order_updated_at within the Order model
order_updated_at_maxstringFilter orders that are created at or before a specific date. For example "/?order_updated_at_max=2023-04-28". The field used is order_details -> order_updated_at within the Order model
sortstringSort the retrieved orders on attributes of the Order model by setting the sort query.
The attributes below can be used to sort the orders in the response:
  • integration: Sort by the integration ID of the retrieved orders; to sort in descending order, use -integration
  • order_number: Sort by the order number of the retrieved orders; to sort in descending order, use -order_number.
  • order_created_at: Sort by the date of an order creation of the retrieved orders; to sort in descending order, use -order_created_at
  • order_updated_at: Sort by the date of an order update of the retrieved orders; to sort in descending order, use -order_updated_at
  • pk: Sort by the ID (autogenerated internal ID) of the retrieved orders; to sort in descending order, use -pk Additional information about this query:
  • Any valid combination of all these supported values is supported, eg., /?sort=&quot;integration,-order_created_at&quot;.
  • In case of conflicting sort values eg., /?sort=&quot;integration,-integration&quot;, the conflicting value will be ignored.
  • If the sort query parameter is not set, the sorting of the retrieved orders will be defaulted to -pk.
  • In case where an unsupported sort value is provided, the results will be sorted by the default (-pk). | | page_size | number | | The maximum number of results to be returned per page | | cursor | string | | The cursor query string will be used as the pivot value to filter results. If no value is provided, the service must return the first page. The value is Base64 encoded GET parameters. example: For a cursor string there are 3 possible parameters to encode:

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;data&quot;:[{&quot;order_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;order_number&quot;:&quot;\u003cstring\u003e&quot;,&quot;order_details&quot;:{&quot;integration&quot;:{&quot;id&quot;:&quot;\u003cinteger\u003e&quot;},&quot;status&quot;:{&quot;code&quot;:&quot;\u003cstring\u003e&quot;,&quot;message&quot;:&quot;\u003cstring\u003e&quot;},&quot;order_created_at&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;order_items&quot;:[{&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;quantity&quot;:&quot;\u003cinteger\u003e&quot;,&quot;total_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;GBP&quot;},&quot;item_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;product_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;variant_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;image_url&quot;:&quot;\u003cstring\u003e&quot;,&quot;description&quot;:&quot;\u003cstring\u003e&quot;,&quot;sku&quot;:&quot;\u003cstring\u003e&quot;,&quot;hs_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;country_of_origin&quot;:&quot;\u003cstring\u003e&quot;,&quot;properties&quot;:{&quot;dolor_e2c&quot;:&quot;non Lorem aliquip&quot;,&quot;occaecat_51&quot;:true,&quot;dolord8&quot;:40728303,&quot;sed_0&quot;:&quot;in in laborum&quot;},&quot;unit_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;EUR&quot;},&quot;measurement&quot;:{&quot;dimension&quot;:{&quot;length&quot;:&quot;\u003cnumber\u003e&quot;,&quot;width&quot;:&quot;\u003cnumber\u003e&quot;,&quot;height&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;in&quot;},&quot;weight&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;oz&quot;},&quot;volume&quot;:{&quot;value&quot;:&quot;\u003cinteger\u003e&quot;,&quot;unit&quot;:&quot;cm3&quot;}},&quot;ean&quot;:&quot;\u003cstring\u003e&quot;,&quot;delivery_dates&quot;:{&quot;handover_at&quot;:&quot;\u003cdateTime\u003e&quot;},&quot;mid_code&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;material_content&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;intended_use&quot;:&quot;\u003cstring,null\u003e&quot;},{&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;quantity&quot;:&quot;\u003cinteger\u003e&quot;,&quot;total_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;GBP&quot;},&quot;item_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;product_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;variant_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;image_url&quot;:&quot;\u003cstring\u003e&quot;,&quot;description&quot;:&quot;\u003cstring\u003e&quot;,&quot;sku&quot;:&quot;\u003cstring\u003e&quot;,&quot;hs_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;country_of_origin&quot;:&quot;\u003cstring\u003e&quot;,&quot;properties&quot;:{&quot;estc&quot;:&quot;mollit aute aliqua&quot;},&quot;unit_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;EUR&quot;},&quot;measurement&quot;:{&quot;dimension&quot;:{&quot;length&quot;:&quot;\u003cnumber\u003e&quot;,&quot;width&quot;:&quot;\u003cnumber\u003e&quot;,&quot;height&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;m&quot;},&quot;weight&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;lbs&quot;},&quot;volume&quot;:{&quot;value&quot;:&quot;\u003cinteger\u003e&quot;,&quot;unit&quot;:&quot;gal&quot;}},&quot;ean&quot;:&quot;\u003cstring\u003e&quot;,&quot;delivery_dates&quot;:{&quot;handover_at&quot;:&quot;\u003cdateTime\u003e&quot;},&quot;mid_code&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;material_content&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;intended_use&quot;:&quot;\u003cstring,null\u003e&quot;}],&quot;order_updated_at&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;notes&quot;:&quot;\u003cstring\u003e&quot;},&quot;payment_details&quot;:{&quot;total_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;GBP&quot;},&quot;status&quot;:{&quot;code&quot;:&quot;\u003cstring\u003e&quot;,&quot;message&quot;:&quot;\u003cstring\u003e&quot;},&quot;is_cash_on_delivery&quot;:&quot;\u003cboolean,null\u003e&quot;,&quot;subtotal_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;GBP&quot;},&quot;estimated_shipping_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;EUR&quot;},&quot;estimated_tax_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;GBP&quot;},&quot;invoice_date&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;discount_granted&quot;:{&quot;value&quot;:&quot;48793.7&quot;,&quot;currency&quot;:&quot;\u003cstring,null\u003e&quot;},&quot;insurance_costs&quot;:{&quot;value&quot;:&quot;34384936&quot;,&quot;currency&quot;:&quot;\u003cstring,null\u003e&quot;},&quot;freight_costs&quot;:{&quot;value&quot;:&quot;579.84742335&quot;,&quot;currency&quot;:&quot;\u003cstring,null\u003e&quot;},&quot;other_costs&quot;:{&quot;value&quot;:&quot;29&quot;,&quot;currency&quot;:&quot;\u003cstring,null\u003e&quot;}},&quot;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;created_at&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;modified_at&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;customs_details&quot;:null,&quot;customer_details&quot;:{&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;phone_number&quot;:&quot;\u003cstring\u003e&quot;,&quot;email&quot;:&quot;\u003cstring\u003e&quot;},&quot;billing_address&quot;:{&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;company_name&quot;:&quot;\u003cstring\u003e&quot;,&quot;address_line_1&quot;:&quot;\u003cstring\u003e&quot;,&quot;house_number&quot;:&quot;\u003cstring\u003e&quot;,&quot;address_line_2&quot;:&quot;\u003cstring\u003e&quot;,&quot;postal_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;city&quot;:&quot;\u003cstring\u003e&quot;,&quot;po_box&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;state_province_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;country_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;email&quot;:&quot;\u003cemail\u003e&quot;,&quot;phone_number&quot;:&quot;\u003cstring\u003e&quot;},&quot;shipping_address&quot;:{&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;company_name&quot;:&quot;\u003cstring\u003e&quot;,&quot;address_line_1&quot;:&quot;\u003cstring\u003e&quot;,&quot;house_number&quot;:&quot;\u003cstring\u003e&quot;,&quot;address_line_2&quot;:&quot;\u003cstring\u003e&quot;,&quot;postal_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;city&quot;:&quot;\u003cstring\u003e&quot;,&quot;po_box&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;state_province_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;country_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;email&quot;:&quot;\u003cemail\u003e&quot;,&quot;phone_number&quot;:&quot;\u003cstring\u003e&quot;},&quot;shipping_details&quot;:{&quot;is_local_pickup&quot;:&quot;\u003cboolean,null\u003e&quot;,&quot;delivery_indicator&quot;:&quot;\u003cstring\u003e&quot;,&quot;measurement&quot;:{&quot;dimension&quot;:{&quot;length&quot;:&quot;\u003cnumber\u003e&quot;,&quot;width&quot;:&quot;\u003cnumber\u003e&quot;,&quot;height&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;m&quot;},&quot;weight&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;oz&quot;},&quot;volume&quot;:{&quot;value&quot;:&quot;\u003cinteger\u003e&quot;,&quot;unit&quot;:&quot;ml&quot;}}},&quot;service_point_details&quot;:{&quot;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;post_number&quot;:&quot;\u003cstring\u003e&quot;,&quot;latitude&quot;:&quot;\u003cstring\u003e&quot;,&quot;longitude&quot;:&quot;\u003cstring\u003e&quot;,&quot;type&quot;:&quot;\u003cstring\u003e&quot;,&quot;extra_data&quot;:{&quot;nostrud7&quot;:true,&quot;et4&quot;:18331699}}},{&quot;order_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;order_number&quot;:&quot;\u003cstring\u003e&quot;,&quot;order_details&quot;:{&quot;integration&quot;:{&quot;id&quot;:&quot;\u003cinteger\u003e&quot;},&quot;status&quot;:{&quot;code&quot;:&quot;\u003cstring\u003e&quot;,&quot;message&quot;:&quot;\u003cstring\u003e&quot;},&quot;order_created_at&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;order_items&quot;:[{&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;quantity&quot;:&quot;\u003cinteger\u003e&quot;,&quot;total_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;USD&quot;},&quot;item_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;product_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;variant_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;image_url&quot;:&quot;\u003cstring\u003e&quot;,&quot;description&quot;:&quot;\u003cstring\u003e&quot;,&quot;sku&quot;:&quot;\u003cstring\u003e&quot;,&quot;hs_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;country_of_origin&quot;:&quot;\u003cstring\u003e&quot;,&quot;properties&quot;:{&quot;non0e&quot;:true,&quot;exercitation25&quot;:&quot;proident&quot;,&quot;ut2f&quot;:&quot;mollit qui commodo pariatur&quot;},&quot;unit_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;EUR&quot;},&quot;measurement&quot;:{&quot;dimension&quot;:{&quot;length&quot;:&quot;\u003cnumber\u003e&quot;,&quot;width&quot;:&quot;\u003cnumber\u003e&quot;,&quot;height&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;mm&quot;},&quot;weight&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;kg&quot;},&quot;volume&quot;:{&quot;value&quot;:&quot;\u003cinteger\u003e&quot;,&quot;unit&quot;:&quot;cm3&quot;}},&quot;ean&quot;:&quot;\u003cstring\u003e&quot;,&quot;delivery_dates&quot;:null,&quot;mid_code&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;material_content&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;intended_use&quot;:&quot;\u003cstring,null\u003e&quot;},{&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;quantity&quot;:&quot;\u003cinteger\u003e&quot;,&quot;total_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;USD&quot;},&quot;item_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;product_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;variant_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;image_url&quot;:&quot;\u003cstring\u003e&quot;,&quot;description&quot;:&quot;\u003cstring\u003e&quot;,&quot;sku&quot;:&quot;\u003cstring\u003e&quot;,&quot;hs_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;country_of_origin&quot;:&quot;\u003cstring\u003e&quot;,&quot;properties&quot;:{&quot;qui_e_8&quot;:false,&quot;proident_fc&quot;:&quot;elit voluptate&quot;,&quot;quis_a5&quot;:&quot;exercitation magna&quot;},&quot;unit_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;EUR&quot;},&quot;measurement&quot;:{&quot;dimension&quot;:{&quot;length&quot;:&quot;\u003cnumber\u003e&quot;,&quot;width&quot;:&quot;\u003cnumber\u003e&quot;,&quot;height&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;yd&quot;},&quot;weight&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;lbs&quot;},&quot;volume&quot;:{&quot;value&quot;:&quot;\u003cinteger\u003e&quot;,&quot;unit&quot;:&quot;cm3&quot;}},&quot;ean&quot;:&quot;\u003cstring\u003e&quot;,&quot;delivery_dates&quot;:null,&quot;mid_code&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;material_content&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;intended_use&quot;:&quot;\u003cstring,null\u003e&quot;}],&quot;order_updated_at&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;notes&quot;:&quot;\u003cstring\u003e&quot;},&quot;payment_details&quot;:{&quot;total_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;EUR&quot;},&quot;status&quot;:{&quot;code&quot;:&quot;\u003cstring\u003e&quot;,&quot;message&quot;:&quot;\u003cstring\u003e&quot;},&quot;is_cash_on_delivery&quot;:&quot;\u003cboolean,null\u003e&quot;,&quot;subtotal_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;EUR&quot;},&quot;estimated_shipping_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;USD&quot;},&quot;estimated_tax_price&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;currency&quot;:&quot;GBP&quot;},&quot;invoice_date&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;discount_granted&quot;:{&quot;value&quot;:&quot;00244281332.984323&quot;,&quot;currency&quot;:&quot;\u003cstring,null\u003e&quot;},&quot;insurance_costs&quot;:{&quot;value&quot;:&quot;740246.39654&quot;,&quot;currency&quot;:&quot;\u003cstring,null\u003e&quot;},&quot;freight_costs&quot;:{&quot;value&quot;:&quot;2585&quot;,&quot;currency&quot;:&quot;\u003cstring,null\u003e&quot;},&quot;other_costs&quot;:{&quot;value&quot;:&quot;8175398&quot;,&quot;currency&quot;:&quot;\u003cstring,null\u003e&quot;}},&quot;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;created_at&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;modified_at&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;customs_details&quot;:null,&quot;customer_details&quot;:{&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;phone_number&quot;:&quot;\u003cstring\u003e&quot;,&quot;email&quot;:&quot;\u003cstring\u003e&quot;},&quot;billing_address&quot;:{&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;company_name&quot;:&quot;\u003cstring\u003e&quot;,&quot;address_line_1&quot;:&quot;\u003cstring\u003e&quot;,&quot;house_number&quot;:&quot;\u003cstring\u003e&quot;,&quot;address_line_2&quot;:&quot;\u003cstring\u003e&quot;,&quot;postal_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;city&quot;:&quot;\u003cstring\u003e&quot;,&quot;po_box&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;state_province_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;country_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;email&quot;:&quot;\u003cemail\u003e&quot;,&quot;phone_number&quot;:&quot;\u003cstring\u003e&quot;},&quot;shipping_address&quot;:{&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;company_name&quot;:&quot;\u003cstring\u003e&quot;,&quot;address_line_1&quot;:&quot;\u003cstring\u003e&quot;,&quot;house_number&quot;:&quot;\u003cstring\u003e&quot;,&quot;address_line_2&quot;:&quot;\u003cstring\u003e&quot;,&quot;postal_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;city&quot;:&quot;\u003cstring\u003e&quot;,&quot;po_box&quot;:&quot;\u003cstring,null\u003e&quot;,&quot;state_province_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;country_code&quot;:&quot;\u003cstring\u003e&quot;,&quot;email&quot;:&quot;\u003cemail\u003e&quot;,&quot;phone_number&quot;:&quot;\u003cstring\u003e&quot;},&quot;shipping_details&quot;:{&quot;is_local_pickup&quot;:&quot;\u003cboolean,null\u003e&quot;,&quot;delivery_indicator&quot;:&quot;\u003cstring\u003e&quot;,&quot;measurement&quot;:{&quot;dimension&quot;:{&quot;length&quot;:&quot;\u003cnumber\u003e&quot;,&quot;width&quot;:&quot;\u003cnumber\u003e&quot;,&quot;height&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;in&quot;},&quot;weight&quot;:{&quot;value&quot;:&quot;\u003cnumber\u003e&quot;,&quot;unit&quot;:&quot;oz&quot;},&quot;volume&quot;:{&quot;value&quot;:&quot;\u003cinteger\u003e&quot;,&quot;unit&quot;:&quot;l&quot;}}},&quot;service_point_details&quot;:{&quot;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;post_number&quot;:&quot;\u003cstring\u003e&quot;,&quot;latitude&quot;:&quot;\u003cstring\u003e&quot;,&quot;longitude&quot;:&quot;\u003cstring\u003e&quot;,&quot;type&quot;:&quot;\u003cstring\u003e&quot;,&quot;extra_data&quot;:{&quot;nulla_3&quot;:false,&quot;consectetur_ee&quot;:-83327042}}}]}