POST api/User/SaveUpdateChild

Request Information

URI Parameters

None.

Body Parameters

HW_USER_CHILD_PROFILE
NameDescriptionTypeAdditional information
id

integer

None.

user_id

string

None.

child_name

string

None.

relation

string

None.

child_gender

string

None.

parent_user_id

string

None.

age

integer

None.

weight

decimal number

None.

height

decimal number

None.

blood_group

string

None.

created_at

date

None.

created_by

string

None.

modify_at

date

None.

modify_by

string

None.

active

boolean

None.

deleted

boolean

None.

dob

date

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "user_id": "sample string 2",
  "child_name": "sample string 3",
  "relation": "sample string 4",
  "child_gender": "sample string 5",
  "parent_user_id": "sample string 6",
  "age": 1,
  "weight": 1.1,
  "height": 1.1,
  "blood_group": "sample string 7",
  "created_at": "2026-03-04T03:44:34.0573515+05:00",
  "created_by": "sample string 8",
  "modify_at": "2026-03-04T03:44:34.0573515+05:00",
  "modify_by": "sample string 9",
  "active": true,
  "deleted": true,
  "dob": "2026-03-04T03:44:34.0573515+05:00"
}

text/html, multipart/form-data

Sample:
{"id":1,"user_id":"sample string 2","child_name":"sample string 3","relation":"sample string 4","child_gender":"sample string 5","parent_user_id":"sample string 6","age":1,"weight":1.1,"height":1.1,"blood_group":"sample string 7","created_at":"2026-03-04T03:44:34.0573515+05:00","created_by":"sample string 8","modify_at":"2026-03-04T03:44:34.0573515+05:00","modify_by":"sample string 9","active":true,"deleted":true,"dob":"2026-03-04T03:44:34.0573515+05:00"}

application/xml, text/xml

Sample:
<HW_USER_CHILD_PROFILE xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Humwell_DALL.Dto">
  <active>true</active>
  <age>1</age>
  <blood_group>sample string 7</blood_group>
  <child_gender>sample string 5</child_gender>
  <child_name>sample string 3</child_name>
  <created_at>2026-03-04T03:44:34.0573515+05:00</created_at>
  <created_by>sample string 8</created_by>
  <deleted>true</deleted>
  <dob>2026-03-04T03:44:34.0573515+05:00</dob>
  <height>1.1</height>
  <id>1</id>
  <modify_at>2026-03-04T03:44:34.0573515+05:00</modify_at>
  <modify_by>sample string 9</modify_by>
  <parent_user_id>sample string 6</parent_user_id>
  <relation>sample string 4</relation>
  <user_id>sample string 2</user_id>
  <weight>1.1</weight>
</HW_USER_CHILD_PROFILE>

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 'HW_USER_CHILD_PROFILE'.

Response Information

Resource Description

JsonResponse
NameDescriptionTypeAdditional information
response

response

None.

result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "response": {
    "responseCode": 1,
    "responseMessage": "sample string 2"
  },
  "result": {}
}

text/html, multipart/form-data

Sample:
{"response":{"responseCode":1,"responseMessage":"sample string 2"},"result":{}}

application/xml, text/xml

Sample:
<JsonResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Humwell_DALL.Json">
  <response>
    <responseCode>1</responseCode>
    <responseMessage>sample string 2</responseMessage>
  </response>
  <result />
</JsonResponse>