POST PlanCare2Api/Documents/MyDocuments/ChangeOfMyDocuments

Update a MyDocument.

Requires 'Start' permission for function Documents {1EF42D55-A0FE-49F0-91C3-CD03DD18D244}

Request Information

URI Parameters

None.

Body Parameters

ChangeOfMyDocument
NameDescriptionTypeAdditional information
Content

Byte array (Base64encoded) containing the (new) content of the document.

Collection of byte

Required

Id

Id of the document. Should be 0 for new instance.

integer

Required

CategoryId

Id of the document category.

integer

Required

OwnerId

The internal id of the person who has done the registration (The Access user id). When the person 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 person. The ownerId may not be changed by the user of the API.

integer

Required

Name

The name of the document.

string

Required

FileName

The original full path to the document. Please note that backslashes should be escaped (see RFC7159). Example: The Windows path to C:\Temp\LogFile.Text should be passed as C:\\Temp\\LogFile.Text.

string

Required

FileSize

Binary size of the document.

integer

None.

DateCreated

Date / time the document is stored the first time.

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Content": "QEA=",
  "Id": 1,
  "CategoryId": 2,
  "OwnerId": 3,
  "Name": "sample string 4",
  "FileName": "sample string 5",
  "FileSize": 6,
  "DateCreated": "2026-05-26T21:02:38.3039215+02:00"
}

application/xml, text/xml

Sample:
<ChangeOfMyDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Documents">
  <CategoryId>2</CategoryId>
  <DateCreated>2026-05-26T21:02:38.3039215+02:00</DateCreated>
  <FileName>sample string 5</FileName>
  <FileSize>6</FileSize>
  <Id>1</Id>
  <Name>sample string 4</Name>
  <OwnerId>3</OwnerId>
  <Content>QEA=</Content>
</ChangeOfMyDocument>

Response Information

Resource Description

Metadata of MyDocument.

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.