PUT Facturas?numeroBloque={numeroBloque}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
numeroBloque

string

Required

Body Parameters

Pedido
NameDescriptionTypeAdditional information
CLIENTE_CLAVE

string

None.

VENDEDOR_CLAVE

string

None.

REFERENCIA

string

None.

FECHA_EMISION

date

None.

Partidas

Collection of PedidoPartida

None.

Request Formats

application/json, text/json

Sample:
{
  "CLIENTE_CLAVE": "sample string 1",
  "VENDEDOR_CLAVE": "sample string 2",
  "REFERENCIA": "sample string 3",
  "FECHA_EMISION": "2026-04-13T19:15:26.7414023-06:00",
  "Partidas": [
    {
      "PRODUCTO_CLAVE": "sample string 1",
      "CANTIDAD": 1.0,
      "PRECIO": 1.0,
      "CERTIFICADO_NUMERO": "sample string 2",
      "CERTIFICADO_FECHA": "2026-04-13T19:15:26.7424011-06:00",
      "CERTIFICADO_BENEFICIARIO": "sample string 3",
      "CERTIFICADO_REFERENCIA": "sample string 4",
      "CERTIFICADO_VALOR_ASEGURADO": 1.0
    },
    {
      "PRODUCTO_CLAVE": "sample string 1",
      "CANTIDAD": 1.0,
      "PRECIO": 1.0,
      "CERTIFICADO_NUMERO": "sample string 2",
      "CERTIFICADO_FECHA": "2026-04-13T19:15:26.7424011-06:00",
      "CERTIFICADO_BENEFICIARIO": "sample string 3",
      "CERTIFICADO_REFERENCIA": "sample string 4",
      "CERTIFICADO_VALOR_ASEGURADO": 1.0
    }
  ]
}

application/xml, text/xml

Sample:
<Pedido xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AspelSae.WebApi.Models">
  <CLIENTE_CLAVE>sample string 1</CLIENTE_CLAVE>
  <FECHA_EMISION>2026-04-13T19:15:26.7414023-06:00</FECHA_EMISION>
  <Partidas>
    <PedidoPartida>
      <CANTIDAD>1</CANTIDAD>
      <CERTIFICADO_BENEFICIARIO>sample string 3</CERTIFICADO_BENEFICIARIO>
      <CERTIFICADO_FECHA>2026-04-13T19:15:26.7424011-06:00</CERTIFICADO_FECHA>
      <CERTIFICADO_NUMERO>sample string 2</CERTIFICADO_NUMERO>
      <CERTIFICADO_REFERENCIA>sample string 4</CERTIFICADO_REFERENCIA>
      <CERTIFICADO_VALOR_ASEGURADO>1</CERTIFICADO_VALOR_ASEGURADO>
      <PRECIO>1</PRECIO>
      <PRODUCTO_CLAVE>sample string 1</PRODUCTO_CLAVE>
    </PedidoPartida>
    <PedidoPartida>
      <CANTIDAD>1</CANTIDAD>
      <CERTIFICADO_BENEFICIARIO>sample string 3</CERTIFICADO_BENEFICIARIO>
      <CERTIFICADO_FECHA>2026-04-13T19:15:26.7424011-06:00</CERTIFICADO_FECHA>
      <CERTIFICADO_NUMERO>sample string 2</CERTIFICADO_NUMERO>
      <CERTIFICADO_REFERENCIA>sample string 4</CERTIFICADO_REFERENCIA>
      <CERTIFICADO_VALOR_ASEGURADO>1</CERTIFICADO_VALOR_ASEGURADO>
      <PRECIO>1</PRECIO>
      <PRODUCTO_CLAVE>sample string 1</PRODUCTO_CLAVE>
    </PedidoPartida>
  </Partidas>
  <REFERENCIA>sample string 3</REFERENCIA>
  <VENDEDOR_CLAVE>sample string 2</VENDEDOR_CLAVE>
</Pedido>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>