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": "8b6e55dc-bcdd-4e6a-80b3-9f0314f6a2af",
"idAtencion": "fcf48b0b-ebc6-46e1-8e98-9051455764bc",
"idUser": "e6fea24d-4d7e-498e-b493-3a16a6f7af4a",
"idMembresia": 4,
"Fecha": "2026-07-10T14:00:00.1310131+00:00",
"Correo": "sample string 6",
"Observaciones": "sample string 7",
"Lista": [
{
"idSucursal": "767fa033-12df-4f15-8c01-80d25e659f46"
},
{
"idSucursal": "767fa033-12df-4f15-8c01-80d25e659f46"
}
]
}
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-07-10T14:00:00.1310131+00:00</Fecha>
<Lista>
<TB_PostReferenciaListaSuc>
<idSucursal>767fa033-12df-4f15-8c01-80d25e659f46</idSucursal>
</TB_PostReferenciaListaSuc>
<TB_PostReferenciaListaSuc>
<idSucursal>767fa033-12df-4f15-8c01-80d25e659f46</idSucursal>
</TB_PostReferenciaListaSuc>
</Lista>
<Observaciones>sample string 7</Observaciones>
<idAtencion>fcf48b0b-ebc6-46e1-8e98-9051455764bc</idAtencion>
<idMembresia>4</idMembresia>
<idPersona>8b6e55dc-bcdd-4e6a-80b3-9f0314f6a2af</idPersona>
<idUser>e6fea24d-4d7e-498e-b493-3a16a6f7af4a</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>