GET api/VendedoresServices/obtenerListadoDocumentosVendedor?vendedorId={vendedorId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
vendedorId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of DocumentoVendedor
NameDescriptionTypeAdditional information
iDVendedor

integer

None.

nombre

string

None.

descripcion

string

None.

path

string

None.

fecha

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "iDVendedor": 1,
    "nombre": "sample string 2",
    "descripcion": "sample string 3",
    "path": "sample string 4",
    "fecha": "2024-05-07T23:06:36.4489884-05:00"
  },
  {
    "iDVendedor": 1,
    "nombre": "sample string 2",
    "descripcion": "sample string 3",
    "path": "sample string 4",
    "fecha": "2024-05-07T23:06:36.4489884-05:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDocumentoVendedor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProntoCompra.Ventas.ViewModels">
  <DocumentoVendedor>
    <descripcion>sample string 3</descripcion>
    <fecha>2024-05-07T23:06:36.4489884-05:00</fecha>
    <iDVendedor>1</iDVendedor>
    <nombre>sample string 2</nombre>
    <path>sample string 4</path>
  </DocumentoVendedor>
  <DocumentoVendedor>
    <descripcion>sample string 3</descripcion>
    <fecha>2024-05-07T23:06:36.4489884-05:00</fecha>
    <iDVendedor>1</iDVendedor>
    <nombre>sample string 2</nombre>
    <path>sample string 4</path>
  </DocumentoVendedor>
</ArrayOfDocumentoVendedor>