For the complete documentation index, see llms.txt. This page is also available as Markdown.

Sales Channel Create Order

Create a new order

post

Creates a new order in the system for the specified channel

Authorizations
AuthorizationstringRequired
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
Body
Responses
201

Order created successfully

application/json
numberstringRequired

Order number, unique within the context of a channel

Example: 1234567890
channelintegerRequired

ID of the channel through which the order was placed

Example: 1
statusstring · enumRequired

Status of the order item

Possible values:
date_placedstring · date-timeRequired

Timestamp when the order was placed

Example: 2025-01-01T00:00:00Z
customerintegerRequired

ID of the customer who placed the order

Example: 1
shipping_addressintegerOptional

ID of the shipping address

Example: 1
billing_addressintegerOptional

ID of the billing address

Example: 1
currencystring · enumOptional

Currency type for the price list.

Example: tryPossible values:
amountnumber · decimalRequired

Total amount for the order

Example: 100
shipping_amountnumber · decimalOptional

Shipping charge for the order

Example: 10
shipping_tax_ratenumber · decimalOptional

Tax rate applied to the shipping charge

Example: 10
extra_fieldobjectOptional

Additional information about the order

Example: {"id":1,"name":"test"}
payment_optionintegerOptional

ID of the payment option used

Example: 1
payment_option_slugstringOptional

Slug of the payment option

Example: credit_card
bin_numberstringOptional

First 6 digits of the customer's card

Example: 123456
installmentintegerOptional

ID of the installment option selected

Example: 1
installment_countintegerOptional

Number of installments for the payment

Example: 1
delivery_typestring · enumOptional

Type of delivery selected

Possible values:
installment_interest_amountnumber · decimalOptional

Interest charged on installment payments

Example: 10
cargo_companyintegerOptional

ID of the company responsible for shipping

Example: 1
invoice_numberstringOptional

Invoice number for the order

Example: 1234567890
invoice_datestring · date-timeOptional

Invoice date for the order

Example: 2025-01-01T00:00:00Z
e_archive_urlstring · uriOptional

URL for the e-archive of the invoice

Example: https://e-archive.com/1234567890
refund_amountnumber · decimalOptional

Total refund amount for the order

Example: 10
discount_refund_amountnumber · decimalOptional

Refund amount for the discount

Example: 10
shipping_refund_amountnumber · decimalOptional

Refund amount for the shipping

Example: 10
discount_amountnumber · decimalOptional

Discount applied to the order

Example: 10
is_sendbooleanOptional

Indicates whether the order has been sent

Example: false
net_shipping_amountnumber · decimalRead-onlyOptional

Net shipping amount

Example: 10
shipping_interest_amountnumber · decimalOptional

Interest applied to the shipping cost

Example: 10
tracking_numberstringOptional

Tracking number for the order

Example: 1234567890
carrier_shipping_codestringOptional

Shipping code from the carrier

Example: 1234567890
remote_addrstringOptional

IP address from where the order was placed

Example: 0.0.0.127
fundstransfertransaction_setinteger[]Optional

Set of funds transfer transaction IDs

has_gift_boxbooleanOptional

Indicates whether the order has a gift box

gift_box_notestringOptional

Message for the gift box

external_statusintegerOptional

ID of the external status

client_typestring · enumOptional

Type of client placing the order

Possible values:
language_codestringOptional

Language code for the order

notesstringOptional

Customer instructions for the order

shipping_option_slugstringOptional

Slug for the shipping option

segmentstringOptional

Customer segment for the order

modified_datestring · date-timeOptional

Last modification date of the order

checkout_provider_idintegerOptional

ID of the provider used for checkout

created_datestring · date-timeOptional

Creation date of the order

cancellation_infoobjectOptional

Details regarding the cancellation of the order

shipping_companystring · enumRead-onlyOptional

Shipping company options

Example: yurticiPossible values:
cancel_statusstring · enumRead-onlyOptional

Cancellation status of the order item

Example: waitingPossible values:
defined_tracking_urlstring · uriOptional

Custom tracking URL

Example: https://tracking.com/1234567890
installment_freebooleanRead-onlyOptional

Whether installment is free

first_refund_strategystringRead-onlyOptional

First refund strategy

post/api/v1/channel/{channel_id}/create_orders/

Last updated

Was this helpful?