POST api/AddPetVitals/AddVital

Request Information

URI Parameters

None.

Body Parameters

PetVital
NameDescriptionTypeAdditional information
UserName

string

None.

Vitaldatetime

date

None.

PetName

string

None.

Pulse

integer

None.

SPO2

integer

None.

Resp

integer

None.

HRV_RMSSD

integer

None.

HRV_SDSD

integer

None.

HRV_PNN50

string

None.

PhwareScore

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "Vitaldatetime": "2024-12-23T06:55:57.2070991-08:00",
  "PetName": "sample string 3",
  "Pulse": 4,
  "SPO2": 5,
  "Resp": 6,
  "HRV_RMSSD": 7,
  "HRV_SDSD": 8,
  "HRV_PNN50": "sample string 9",
  "PhwareScore": "sample string 10"
}

application/xml, text/xml

Sample:
<PetVital xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PhwareWebApi.Util">
  <HRV_PNN50>sample string 9</HRV_PNN50>
  <HRV_RMSSD>7</HRV_RMSSD>
  <HRV_SDSD>8</HRV_SDSD>
  <PetName>sample string 3</PetName>
  <PhwareScore>sample string 10</PhwareScore>
  <Pulse>4</Pulse>
  <Resp>6</Resp>
  <SPO2>5</SPO2>
  <UserName>sample string 1</UserName>
  <Vitaldatetime>2024-12-23T06:55:57.2070991-08:00</Vitaldatetime>
</PetVital>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>