POST PlanCare2Api/CareRegistration/UrineResults/ChangeOfUrineResults

Stores a 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

ChangeOfUrineResult
Name Description Type Additional information
TypeTestId

References to a Choice of ChoiceType 'URINE TYPETEST'

integer

Nullable

TypeTest

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

string

-

PHId

References to a Choice of ChoiceType 'URINE PH'

integer

Nullable

PH

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

string

-

LeukoId

References to a Choice of ChoiceType 'URINE LEUCO'

integer

Nullable

Leuko

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

string

-

NitriteId

References to a Choice of ChoiceType 'URINE NITRITE'

integer

Nullable

Nitrite

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

string

-

ProteinId

References to a Choice of ChoiceType 'URINE PROTEINE'

integer

Nullable

Protein

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

string

-

GlucoseId

References to a Choice of ChoiceType 'URINE GLUKOSE'

integer

Nullable

Glucose

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

string

-

KetonesId

References to a Choice of ChoiceType 'URINE KETONES'

integer

Nullable

Ketones

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

string

-

UrobilinogenId

References to a Choice of ChoiceType 'URINE UROBILINOGEN'

integer

Nullable

Urobilinogen

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

string

-

BilirubinId

References to a Choice of ChoiceType 'URINE BILIRUBINE'

integer

Nullable

Bilirubin

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

string

-

BloodId

References to a Choice of ChoiceType 'URINE BLOED'

integer

Nullable

Blood

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

string

-

HemoglobinId

References to a Choice of ChoiceType 'URINE HAEMOGLOBINE'

integer

Nullable

Hemoglobin

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

string

-

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

-

ClientId

The internal id of the client.

integer

Required

ClientName

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

string

-

CreationDate

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

date

-

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.0959629+02:00",
  "RegistrationDate": "2026-05-26T22:09:57.0959629+02:00"
}

application/xml, text/xml

Sample:
<ChangeOfUrineResult 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.0959629+02:00</CreationDate>
  <EmployeeId>13</EmployeeId>
  <EmployeeName>sample string 14</EmployeeName>
  <Id>12</Id>
  <RegistrationDate>2026-05-26T22:09:57.0959629+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>
</ChangeOfUrineResult>

Response Information

Resource Description

Returns the HttpResponseMessage which contains the saved urine result instance

HttpResponseMessage
Name Description Type Additional information
Version

Version

-

Content

HttpContent

-

StatusCode

HttpStatusCode

-

ReasonPhrase

string

-

Headers

Collection of Object

-

RequestMessage

HttpRequestMessage

-

IsSuccessStatusCode

boolean

-