POST api/SelfCare/PostSelfCareDetails

Request Information

URI Parameters

None.

Body Parameters

SelfCarePostModel
NameDescriptionTypeAdditional information
SelfCareId

integer

None.

Subject

string

None.

Description

string

None.

ImagePath

string

None.

Base64Image

string

None.

TransDate

date

None.

UserId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SelfCareId": 1,
  "Subject": "sample string 2",
  "Description": "sample string 3",
  "ImagePath": "sample string 4",
  "Base64Image": "sample string 5",
  "TransDate": "2025-10-28T01:06:28.3163018+05:30",
  "UserId": "sample string 7"
}

application/xml, text/xml

Sample:
<SelfCarePostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operation.CustomModels">
  <Base64Image>sample string 5</Base64Image>
  <Description>sample string 3</Description>
  <ImagePath>sample string 4</ImagePath>
  <SelfCareId>1</SelfCareId>
  <Subject>sample string 2</Subject>
  <TransDate>2025-10-28T01:06:28.3163018+05:30</TransDate>
  <UserId>sample string 7</UserId>
</SelfCarePostModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>