POST api/RisOrdenTarjetaInvitacion/generar
Request Information
URI Parameters
None.
Body Parameters
RisOrdenTarjetaInvitacionRequestDto| Name | Description | Type | Additional information |
|---|---|---|---|
| OrdenID | integer |
None. |
|
| PacienteID | integer |
None. |
|
| ProfesionalID | integer |
None. |
|
| EmailPaciente | string |
None. |
|
| EmailProfesional | string |
None. |
|
| FechaOrden | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrdenID": 1,
"PacienteID": 2,
"ProfesionalID": 3,
"EmailPaciente": "sample string 4",
"EmailProfesional": "sample string 5",
"FechaOrden": "2026-08-21T12:32:56.6249176-03:00"
}
Response Information
Resource Description
RisOrdenTarjetaInvitacionResponseDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Exitoso | boolean |
None. |
|
| Mensaje | string |
None. |
|
| NombrePaciente | string |
None. |
|
| FechaOrden | date |
None. |
|
| UsuarioPaciente | string |
None. |
|
| PasswordPaciente | string |
None. |
|
| UsuarioPacExistente | boolean |
None. |
|
| TextoQR | string |
None. |
|
| URLPortalWeb | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Exitoso": true,
"Mensaje": "sample string 2",
"NombrePaciente": "sample string 3",
"FechaOrden": "2026-08-21T12:32:56.6249176-03:00",
"UsuarioPaciente": "sample string 4",
"PasswordPaciente": "sample string 5",
"UsuarioPacExistente": true,
"TextoQR": "sample string 7",
"URLPortalWeb": "sample string 8"
}