POST api/Appointement/PostPatinetSymptoms
Request Information
URI Parameters
None.
Body Parameters
PatientSymptoms| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientSymptomsId | integer |
None. |
|
| PatientId | integer |
None. |
|
| DoctorsId | integer |
None. |
|
| Description | string |
None. |
|
| SyptomId | Collection of ClsSymptoms |
None. |
|
| AppointmentId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientSymptomsId": 1,
"PatientId": 1,
"DoctorsId": 1,
"Description": "sample string 2",
"SyptomId": [
{
"Id": 1
},
{
"Id": 1
}
],
"AppointmentId": 1
}
application/xml, text/xml
Sample:
<PatientSymptoms xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models.CustomClass">
<AppointmentId>1</AppointmentId>
<Description>sample string 2</Description>
<DoctorsId>1</DoctorsId>
<PatientId>1</PatientId>
<PatientSymptomsId>1</PatientSymptomsId>
<SyptomId>
<ClsSymptoms>
<Id>1</Id>
</ClsSymptoms>
<ClsSymptoms>
<Id>1</Id>
</ClsSymptoms>
</SyptomId>
</PatientSymptoms>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |