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": "fa3066a5-193c-408b-8c99-996267f3be0a",
"idAtencion": "7bef36e5-70b7-45e8-8125-5fa88285431e",
"idUser": "693847f6-65f9-4e09-902d-649f6c5ff6e2",
"idMembresia": 4,
"Fecha": "2026-06-22T06:14:04.7455736+00:00",
"Correo": "sample string 6",
"Observaciones": "sample string 7",
"Lista": [
{
"idSucursal": "1c21226f-6aab-4d83-9c32-2c63169629fe"
},
{
"idSucursal": "1c21226f-6aab-4d83-9c32-2c63169629fe"
}
]
}
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-22T06:14:04.7455736+00:00</Fecha>
<Lista>
<TB_PostReferenciaListaSuc>
<idSucursal>1c21226f-6aab-4d83-9c32-2c63169629fe</idSucursal>
</TB_PostReferenciaListaSuc>
<TB_PostReferenciaListaSuc>
<idSucursal>1c21226f-6aab-4d83-9c32-2c63169629fe</idSucursal>
</TB_PostReferenciaListaSuc>
</Lista>
<Observaciones>sample string 7</Observaciones>
<idAtencion>7bef36e5-70b7-45e8-8125-5fa88285431e</idAtencion>
<idMembresia>4</idMembresia>
<idPersona>fa3066a5-193c-408b-8c99-996267f3be0a</idPersona>
<idUser>693847f6-65f9-4e09-902d-649f6c5ff6e2</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>