GET api/VendedoresServices/setDocumentosVendedor?vendedorId={vendedorId}&nombre={nombre}&descripcion={descripcion}&path={path}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
vendedorId

integer

Required

nombre

string

Required

descripcion

string

Required

path

string

Required

Body Parameters

None.

Response Information

Resource Description

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:09.9021166-05:00"
}

application/xml, text/xml

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