POST api/PostConsultaPresencial
Request Information
URI Parameters
None.
Body Parameters
TB_PostCitaPresencialSA| Name | Description | Type | Additional information |
|---|---|---|---|
| idUser | globally unique identifier |
None. |
|
| idProveedor | globally unique identifier |
None. |
|
| idSucursal | globally unique identifier |
None. |
|
| idPersona | globally unique identifier |
None. |
|
| idEspecialidad | globally unique identifier |
None. |
|
| FecAgendaIni | date |
None. |
|
| FecAgendaFin | date |
None. |
|
| Costo | decimal number |
None. |
|
| RazonConsulta | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"idUser": "21e0bc44-44af-4b5e-ac9d-50aa73b35b5d",
"idProveedor": "e1821be9-1354-4c9c-9079-8885554f3554",
"idSucursal": "7ab0e776-a64e-4ef7-9b3e-1fade7051381",
"idPersona": "db26dc29-9385-4e27-8980-56ff343371de",
"idEspecialidad": "41b8c07a-9ad3-4bd2-88c7-e8190392b919",
"FecAgendaIni": "2026-03-23T07:58:12.0703184-04:00",
"FecAgendaFin": "2026-03-23T07:58:12.0703184-04:00",
"Costo": 8.1,
"RazonConsulta": "sample string 9"
}
application/xml, text/xml
Sample:
<TB_PostCitaPresencialSA xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiSuperAPP"> <Costo>8.1</Costo> <FecAgendaFin>2026-03-23T07:58:12.0703184-04:00</FecAgendaFin> <FecAgendaIni>2026-03-23T07:58:12.0703184-04:00</FecAgendaIni> <RazonConsulta>sample string 9</RazonConsulta> <idEspecialidad>41b8c07a-9ad3-4bd2-88c7-e8190392b919</idEspecialidad> <idPersona>db26dc29-9385-4e27-8980-56ff343371de</idPersona> <idProveedor>e1821be9-1354-4c9c-9079-8885554f3554</idProveedor> <idSucursal>7ab0e776-a64e-4ef7-9b3e-1fade7051381</idSucursal> <idUser>21e0bc44-44af-4b5e-ac9d-50aa73b35b5d</idUser> </TB_PostCitaPresencialSA>
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/apiSuperAPP"> <codigo>sample string 1</codigo> <contenido /> <mensaje>sample string 2</mensaje> </MsgRespuesta>