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": "6991ef1c-ce2d-4da3-a8ef-d29ed3ce93d1",
"idAtencion": "8e267623-0437-40e6-a2f2-166de649726d",
"idUser": "55c1cba2-3001-4df2-aa33-b5b4aa61f030",
"idMembresia": 4,
"Fecha": "2026-08-12T14:47:20.7038872+00:00",
"Correo": "sample string 6",
"Observaciones": "sample string 7",
"Lista": [
{
"idSucursal": "63e88b58-ebd0-459d-9e2f-4647132f0377"
},
{
"idSucursal": "63e88b58-ebd0-459d-9e2f-4647132f0377"
}
]
}
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-08-12T14:47:20.7038872+00:00</Fecha>
<Lista>
<TB_PostReferenciaListaSuc>
<idSucursal>63e88b58-ebd0-459d-9e2f-4647132f0377</idSucursal>
</TB_PostReferenciaListaSuc>
<TB_PostReferenciaListaSuc>
<idSucursal>63e88b58-ebd0-459d-9e2f-4647132f0377</idSucursal>
</TB_PostReferenciaListaSuc>
</Lista>
<Observaciones>sample string 7</Observaciones>
<idAtencion>8e267623-0437-40e6-a2f2-166de649726d</idAtencion>
<idMembresia>4</idMembresia>
<idPersona>6991ef1c-ce2d-4da3-a8ef-d29ed3ce93d1</idPersona>
<idUser>55c1cba2-3001-4df2-aa33-b5b4aa61f030</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>