POST api/PostReferencia
Request Information
URI Parameters
None.
Body Parameters
TB_PostReferencia| Name | Description | Type | Additional information |
|---|---|---|---|
| idPersona | globally unique identifier |
None. |
|
| idAtencion | globally unique identifier |
None. |
|
| idUser | globally unique identifier |
None. |
|
| idMembresia | integer |
None. |
|
| Fecha | date |
None. |
|
| Correo | string |
None. |
|
| Observaciones | string |
None. |
|
| Lista | Collection of TB_PostReferenciaListaSuc |
None. |
Request Formats
application/json, text/json
Sample:
{
"idPersona": "885c4ac8-9c2f-469a-9705-7f38077afb6f",
"idAtencion": "9a771362-659b-45dc-af81-7cee54364ba2",
"idUser": "ba0a8917-e951-40cc-bb5e-10bedde54fed",
"idMembresia": 4,
"Fecha": "2026-06-28T04:16:34.5854478+00:00",
"Correo": "sample string 6",
"Observaciones": "sample string 7",
"Lista": [
{
"idSucursal": "d2f8f31d-3b04-4769-9440-96c1709e684c"
},
{
"idSucursal": "d2f8f31d-3b04-4769-9440-96c1709e684c"
}
]
}
application/xml, text/xml
Sample:
<TB_PostReferencia xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiMembresias">
<Correo>sample string 6</Correo>
<Fecha>2026-06-28T04:16:34.5854478+00:00</Fecha>
<Lista>
<TB_PostReferenciaListaSuc>
<idSucursal>d2f8f31d-3b04-4769-9440-96c1709e684c</idSucursal>
</TB_PostReferenciaListaSuc>
<TB_PostReferenciaListaSuc>
<idSucursal>d2f8f31d-3b04-4769-9440-96c1709e684c</idSucursal>
</TB_PostReferenciaListaSuc>
</Lista>
<Observaciones>sample string 7</Observaciones>
<idAtencion>9a771362-659b-45dc-af81-7cee54364ba2</idAtencion>
<idMembresia>4</idMembresia>
<idPersona>885c4ac8-9c2f-469a-9705-7f38077afb6f</idPersona>
<idUser>ba0a8917-e951-40cc-bb5e-10bedde54fed</idUser>
</TB_PostReferencia>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MsgRespuesta| Name | Description | Type | Additional information |
|---|---|---|---|
| codigo | string |
None. |
|
| mensaje | string |
None. |
|
| contenido | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"codigo": "sample string 1",
"mensaje": "sample string 2",
"contenido": {}
}
application/xml, text/xml
Sample:
<MsgRespuesta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiMembresias"> <codigo>sample string 1</codigo> <contenido /> <mensaje>sample string 2</mensaje> </MsgRespuesta>