1. Webhooks do Parceiro - Pedidos
Sellmate External Marketplace - API
  • Módulo predefinido
    • Raiz
  • Sellmate - Integracao API Externa
    • Documentação - API
      • Anuncio
        • Listar colecoes do marketplace
        • Consultar colecao por id interno
        • Listar marcas do marketplace
        • Consultar marca por id interno
        • Notificar criacao ou atualizacao de SKU
        • Listar produtos/SKUs integrados
        • Consultar produto/SKU por id interno
      • Pedidos
        • Enviar atualizacao de status do pedido ao Sellmate
        • Consultar pedido do marketplace
      • Webhooks do Parceiro - Anuncio
        • WEBHOOK - Consultar SKU por partnerId
        • WEBHOOK - Listar SKUs por partnerId
        • WEBHOOK - Receber status da alteracao do SKU
      • Webhooks do Parceiro - Pedidos
        • WEBHOOK - Receber solicitacao de cotacao
          POST
        • WEBHOOK - Consultar pedido no parceiro
          GET
        • WEBHOOK - Receber pedido
          POST
        • WEBHOOK - Receber atualizacao de pedido pago
          PUT
        • WEBHOOK - Receber atualizacao de pedido despachado
          PUT
        • WEBHOOK - Receber atualizacao de pedido entregue
          PUT
        • WEBHOOK - Receber atualizacao de pedido cancelado
          PUT
    • Esquemas
      • Ack
      • AsyncAccepted
      • ErrorResponse
      • Pagination
      • IntegrationConfiguration
      • UpdateIntegrationConfiguration
      • WebhookEndpoints
      • Collection
      • CollectionListResponse
      • Brand
      • BrandListResponse
      • SkuNotification
      • ProductListResponse
      • ProductSku
      • PublicationStatus
      • StockBalance
      • ProductImage
      • ProductVariation
      • ProductAggregate
      • BrandReference
      • CollectionReference
      • CategoryReference
      • OriginReference
      • ProductDimensions
      • ProductAttribute
      • SkuStatusCallback
      • SkuStatusFailure
      • OrderPayload
      • OrderStore
      • OrderStatusObject
      • OrderProduct
      • OrderService
      • OrderAmount
      • OrderDiscount
      • OrderPayment
      • Customer
      • Inventory
      • Address
      • OrderShipping
      • SellerOrderStatusUpdate
      • Nfe
      • Cancellation
      • Tracking
      • QuoteRequest
      • QuoteResponse
      • QuoteOption
      • SellerOrderAck
      • SellerOrderState
      • MarketplaceOrderStatusEvent
  1. Webhooks do Parceiro - Pedidos

WEBHOOK - Receber pedido

POST
/sellmate/orders
Endpoint que o parceiro deve expor para receber o pedido completo criado no marketplace.

Requisição

Parâmetros Header

Parâmetros Bodyapplication/jsonNecessário

Examples

Respostas

🟢200
application/json
Pedido recebido
Bodyapplication/json

🟢201
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/sellmate/orders' \
--header 'X-Idempotency-Key;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "id": 987654,
    "commerceId": "ZEMA-DOC-20260727-0001",
    "partnerId": "string",
    "isExchange": true,
    "originalOrder": {
        "id": 0,
        "commerceId": "string"
    },
    "productId": 0,
    "variantId": 0,
    "createdAt": "2019-08-24T14:15:22.123Z",
    "store": {
        "id": 0,
        "name": "string"
    },
    "status": {
        "id": 0,
        "name": "RECEIVED"
    },
    "product": {
        "productId": 0,
        "productPartnerId": "string",
        "productCommerceId": "string",
        "variantId": 0,
        "variantPartnerId": "string",
        "variantCommerceId": "string",
        "inStock": 0,
        "listPrice": "string"
    },
    "services": [
        {
            "serviceId": 0,
            "serviceCommerceId": "string",
            "servicePartnerId": "string",
            "variantId": 0,
            "variantCommerceId": "string",
            "variantPartnerId": "string",
            "type": "string",
            "name": "string",
            "listPrice": "string"
        }
    ],
    "amount": {
        "quantity": 0,
        "productPrice": "string",
        "grossValue": "string",
        "netValue": "string",
        "freightCost": "string",
        "totalServicesPrice": "string",
        "productCommission": "string",
        "freightCommission": "string",
        "discount": {
            "campaigns": [
                {
                    "type": "INTERNAL",
                    "mkDiscount": 0,
                    "sellerDiscount": 0,
                    "externalDiscount": 0,
                    "value": 0,
                    "coupon": "string",
                    "name": "string",
                    "id": null
                }
            ],
            "totalValue": "string"
        }
    },
    "payment": {
        "type": "CREDIT_CARD",
        "amount": "string",
        "installments": 0,
        "cardBrand": "string"
    },
    "customer": {
        "firstName": "string",
        "lastName": "string",
        "email": "user@example.com",
        "contact": "string",
        "type": "PF",
        "document": "string",
        "stateRegistration": "string",
        "birthDate": "2019-08-24T14:15:22.123Z"
    },
    "inventory": {
        "id": 0,
        "name": "string"
    },
    "collectAddress": {
        "postalCode": "string",
        "address": "string",
        "number": "string",
        "complement": "string",
        "neighborhood": "string",
        "city": "string",
        "state": "string",
        "country": "string"
    },
    "billingAddress": {
        "postalCode": "string",
        "address": "string",
        "number": "string",
        "complement": "string",
        "neighborhood": "string",
        "city": "string",
        "state": "string",
        "country": "string"
    },
    "deliveryAddress": {
        "postalCode": "string",
        "address": "string",
        "number": "string",
        "complement": "string",
        "neighborhood": "string",
        "city": "string",
        "state": "string",
        "country": "string"
    },
    "shipping": {
        "quoteId": "string",
        "serviceMethod": "string",
        "estimatedDeliveryDate": "2019-08-24T14:15:22.123Z",
        "estimatedDeliveryDays": 0,
        "freightCost": "string",
        "type": "BY_SHIPPER",
        "storePickupId": 0,
        "storeName": "string",
        "locationId": "string",
        "pickupResponsibleName": "string",
        "pickupResponsibleDocument": "string",
        "pickupCode": "string"
    }
}'
Response Response Example
200 - Exemplo 1
{
    "received": true,
    "partnerId": "string",
    "message": "string"
}
Modificado em 2026-08-10 12:53:55
Página anterior
WEBHOOK - Consultar pedido no parceiro
Próxima página
WEBHOOK - Receber atualizacao de pedido pago
Built with