Get Orders of All Seller Resumed

Retrieves a summarized list of orders with pagination and multiple filters such as date range, status, channel, and payment type.

Request

Query Parameters

ParameterTypeExampleDescription
sincestring (ISO 8601)2020-01-01T00:01:01Defines the start datetime for filtering results. Usually used to retrieve records created after this timestamp.
untilstring (ISO 8601)2024-12-27T23:59:00ZDefines the end datetime for filtering results. Limits the data returned up to this point in time.
lastUpdateSincestring (ISO 8601)2025-07-01T23:59:00Filters records updated after the specified datetime.
lastUpdateUntilstring (ISO 8601)2025-07-14T18:32:59Filters records updated until the specified datetime.
pageinteger1Specifies the current page number in the paginated result set.
perPageinteger10Sets the maximum number of records to be returned per page.
sortAscendingbooleanfalseDefines the sorting order of results. true = ascending, false = descending.
sortFieldstringlastUpdateField used to sort the result set.
useCanonicalStatusbooleantrue(Optional) When true, applies internal canonical status mapping before returning results.
statusstringPendingCreateFilters results by specific status (comma-separated list supported).
channelstringã ç_%Identifies or filters by the source channel. Supports special characters and wildcards (%).
paymentTypestring (list)VoucherFilters results by payment methods, separated by commas. Examples: Voucher, CreditCard, Pix, Bankslip

Status summary: root.status

Int ValueEnum ValueDisplay NameDescrição técnica / Quando é aplicado
0NoneNão informadoStatus padrão ou inicial quando o estado do pedido ainda não foi definido.
1AwaitingCreationAguardando criação do pedidoPedido aguardando criação ou confirmação inicial no ponto de venda.
2CreatedInternalPedido criado na NeomodePedido foi criado internamente no sistema Neomode (antes de ser enviado ao PDV).
3CreatedExternalPedido criado pelo ponto de vendaPedido foi criado com sucesso no PDV.
4InProgressEm andamentoPedido está sendo processado, atualizado ou aguardando alguma ação intermediária.
5AwaitingInvoiceCreationEm faturamentoPedido está em processo de faturamento ou geração de nota fiscal.
6InvoiceCreatedFaturadoNota fiscal foi emitida e vinculada ao pedido.
7SeparatedProduto(s) separado(s)Itens do pedido foram separados e estão prontos para o envio.
8ReadyForPickupPronto para retiradaPedido preparado e disponível para retirada pelo cliente.
9ShippingEm transportePedido saiu para entrega e encontra-se em trânsito.
10FinalizedPedido finalizadoPedido entregue ou concluído com sucesso.
11CanceledPedido canceladoPedido cancelado por qualquer motivo (cliente, PDV ou sistema).
12ErrorPedido com erroOcorreu um erro durante o processamento do pedido.
13WaitingCreateShippingLabelAguardando geração da etiqueta de postagemPedido pronto, aguardando a criação da etiqueta de envio.
14ReadyForShippingPedido pronto para transportePedido embalado e pronto para ser despachado.
15CreateShippingLabelEtiqueta de postagem geradaEtiqueta de envio foi criada e vinculada ao pedido.
16WaitingCancellationDecisionAguardando decisão sobre cancelamentoPedido em análise, aguardando confirmação ou recusa do cancelamento.

Response

❗️

Notice: The provided order object is incomplete. Retrieve full order details if needed.

Root Object

FieldTypeDescription
pageintegerCurrent page number.
perPageintegerNumber of records per page.
maxCountintegerTotal number of matching records.
maxPageintegerTotal number of pages.
ordersarrayList of order summaries.

Order Object

FieldTypeDescription
idstring (UUID)Unique internal order ID.
externalIdstringExternal order ID (e.g., from ERP or eCommerce).
sellerOrderIdstringOrder ID in seller system.
friendlyCodestringFriendly order code (if available).
createDatestring (ISO8601)Date/time when the order was created.
statusstringInternal order status (e.g., CreatedInternal, PendingCreate).
canonicalStatusstringUnified status across systems.
isDeliverybooleanWhether the order requires delivery.
salePointNamestringSales point or store name.
subTotalAmountnumberOrder subtotal amount.
totalAmountnumberOrder total amount (including freight).
fullNamestringBuyer’s full name.
cpfBuyerstringBuyer’s CPF (Brazilian taxpayer ID).
cnpjBuyerstringBuyer’s CNPJ (if corporate order).
documentTypeintegerDocument type (1 = CPF, 2 = CNPJ).
lastUpdatestring (ISO8601)Last modification timestamp.
quantityintegerTotal number of items in the order.
channelstringOrigin channel (e.g., ecommerce, store).
paymentInfoobjectMain payment data.
paymentListarrayList of all payments associated to the order.
freightobjectFreight/shipping details.
sellerobjectSeller (store or franchise) information.
invoiceobjectInvoice metadata (if issued).
itemsarrayList of ordered items.

Item Object

FieldTypeDescription
quantityintegerQuantity of the item.
unitPricenumberUnit price.
discountPricenumberDiscount amount.
totalAmountnumberTotal amount for this item.
skuobjectSKU information (code, name, product data).

Freight Object

FieldTypeDescription
referencestringFreight name (e.g., “Sedex - Correios”).
descriptionstringFreight description.
amountnumberFreight amount.
deliveryTimeintegerEstimated delivery time.

Seller Object

FieldTypeDescription
pointSaleIdstringStore or sales point ID.
cnpjstringSeller’s CNPJ.
emailstringSeller’s contact email.
fullNamestringSeller’s display name.
addressobjectSeller address (street, number, city, state, etc.).

Payment Object

FieldTypeDescription
amountnumberPayment amount.
quantityInstallmentsintegerNumber of installments.
acquirerMessagestringMessage or response from acquirer.
paymentMethodobjectPayment method details.
isCapturedbooleanWhether the payment was captured.
isRefundedbooleanWhether the payment was refunded.
isAuthorizedbooleanWhether the payment was authorized.

Payment Method Object:

FieldTypeDescription
infostringPayment method name (e.g., “Credit Card”).
brandstringCard brand (e.g., Visa, Mastercard).
typeintegerInternal payment type code.
modalityintegerPayment modality code.
Language
Credentials
OAuth2
URL