POST api/PostSomatometría

Request Information

URI Parameters

None.

Body Parameters

Collection of TB_ValoresSomatometriaPost
NameDescriptionTypeAdditional 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": "344f5bde-33d8-44b9-91bb-930460c19ed1",
    "idMedida": "b0d76a29-3460-4e52-be00-83418190f3e6",
    "Fecha": "2026-05-04T16:53:46.2478952+00:00",
    "Valor": 4.1,
    "Valor2": 5.1
  },
  {
    "idPaciente": "344f5bde-33d8-44b9-91bb-930460c19ed1",
    "idMedida": "b0d76a29-3460-4e52-be00-83418190f3e6",
    "Fecha": "2026-05-04T16:53:46.2478952+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-05-04T16:53:46.2478952+00:00</Fecha>
    <Valor>4.1</Valor>
    <Valor2>5.1</Valor2>
    <idMedida>b0d76a29-3460-4e52-be00-83418190f3e6</idMedida>
    <idPaciente>344f5bde-33d8-44b9-91bb-930460c19ed1</idPaciente>
  </TB_ValoresSomatometriaPost>
  <TB_ValoresSomatometriaPost>
    <Fecha>2026-05-04T16:53:46.2478952+00:00</Fecha>
    <Valor>4.1</Valor>
    <Valor2>5.1</Valor2>
    <idMedida>b0d76a29-3460-4e52-be00-83418190f3e6</idMedida>
    <idPaciente>344f5bde-33d8-44b9-91bb-930460c19ed1</idPaciente>
  </TB_ValoresSomatometriaPost>
</ArrayOfTB_ValoresSomatometriaPost>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

MsgRespuesta
NameDescriptionTypeAdditional 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>