curl --request POST \
--url https://api.loopreturns.com/api/v1/orders \
--header 'Content-Type: application/json' \
--header 'X-Authorization: <api-key>' \
--data '
{
"name": "<string>",
"status": "active",
"external_id": "<string>",
"sales_channel": "<string>",
"customer": {
"id": 123
},
"shipping_address": {
"address1": "<string>",
"city": "<string>",
"country_code": "<string>",
"name": "<string>",
"company": "<string>",
"address2": "<string>",
"region": "<string>",
"postal_code": "<string>"
},
"billing_address": {
"address1": "<string>",
"city": "<string>",
"country_code": "<string>",
"name": "<string>",
"company": "<string>",
"address2": "<string>",
"region": "<string>",
"postal_code": "<string>"
},
"taxes_included": true,
"total_price": {
"amount": 123,
"currency_code": "USD"
},
"total_price_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"total_discounts": {
"amount": 50000,
"currency_code": "USD"
},
"total_discounts_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"total_taxes": {
"amount": 50000,
"currency_code": "USD"
},
"total_taxes_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"order_discounts": [
[
{
"external_id": "<string>",
"name": "<string>",
"discount_type": "amount",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
}
]
],
"shipping_lines": [
[
{
"title": "<string>",
"price": {
"amount": 123,
"currency_code": "USD"
},
"discounts": {
"external_id": "<string>",
"name": "<string>",
"discount_type": "amount",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
},
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
]
}
]
],
"refunds": [
[
{
"external_id": "<string>",
"type": "line_item",
"amount": {
"amount": 123,
"currency_code": "USD"
},
"line_item": [
{
"id": 123,
"quantity": 123,
"restock": true
}
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
]
],
"line_items": [
{
"external_id": "<string>",
"product": {
"id": 123
},
"product_variant": {
"id": 123
},
"quantity": 123,
"unit_price": {
"amount": 123,
"currency_code": "USD"
},
"unit_price_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"unit_discounts": {
"amount": 50000,
"currency_code": "USD"
},
"unit_discounts_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"taxable": true,
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
],
"refunds": [
{
"external_id": "<string>",
"type": "line_item",
"amount": {
"amount": 123,
"currency_code": "USD"
},
"line_item": [
{
"id": 123,
"quantity": 123,
"restock": true
}
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
],
"discounts": [
{
"external_id": "<string>",
"discount_type": "amount",
"discount_relation": "prereq",
"name": "<string>",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
}
],
"duties": [
{
"hs_code": "<string>",
"country_of_origin": "<string>",
"price": {
"amount": 123,
"currency_code": "USD"
},
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
]
}
]
}
],
"fulfillments": [
{
"external_id": "<string>",
"status": "success",
"fulfilled_at": "2023-11-07T05:31:56Z",
"shipping_carrier": "<string>",
"location": {
"id": 123
},
"fulfillment_line_items": [
{
"external_id": "<string>",
"order_line_item_external_id": "<string>",
"quantity": 123
}
],
"tracking_numbers": [
"<string>"
]
}
],
"source": "<string>",
"tags": [
"<string>"
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
'{
"order": {
"id": 2,
"external_id": "<string>",
"name": "<string>",
"source": "<string>",
"channel": {
"id": 123,
"name": "<string>"
},
"customer": {
"id": 123,
"external_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone": "<string>"
},
"status": "active",
"shipping_address": {
"address1": "<string>",
"city": "<string>",
"country_code": "<string>",
"name": "<string>",
"company": "<string>",
"address2": "<string>",
"region": "<string>",
"postal_code": "<string>"
},
"billing_address": {
"address1": "<string>",
"city": "<string>",
"country_code": "<string>",
"name": "<string>",
"company": "<string>",
"address2": "<string>",
"region": "<string>",
"postal_code": "<string>"
},
"taxes_included": true,
"total_price": {
"amount": 123,
"currency_code": "USD"
},
"total_price_presentment": {
"amount": 123,
"currency_code": "USD"
},
"total_discounts": {
"amount": 123,
"currency_code": "USD"
},
"total_discounts_presentment": {
"amount": 123,
"currency_code": "USD"
},
"shipping_lines": [
{
"title": "<string>",
"price": {
"amount": 123,
"currency_code": "USD"
},
"discounts": {
"external_id": "<string>",
"name": "<string>",
"discount_type": "amount",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
},
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
]
}
],
"order_discounts": [
{
"external_id": "<string>",
"name": "<string>",
"discount_type": "amount",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
}
],
"total_taxes": {
"amount": 123,
"currency_code": "USD"
},
"total_taxes_presentment": {
"amount": 123,
"currency_code": "USD"
},
"tags": [
"<string>"
],
"refunds": [
[
[
{
"external_id": "<string>",
"type": "line_item",
"amount": {
"amount": 123,
"currency_code": "USD"
},
"line_item": [
{
"id": 123,
"quantity": 123,
"restock": true
}
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
]
]
],
"line_items": [
{
"id": 2,
"external_id": "<string>",
"product": {
"id": 123
},
"product_variant": {
"id": 123
},
"quantity": 123,
"unit_price": {
"amount": 123,
"currency_code": "USD"
},
"unit_price_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"unit_discounts": {
"amount": 50000,
"currency_code": "USD"
},
"unit_discounts_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"taxable": true,
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
],
"refunds": [
{
"external_id": "<string>",
"type": "line_item",
"amount": {
"amount": 123,
"currency_code": "USD"
},
"line_item": [
{
"id": 123,
"quantity": 123,
"restock": true
}
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
],
"discounts": [
{
"external_id": "<string>",
"discount_type": "amount",
"discount_relation": "prereq",
"name": "<string>",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
}
],
"duties": [
{
"hs_code": "<string>",
"country_of_origin": "<string>",
"price": {
"amount": 123,
"currency_code": "USD"
},
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
]
}
]
}
],
"fulfillments": [
{
"external_id": "<string>",
"status": "success",
"fulfilled_at": "2023-11-07T05:31:56Z",
"shipping_carrier": "<string>",
"location": {
"id": 123
},
"fulfillment_line_items": [
{
"external_id": "<string>",
"order_line_item_external_id": "<string>",
"quantity": 123
}
],
"tracking_numbers": [
"<string>"
]
}
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
}Create a new order.
curl --request POST \
--url https://api.loopreturns.com/api/v1/orders \
--header 'Content-Type: application/json' \
--header 'X-Authorization: <api-key>' \
--data '
{
"name": "<string>",
"status": "active",
"external_id": "<string>",
"sales_channel": "<string>",
"customer": {
"id": 123
},
"shipping_address": {
"address1": "<string>",
"city": "<string>",
"country_code": "<string>",
"name": "<string>",
"company": "<string>",
"address2": "<string>",
"region": "<string>",
"postal_code": "<string>"
},
"billing_address": {
"address1": "<string>",
"city": "<string>",
"country_code": "<string>",
"name": "<string>",
"company": "<string>",
"address2": "<string>",
"region": "<string>",
"postal_code": "<string>"
},
"taxes_included": true,
"total_price": {
"amount": 123,
"currency_code": "USD"
},
"total_price_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"total_discounts": {
"amount": 50000,
"currency_code": "USD"
},
"total_discounts_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"total_taxes": {
"amount": 50000,
"currency_code": "USD"
},
"total_taxes_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"order_discounts": [
[
{
"external_id": "<string>",
"name": "<string>",
"discount_type": "amount",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
}
]
],
"shipping_lines": [
[
{
"title": "<string>",
"price": {
"amount": 123,
"currency_code": "USD"
},
"discounts": {
"external_id": "<string>",
"name": "<string>",
"discount_type": "amount",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
},
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
]
}
]
],
"refunds": [
[
{
"external_id": "<string>",
"type": "line_item",
"amount": {
"amount": 123,
"currency_code": "USD"
},
"line_item": [
{
"id": 123,
"quantity": 123,
"restock": true
}
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
]
],
"line_items": [
{
"external_id": "<string>",
"product": {
"id": 123
},
"product_variant": {
"id": 123
},
"quantity": 123,
"unit_price": {
"amount": 123,
"currency_code": "USD"
},
"unit_price_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"unit_discounts": {
"amount": 50000,
"currency_code": "USD"
},
"unit_discounts_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"taxable": true,
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
],
"refunds": [
{
"external_id": "<string>",
"type": "line_item",
"amount": {
"amount": 123,
"currency_code": "USD"
},
"line_item": [
{
"id": 123,
"quantity": 123,
"restock": true
}
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
],
"discounts": [
{
"external_id": "<string>",
"discount_type": "amount",
"discount_relation": "prereq",
"name": "<string>",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
}
],
"duties": [
{
"hs_code": "<string>",
"country_of_origin": "<string>",
"price": {
"amount": 123,
"currency_code": "USD"
},
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
]
}
]
}
],
"fulfillments": [
{
"external_id": "<string>",
"status": "success",
"fulfilled_at": "2023-11-07T05:31:56Z",
"shipping_carrier": "<string>",
"location": {
"id": 123
},
"fulfillment_line_items": [
{
"external_id": "<string>",
"order_line_item_external_id": "<string>",
"quantity": 123
}
],
"tracking_numbers": [
"<string>"
]
}
],
"source": "<string>",
"tags": [
"<string>"
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
'{
"order": {
"id": 2,
"external_id": "<string>",
"name": "<string>",
"source": "<string>",
"channel": {
"id": 123,
"name": "<string>"
},
"customer": {
"id": 123,
"external_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone": "<string>"
},
"status": "active",
"shipping_address": {
"address1": "<string>",
"city": "<string>",
"country_code": "<string>",
"name": "<string>",
"company": "<string>",
"address2": "<string>",
"region": "<string>",
"postal_code": "<string>"
},
"billing_address": {
"address1": "<string>",
"city": "<string>",
"country_code": "<string>",
"name": "<string>",
"company": "<string>",
"address2": "<string>",
"region": "<string>",
"postal_code": "<string>"
},
"taxes_included": true,
"total_price": {
"amount": 123,
"currency_code": "USD"
},
"total_price_presentment": {
"amount": 123,
"currency_code": "USD"
},
"total_discounts": {
"amount": 123,
"currency_code": "USD"
},
"total_discounts_presentment": {
"amount": 123,
"currency_code": "USD"
},
"shipping_lines": [
{
"title": "<string>",
"price": {
"amount": 123,
"currency_code": "USD"
},
"discounts": {
"external_id": "<string>",
"name": "<string>",
"discount_type": "amount",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
},
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
]
}
],
"order_discounts": [
{
"external_id": "<string>",
"name": "<string>",
"discount_type": "amount",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
}
],
"total_taxes": {
"amount": 123,
"currency_code": "USD"
},
"total_taxes_presentment": {
"amount": 123,
"currency_code": "USD"
},
"tags": [
"<string>"
],
"refunds": [
[
[
{
"external_id": "<string>",
"type": "line_item",
"amount": {
"amount": 123,
"currency_code": "USD"
},
"line_item": [
{
"id": 123,
"quantity": 123,
"restock": true
}
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
]
]
],
"line_items": [
{
"id": 2,
"external_id": "<string>",
"product": {
"id": 123
},
"product_variant": {
"id": 123
},
"quantity": 123,
"unit_price": {
"amount": 123,
"currency_code": "USD"
},
"unit_price_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"unit_discounts": {
"amount": 50000,
"currency_code": "USD"
},
"unit_discounts_presentment": {
"amount": 50000,
"currency_code": "USD"
},
"taxable": true,
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
],
"refunds": [
{
"external_id": "<string>",
"type": "line_item",
"amount": {
"amount": 123,
"currency_code": "USD"
},
"line_item": [
{
"id": 123,
"quantity": 123,
"restock": true
}
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
],
"discounts": [
{
"external_id": "<string>",
"discount_type": "amount",
"discount_relation": "prereq",
"name": "<string>",
"code": "<string>",
"reason": "<string>",
"rate": 123,
"tax_adjustment_money": {
"amount": 123,
"currency_code": "USD"
},
"net_adjustment_money": {
"amount": 123,
"currency_code": "USD"
}
}
],
"duties": [
{
"hs_code": "<string>",
"country_of_origin": "<string>",
"price": {
"amount": 123,
"currency_code": "USD"
},
"tax_lines": [
{
"title": "<string>",
"rate": 123,
"price": {
"amount": 123,
"currency_code": "USD"
}
}
]
}
]
}
],
"fulfillments": [
{
"external_id": "<string>",
"status": "success",
"fulfilled_at": "2023-11-07T05:31:56Z",
"shipping_carrier": "<string>",
"location": {
"id": 123
},
"fulfillment_line_items": [
{
"external_id": "<string>",
"order_line_item_external_id": "<string>",
"quantity": 123
}
],
"tracking_numbers": [
"<string>"
]
}
],
"created_at": "2023-04-25T13:25:00-05:00",
"updated_at": "2023-04-25T13:25:00-05:00"
}
}API Scope: "Order (write)"
100Status of the Order.
active, archived, cancelled, unknown 64"564400c7-7a6b-4f29-b6a5-7bb580b2992c"
Used to identify the sales channel that the order was created in. If a channel with this name is not already associated with the shop, it will be used to create a new channel.
64"online"
"mobile"
Show child attributes
Show child attributes
{
"name": "John Smith",
"company": "Acme, Co",
"address1": "123 Example St",
"address2": "Box 123",
"city": "Columbus",
"region": "OH",
"postal_code": 12345,
"country_code": "US"
}Show child attributes
{
"name": "John Smith",
"company": "Acme, Co",
"address1": "123 Example St",
"address2": "Box 123",
"city": "Columbus",
"region": "OH",
"postal_code": 12345,
"country_code": "US"
}The price of the order in minor units, such as cents, with its corresponding currency.
Show child attributes
{ "amount": 50000, "currency_code": "USD" }{ "amount": 25000 }{ "amount": 1500, "currency_code": "EUR" }The price of the order in minor units, such as cents. This is included if the price was shown to the customer in an alternate currency.
Show child attributes
{ "amount": 50000, "currency_code": "USD" }The deduction from the original order price as a way to promote sales, special offers, or customer loyalty rewards.
Show child attributes
{ "amount": 50000, "currency_code": "USD" }The deduction from the original order price as a way to promote sales, special offers, or customer loyalty rewards. This price is discounted from the original price according to the customer's local currency.
Show child attributes
{ "amount": 50000, "currency_code": "USD" }The tax amount for the order.
Show child attributes
{ "amount": 50000, "currency_code": "USD" }The tax amount for the order according to the customer's local currency.
Show child attributes
{ "amount": 50000, "currency_code": "USD" }List of discounts associated with the order.
Show child attributes
List of shipping line items associated with the order.
Show child attributes
List of refunds associated with the order.
Show child attributes
List of order line items associated with the order.
Show child attributes
Fulfillment information for the order.
Show child attributes
255"2023-04-25T13:25:00-05:00"
"2023-04-25T13:25:00-05:00"
OK
Show child attributes