POST api/conector/getmodels?identifier={identifier}&transactionId={transactionId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| identifier | string |
None. |
|
| transactionId | string |
None. |
Body Parameters
RequestModeloDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| MarcaId | integer |
None. |
|
| FechaMatriculacion | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"MarcaId": 1,
"FechaMatriculacion": "2026-01-10T11:48:03.1316923+00:00"
}
application/xml, text/xml
Sample:
<RequestModeloDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/vivo_aps.Models"> <FechaMatriculacion>2026-01-10T11:48:03.1316923+00:00</FechaMatriculacion> <MarcaId>1</MarcaId> </RequestModeloDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetModelosResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| CodRetorno | integer |
None. |
|
| Mensaje | string |
None. |
|
| Modelos | Collection of ModeloDTO |
None. |
Response Formats
application/json, text/json
Sample:
{
"Modelos": null,
"CodRetorno": 1,
"Mensaje": "sample string 2"
}
application/xml, text/xml
Sample:
<GetModelosResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/vivo_aps.Models"> <CodRetorno>1</CodRetorno> <Mensaje>sample string 2</Mensaje> <Modelos i:nil="true" /> </GetModelosResponse>