POST api/v1/corporate-affairs/update-client-partner-detail
Request Information
URI Parameters
None.
Body Parameters
ClientPartnerDetailModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId | integer |
None. |
|
| Title | string |
None. |
|
| PartnershipActivity | string |
None. |
|
| PartnershipType | integer |
None. |
|
| GeneralPartner | string |
None. |
|
| GeneralPartnerId | integer |
None. |
|
| Partners | Collection of ClientPartnerModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClientId": 1,
"Title": "sample string 2",
"PartnershipActivity": "sample string 3",
"PartnershipType": 4,
"GeneralPartner": "sample string 5",
"GeneralPartnerId": 1,
"Partners": [
{
"ClientId": 1,
"ClientIdPartner": 2,
"ProfitPer": 3.0,
"FullName": "sample string 4"
},
{
"ClientId": 1,
"ClientIdPartner": 2,
"ProfitPer": 3.0,
"FullName": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<ClientPartnerDetailModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iPMS.Models.CorporateAffairs">
<ClientId>1</ClientId>
<GeneralPartner>sample string 5</GeneralPartner>
<GeneralPartnerId>1</GeneralPartnerId>
<Partners>
<ClientPartnerModel>
<ClientId>1</ClientId>
<ClientIdPartner>2</ClientIdPartner>
<FullName>sample string 4</FullName>
<ProfitPer>3</ProfitPer>
</ClientPartnerModel>
<ClientPartnerModel>
<ClientId>1</ClientId>
<ClientIdPartner>2</ClientIdPartner>
<FullName>sample string 4</FullName>
<ProfitPer>3</ProfitPer>
</ClientPartnerModel>
</Partners>
<PartnershipActivity>sample string 3</PartnershipActivity>
<PartnershipType>4</PartnershipType>
<Title>sample string 2</Title>
</ClientPartnerDetailModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.