POST api/user/UpdateFamilyDetails
Request Information
URI Parameters
None.
Body Parameters
familydetailVMName | Description | Type | Additional information |
---|---|---|---|
live_with | string |
None. |
|
parent_country_id | integer |
None. |
|
mother_occupation | string |
None. |
|
father_occupation | string |
None. |
|
father_alive | boolean |
None. |
|
mother_alive | boolean |
None. |
|
silings | boolean |
None. |
|
no_of_brother | integer |
None. |
|
no_of_sister | integer |
None. |
|
married_brother | integer |
None. |
|
married_sister | integer |
None. |
|
mother_tounge | string |
None. |
|
user_id | integer |
None. |
|
parent_city_id | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "live_with": "sample string 1", "parent_country_id": 2, "mother_occupation": "sample string 3", "father_occupation": "sample string 4", "father_alive": true, "mother_alive": true, "silings": true, "no_of_brother": 5, "no_of_sister": 6, "married_brother": 7, "married_sister": 8, "mother_tounge": "sample string 9", "user_id": 10, "parent_city_id": 11 }
application/xml, text/xml
Sample:
<familydetailVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/asanRishta.Models.ViewModels"> <father_alive>true</father_alive> <father_occupation>sample string 4</father_occupation> <live_with>sample string 1</live_with> <married_brother>7</married_brother> <married_sister>8</married_sister> <mother_alive>true</mother_alive> <mother_occupation>sample string 3</mother_occupation> <mother_tounge>sample string 9</mother_tounge> <no_of_brother>5</no_of_brother> <no_of_sister>6</no_of_sister> <parent_city_id>11</parent_city_id> <parent_country_id>2</parent_country_id> <silings>true</silings> <user_id>10</user_id> </familydetailVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.