POST api/PostSomatometría
Request Information
URI Parameters
None.
Body Parameters
Collection of TB_ValoresSomatometriaPost| Name | Description | Type | Additional information |
|---|---|---|---|
| idPaciente | globally unique identifier |
None. |
|
| idMedida | globally unique identifier |
None. |
|
| Fecha | date |
None. |
|
| Valor | decimal number |
None. |
|
| Valor2 | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"idPaciente": "2dc1a6e5-12c4-481b-8248-785970dee636",
"idMedida": "19a5be67-5fbb-4686-8637-6b02cbf3772c",
"Fecha": "2026-09-03T14:52:09.4090919+00:00",
"Valor": 4.1,
"Valor2": 5.1
},
{
"idPaciente": "2dc1a6e5-12c4-481b-8248-785970dee636",
"idMedida": "19a5be67-5fbb-4686-8637-6b02cbf3772c",
"Fecha": "2026-09-03T14:52:09.4090919+00:00",
"Valor": 4.1,
"Valor2": 5.1
}
]
application/xml, text/xml
Sample:
<ArrayOfTB_ValoresSomatometriaPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiMembresias">
<TB_ValoresSomatometriaPost>
<Fecha>2026-09-03T14:52:09.4090919+00:00</Fecha>
<Valor>4.1</Valor>
<Valor2>5.1</Valor2>
<idMedida>19a5be67-5fbb-4686-8637-6b02cbf3772c</idMedida>
<idPaciente>2dc1a6e5-12c4-481b-8248-785970dee636</idPaciente>
</TB_ValoresSomatometriaPost>
<TB_ValoresSomatometriaPost>
<Fecha>2026-09-03T14:52:09.4090919+00:00</Fecha>
<Valor>4.1</Valor>
<Valor2>5.1</Valor2>
<idMedida>19a5be67-5fbb-4686-8637-6b02cbf3772c</idMedida>
<idPaciente>2dc1a6e5-12c4-481b-8248-785970dee636</idPaciente>
</TB_ValoresSomatometriaPost>
</ArrayOfTB_ValoresSomatometriaPost>
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>