POST PlanCare2Api/CareRegistration/UrineResults

Saves a new urine result instance

Requires 'Start' permission for function UrineResultOverview {D18F70D5-D50C-4114-9754-8D305FBD1F32}

Request Information

URI Parameters

None.

Body Parameters

The urine result instance that is being updated

UrineResult
NameDescriptionTypeAdditional information
TypeTestId

References to a Choice of ChoiceType 'URINE TYPETEST'

integer

None.

TypeTest

The value of the choice for ChoiceType 'URINE TYPETEST'. This property is for reading purposes only.

string

None.

PHId

References to a Choice of ChoiceType 'URINE PH'

integer

None.

PH

The value of the choice for ChoiceType 'URINE PH'. This property is for reading purposes only.

string

None.

LeukoId

References to a Choice of ChoiceType 'URINE LEUCO'

integer

None.

Leuko

The value of the choice for ChoiceType 'URINE LEUCO'. This property is for reading purposes only.

string

None.

NitriteId

References to a Choice of ChoiceType 'URINE NITRITE'

integer

None.

Nitrite

The value of the choice for ChoiceType 'URINE NITRITE'. This property is for reading purposes only.

string

None.

ProteinId

References to a Choice of ChoiceType 'URINE PROTEINE'

integer

None.

Protein

The value of the choice for ChoiceType 'URINE PROTEINE'. This property is for reading purposes only.

string

None.

GlucoseId

References to a Choice of ChoiceType 'URINE GLUKOSE'

integer

None.

Glucose

The value of the choice for ChoiceType 'URINE GLUKOSE'. This property is for reading purposes only.

string

None.

KetonesId

References to a Choice of ChoiceType 'URINE KETONES'

integer

None.

Ketones

The value of the choice for ChoiceType 'URINE KETONES'. This property is for reading purposes only.

string

None.

UrobilinogenId

References to a Choice of ChoiceType 'URINE UROBILINOGEN'

integer

None.

Urobilinogen

The value of the choice for ChoiceType 'URINE UROBILINOGEN'. This property is for reading purposes only.

string

None.

BilirubinId

References to a Choice of ChoiceType 'URINE BILIRUBINE'

integer

None.

Bilirubin

The value of the choice for ChoiceType 'URINE BILIRUBINE'. This property is for reading purposes only.

string

None.

BloodId

References to a Choice of ChoiceType 'URINE BLOED'

integer

None.

Blood

The value of the choice for ChoiceType 'URINE BLOED'. This property is for reading purposes only.

string

None.

HemoglobinId

References to a Choice of ChoiceType 'URINE HAEMOGLOBINE'

integer

None.

Hemoglobin

The value of the choice for ChoiceType 'URINE HAEMOGLOBINE'. This property is for reading purposes only.

string

None.

Id

The internal id of the registration. Should be 0 for new instance.

integer

Required

EmployeeId

The internal id of the employee who has done the registration. When the EmployeeId is not the same as the logged on employee, then the logged on employee must be authorized in Plancare2 to store information on behalf of the given EmployeeId.

integer

Required

EmployeeName

The name of the employee. This property is for reading purposes only.

string

None.

ClientId

The internal id of the client.

integer

Required

ClientName

The name of the client. This property is for reading purposes only.

string

None.

CreationDate

The date when the registration is created. This property is for reading purposes only.

date

None.

RegistrationDate

The registration date.

date

Required

Request Formats

application/json, text/json

Sample:
{
  "TypeTestId": 1,
  "TypeTest": "sample string 1",
  "PHId": 1,
  "PH": "sample string 2",
  "LeukoId": 1,
  "Leuko": "sample string 3",
  "NitriteId": 1,
  "Nitrite": "sample string 4",
  "ProteinId": 1,
  "Protein": "sample string 5",
  "GlucoseId": 1,
  "Glucose": "sample string 6",
  "KetonesId": 1,
  "Ketones": "sample string 7",
  "UrobilinogenId": 1,
  "Urobilinogen": "sample string 8",
  "BilirubinId": 1,
  "Bilirubin": "sample string 9",
  "BloodId": 1,
  "Blood": "sample string 10",
  "HemoglobinId": 1,
  "Hemoglobin": "sample string 11",
  "Id": 12,
  "EmployeeId": 13,
  "EmployeeName": "sample string 14",
  "ClientId": 15,
  "ClientName": "sample string 16",
  "CreationDate": "2026-05-26T22:09:57.7133053+02:00",
  "RegistrationDate": "2026-05-26T22:09:57.7133053+02:00"
}

application/xml, text/xml

Sample:
<UrineResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.CareRegistration">
  <ClientId>15</ClientId>
  <ClientName>sample string 16</ClientName>
  <CreationDate>2026-05-26T22:09:57.7133053+02:00</CreationDate>
  <EmployeeId>13</EmployeeId>
  <EmployeeName>sample string 14</EmployeeName>
  <Id>12</Id>
  <RegistrationDate>2026-05-26T22:09:57.7133053+02:00</RegistrationDate>
  <Bilirubin>sample string 9</Bilirubin>
  <BilirubinId>1</BilirubinId>
  <Blood>sample string 10</Blood>
  <BloodId>1</BloodId>
  <Glucose>sample string 6</Glucose>
  <GlucoseId>1</GlucoseId>
  <Hemoglobin>sample string 11</Hemoglobin>
  <HemoglobinId>1</HemoglobinId>
  <Ketones>sample string 7</Ketones>
  <KetonesId>1</KetonesId>
  <Leuko>sample string 3</Leuko>
  <LeukoId>1</LeukoId>
  <Nitrite>sample string 4</Nitrite>
  <NitriteId>1</NitriteId>
  <PH>sample string 2</PH>
  <PHId>1</PHId>
  <Protein>sample string 5</Protein>
  <ProteinId>1</ProteinId>
  <TypeTest>sample string 1</TypeTest>
  <TypeTestId>1</TypeTestId>
  <Urobilinogen>sample string 8</Urobilinogen>
  <UrobilinogenId>1</UrobilinogenId>
</UrineResult>

Response Information

Resource Description

Returns the HttpResponseMessage which contains the saved urine result instance

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.