POST api/journal/save-incident-signature

Request Information

URI Parameters

None.

Body Parameters

IncidentSignatureRequest
NameDescriptionTypeAdditional information
ChildNote_Id

integer

None.

Note_Id

integer

None.

Signature

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ChildNote_Id": 1,
  "Note_Id": 2,
  "Signature": "sample string 3"
}

application/xml, text/xml

Sample:
<IncidentSignatureRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iCareApiModel">
  <ChildNote_Id>1</ChildNote_Id>
  <Note_Id>2</Note_Id>
  <Signature>sample string 3</Signature>
</IncidentSignatureRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'IncidentSignatureRequest'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>