PV API Service

<back to all web services

PatientReadingsInsertRequest

POST the vitals/labs/images for a particular patient identified by their Log Detail PK and Practice for insertion into VelociDoc.

The following routes are available for this service:
POST, OPTIONS/MedPod/PatientReadings

To override the Content-type in your clients HTTP Accept Header, append ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /jsv/reply/PatientReadingsInsertRequest HTTP/1.1 
Host: api.practicevelocity.com 
Content-Type: text/jsv
Content-Length: length

{
	practice: String,
	logDetailPk: 00000000000000000000000000000000,
	timezoneOffset: 0,
	labs: 
	[
		{
			
		}
	],
	images: 
	[
		{
			name: String,
			mediaType: String,
			encoding: String,
			data: String,
			serialNumber: String,
			timeStamp: 0
		}
	],
	vitals: 
	[
		{
			dataType: String,
			serialNumber: String,
			timeStamp: 0,
			temperature: 0,
			location: String,
			bpDiastolic: 0,
			bpSystolic: 0,
			o2Saturation: 0,
			o2Delivery: 0,
			o2Rate: 0,
			o2Route: String,
			pulse: 0,
			respirations: 0,
			weight: 0,
			height: 0,
			painScale: 0,
			units: String
		}
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	
}