POST api/UpdateCustomBookingMember
Request Information
URI Parameters
None.
Body Parameters
CustomMemberVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Type | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| string |
None. |
||
| ProfileImageUrl | string |
None. |
|
| Aadhaar | string |
None. |
|
| UID | string |
None. |
|
| UIDTypeId | integer |
None. |
|
| GenderId | integer |
None. |
|
| Relation | string |
None. |
|
| DateOfBirth | date |
None. |
|
| WeddingAnniversaryDate | date |
None. |
|
| Contact | string |
None. |
|
| BloodGroup | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Type": "sample string 2",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"Email": "sample string 5",
"ProfileImageUrl": "sample string 6",
"Aadhaar": "sample string 7",
"UID": "sample string 8",
"UIDTypeId": 1,
"GenderId": 9,
"Relation": "sample string 10",
"DateOfBirth": "2025-12-07T15:45:35.4587648Z",
"WeddingAnniversaryDate": "2025-12-07T15:45:35.4587648Z",
"Contact": "sample string 13",
"BloodGroup": "sample string 14"
}
application/xml, text/xml
Sample:
<CustomMemberVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.CustomBooking"> <Aadhaar>sample string 7</Aadhaar> <BloodGroup>sample string 14</BloodGroup> <Contact>sample string 13</Contact> <DateOfBirth>2025-12-07T21:15:35.4587648+05:30</DateOfBirth> <Email>sample string 5</Email> <FirstName>sample string 3</FirstName> <GenderId>9</GenderId> <Id>1</Id> <LastName>sample string 4</LastName> <ProfileImageUrl>sample string 6</ProfileImageUrl> <Relation>sample string 10</Relation> <Type>sample string 2</Type> <UID>sample string 8</UID> <UIDTypeId>1</UIDTypeId> <WeddingAnniversaryDate>2025-12-07T21:15:35.4587648+05:30</WeddingAnniversaryDate> </CustomMemberVm>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Description | string |
None. |
|
| Data | Object |
None. |
|
| Count | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Description": "sample string 3",
"Data": {},
"Count": 5
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Models"> <Count>5</Count> <Data /> <Description>sample string 3</Description> <Message>sample string 2</Message> <Success>true</Success> </Response>