Bradypnea represents a respiratory condition.
Overview
Property | Type | Description |
---|---|---|
code | String | The Code of the resource |
user_code | String | The global Id of the user |
threshold | Number | Bradypnea is considered in effect if the number of respirations per minute drops under this value |
tolerance | Number | Optionally, the Bradypnea condition may be considered in effect if the number of respirations per minute drops under the (threshold + tolerance) value |
time_threshold | Number | The number of hours during which the conditions for a bradypnea problem must hold |
created_at | Datetime with Timezone | The time the activity was created on the ZivaCare API server |
updated_at | Datetime with Timezone | The time the activity was updated on the ZivaCare API server |
Example
GET https://api.zivacare.com/api/v2/threshold/bradypnea?access_token=demo
{
"code": "2fab66c0-3b71-42d6-9eaf-6be464d38cae",
"user_code": "e231e984-2209-4a10-b634-2257b89c200f",
"threshold": 13,
"tolerance": 12.33,
"time_threshold": 2,
"created_at": "2015-07-03T11:52:09+0000"
}
curl -X POST -H 'Content-Type: application/json' https://api.zivacare.com/api/v2/threshold/bradypnea?access_token=demo -d '{
"threshold": 13,
"tolerance": 12.33,
"time_threshold": 2
}'
curl -X PUT -H 'Content-Type: application/json' https://api.zivacare.com/api/v2/threshold/bradypnea?access_token=demo -d '{
"threshold": 13,
"tolerance": 12.33,
"time_threshold": 2
}'