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 solicitacao de cotacao

POST
/sellmate/orders/quote

Requisição

Parâmetros Bodyapplication/jsonNecessário

Examples

Respostas

🟢200
application/json
Cotacao calculada
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/sellmate/orders/quote' \
--header 'Content-Type: application/json' \
--data '{
    "sellerId": 0,
    "quoteId": "string",
    "items": [
        {
            "partnerId": "string",
            "quantity": 1,
            "listPrice": "string",
            "dimensions": {
                "liquidWeight": 0,
                "grossWeight": 0,
                "height": 0,
                "width": 0,
                "length": 0,
                "packageHeight": 0,
                "packageWidth": 0,
                "packageLength": 0,
                "perPackage": 0
            }
        }
    ],
    "deliveryAddress": {
        "postalCode": "string",
        "address": "string",
        "number": "string",
        "complement": "string",
        "neighborhood": "string",
        "city": "string",
        "state": "string",
        "country": "string"
    }
}'
Response Response Example
{
    "quoteId": "string",
    "options": [
        {
            "serviceMethod": "string",
            "serviceName": "string",
            "freightCost": "string",
            "estimatedDeliveryDays": 0,
            "estimatedDeliveryDate": "2019-08-24T14:15:22.123Z",
            "type": "BY_SHIPPER",
            "locationId": "string"
        }
    ]
}
Modificado em 2026-08-10 12:53:55
Página anterior
WEBHOOK - Receber status da alteracao do SKU
Próxima página
WEBHOOK - Consultar pedido no parceiro
Built with