POST api/family?cid={cid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
cid

integer

Required

Body Parameters

Collection of T_G_EmpFamilyDetails
NameDescriptionTypeAdditional information
EmpID

integer

None.

RID

integer

None.

Name

string

None.

DOB

string

None.

BloodGroup

string

None.

Gender

boolean

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "EmpID": 1,
    "RID": 2,
    "Name": "sample string 3",
    "DOB": "sample string 4",
    "BloodGroup": "sample string 5",
    "Gender": true
  },
  {
    "EmpID": 1,
    "RID": 2,
    "Name": "sample string 3",
    "DOB": "sample string 4",
    "BloodGroup": "sample string 5",
    "Gender": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfT_G_EmpFamilyDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Login.Controllers.HMS">
  <T_G_EmpFamilyDetails>
    <BloodGroup>sample string 5</BloodGroup>
    <DOB>sample string 4</DOB>
    <EmpID>1</EmpID>
    <Gender>true</Gender>
    <Name>sample string 3</Name>
    <RID>2</RID>
  </T_G_EmpFamilyDetails>
  <T_G_EmpFamilyDetails>
    <BloodGroup>sample string 5</BloodGroup>
    <DOB>sample string 4</DOB>
    <EmpID>1</EmpID>
    <Gender>true</Gender>
    <Name>sample string 3</Name>
    <RID>2</RID>
  </T_G_EmpFamilyDetails>
</ArrayOfT_G_EmpFamilyDetails>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

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.