POST api/BulkUpdateCustomBookingMembers
Request Information
URI Parameters
None.
Body Parameters
CustomBookingMemberPostVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Type | string |
None. |
|
| CustomMembers | Collection of CustomMemberVm |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Type": "sample string 2",
"CustomMembers": [
{
"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:24:32.8149953Z",
"WeddingAnniversaryDate": "2025-12-07T15:24:32.8159963Z",
"Contact": "sample string 13",
"BloodGroup": "sample string 14"
},
{
"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:24:32.8149953Z",
"WeddingAnniversaryDate": "2025-12-07T15:24:32.8159963Z",
"Contact": "sample string 13",
"BloodGroup": "sample string 14"
}
]
}
application/xml, text/xml
Sample:
<CustomBookingMemberPostVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.CustomBooking">
<CustomMembers>
<CustomMemberVm>
<Aadhaar>sample string 7</Aadhaar>
<BloodGroup>sample string 14</BloodGroup>
<Contact>sample string 13</Contact>
<DateOfBirth>2025-12-07T20:54:32.8149953+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-07T20:54:32.8159963+05:30</WeddingAnniversaryDate>
</CustomMemberVm>
<CustomMemberVm>
<Aadhaar>sample string 7</Aadhaar>
<BloodGroup>sample string 14</BloodGroup>
<Contact>sample string 13</Contact>
<DateOfBirth>2025-12-07T20:54:32.8149953+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-07T20:54:32.8159963+05:30</WeddingAnniversaryDate>
</CustomMemberVm>
</CustomMembers>
<Id>1</Id>
<Type>sample string 2</Type>
</CustomBookingMemberPostVm>
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>