GET api/VendedoresServices/setDocumentosVendedor?vendedorId={vendedorId}&nombre={nombre}&descripcion={descripcion}&path={path}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
vendedorId | integer |
Required |
|
nombre | string |
Required |
|
descripcion | string |
Required |
|
path | string |
Required |
Body Parameters
None.
Response Information
Resource Description
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:31:06.941362-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-11-02T03:31:06.941362-05:00</fecha> <iDVendedor>1</iDVendedor> <nombre>sample string 2</nombre> <path>sample string 4</path> </DocumentoVendedor>