GET api/v1/relatorios/orders/vendor?inicioUtc={inicioUtc}&fimUtc={fimUtc}&vendorErpId={vendorErpId}

[OPCIONAL] Fornece os dados necessários para extração de um relatório de pedidos do ERP.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
inicioUtc

date

Required

fimUtc

date

Required

vendorErpId

string

Required

Body Parameters

None.

Response Information

Resource Description

RelatorioDeProducaoResponse
NameDescriptionTypeAdditional information
TotalDiarioDoVendedor

Collection of PedidoPesquisaTotalDiarioDoVendedorResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "totalDiarioDoVendedor": [
    {
      "data": "2025-12-12T18:14:03.4522883-03:00",
      "totalDia": 2.0,
      "totalDevolucao": 3.0,
      "totalHardware": 4.0,
      "totalInternet": 5.0,
      "totalSoftware": 6.0
    },
    {
      "data": "2025-12-12T18:14:03.4522883-03:00",
      "totalDia": 2.0,
      "totalDevolucao": 3.0,
      "totalHardware": 4.0,
      "totalInternet": 5.0,
      "totalSoftware": 6.0
    }
  ]
}

application/xml, text/xml

Sample:
<RelatorioDeProducaoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/B2B.Integration.GenericIntegration.Contracts.Pedido">
  <TotalDiarioDoVendedor>
    <PedidoPesquisaTotalDiarioDoVendedorResponse>
      <Data>2025-12-12T18:14:03.4522883-03:00</Data>
      <TotalDevolucao>3</TotalDevolucao>
      <TotalDia>2</TotalDia>
      <TotalHardware>4</TotalHardware>
      <TotalInternet>5</TotalInternet>
      <TotalSoftware>6</TotalSoftware>
    </PedidoPesquisaTotalDiarioDoVendedorResponse>
    <PedidoPesquisaTotalDiarioDoVendedorResponse>
      <Data>2025-12-12T18:14:03.4522883-03:00</Data>
      <TotalDevolucao>3</TotalDevolucao>
      <TotalDia>2</TotalDia>
      <TotalHardware>4</TotalHardware>
      <TotalInternet>5</TotalInternet>
      <TotalSoftware>6</TotalSoftware>
    </PedidoPesquisaTotalDiarioDoVendedorResponse>
  </TotalDiarioDoVendedor>
</RelatorioDeProducaoResponse>