GET api/VendedoresServices/obtenerListadoDocumentosVendedor?vendedorId={vendedorId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
vendedorId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DocumentoVendedorName | Description | Type | Additional 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-11-02T03:32:19.388254-05:00" }, { "iDVendedor": 1, "nombre": "sample string 2", "descripcion": "sample string 3", "path": "sample string 4", "fecha": "2024-11-02T03:32:19.388254-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-11-02T03:32:19.388254-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-11-02T03:32:19.388254-05:00</fecha> <iDVendedor>1</iDVendedor> <nombre>sample string 2</nombre> <path>sample string 4</path> </DocumentoVendedor> </ArrayOfDocumentoVendedor>