POST api/Account/UpdateAccount
Request Information
URI Parameters
None.
Body Parameters
SignUpModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountKey | string |
None. |
|
| EntityKey | string |
None. |
|
| BranchKey | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| MobileNumber | string |
None. |
|
| EmailAddress | string |
None. |
|
| MainSpecialityKey | string |
None. |
|
| PaymentMethodId | integer |
None. |
|
| CountryPaymentMethodId | integer |
None. |
|
| AppVersion | string |
None. |
|
| CarePlansProductLineIds | Collection of integer |
None. |
|
| VezeetaBookProductLineIds | Collection of integer |
None. |
|
| SelectedProductLines | Collection of SelectedProductLineModel |
None. |
|
| SenderName | string |
None. |
|
| IsHomeVisit | boolean |
None. |
|
| ClinicKey | string |
None. |
|
| ExaminationRoomKey | string |
None. |
|
| UserToken | string |
None. |
|
| EntitySignUpTypeId | integer |
None. |
|
| MobileNumberCountryCodeId | integer |
None. |
|
| oldEntityListingEmail | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AccountKey": "sample string 1",
"EntityKey": "sample string 2",
"BranchKey": "sample string 3",
"FirstName": "sample string 4",
"LastName": "sample string 5",
"MobileNumber": "sample string 6",
"EmailAddress": "sample string 7",
"MainSpecialityKey": "sample string 8",
"PaymentMethodId": 9,
"CountryPaymentMethodId": 10,
"AppVersion": "sample string 11",
"CarePlansProductLineIds": [
1,
2
],
"VezeetaBookProductLineIds": [
1,
2
],
"SelectedProductLines": [
{
"ProductLineId": 1,
"ProductLinePriceId": 2,
"CountryProductLinePriceId": 3
},
{
"ProductLineId": 1,
"ProductLinePriceId": 2,
"CountryProductLinePriceId": 3
}
],
"SenderName": "sample string 12",
"IsHomeVisit": true,
"ClinicKey": "sample string 14",
"ExaminationRoomKey": "sample string 15",
"UserToken": "sample string 16",
"EntitySignUpTypeId": 1,
"MobileNumberCountryCodeId": 1,
"oldEntityListingEmail": "sample string 17"
}
application/xml, text/xml
Sample:
<SignUpModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VDoctorsApp.Models">
<AccountKey>sample string 1</AccountKey>
<AppVersion>sample string 11</AppVersion>
<BranchKey>sample string 3</BranchKey>
<CarePlansProductLineIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:long>1</d2p1:long>
<d2p1:long>2</d2p1:long>
</CarePlansProductLineIds>
<ClinicKey>sample string 14</ClinicKey>
<CountryPaymentMethodId>10</CountryPaymentMethodId>
<EmailAddress>sample string 7</EmailAddress>
<EntityKey>sample string 2</EntityKey>
<EntitySignUpTypeId>1</EntitySignUpTypeId>
<ExaminationRoomKey>sample string 15</ExaminationRoomKey>
<FirstName>sample string 4</FirstName>
<IsHomeVisit>true</IsHomeVisit>
<LastName>sample string 5</LastName>
<MainCountrySpecialityKey>sample string 8</MainCountrySpecialityKey>
<MobileNumber>sample string 6</MobileNumber>
<MobileNumberCountryCodeId>1</MobileNumberCountryCodeId>
<PaymentMethodId>9</PaymentMethodId>
<SelectedProductLines>
<SelectedProductLineModel>
<CountryProductLinePriceId>3</CountryProductLinePriceId>
<ProductLineId>1</ProductLineId>
<ProductLinePriceId>2</ProductLinePriceId>
</SelectedProductLineModel>
<SelectedProductLineModel>
<CountryProductLinePriceId>3</CountryProductLinePriceId>
<ProductLineId>1</ProductLineId>
<ProductLinePriceId>2</ProductLinePriceId>
</SelectedProductLineModel>
</SelectedProductLines>
<SenderName>sample string 12</SenderName>
<UserToken>sample string 16</UserToken>
<VezeetaBookProductLineIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:long>1</d2p1:long>
<d2p1:long>2</d2p1:long>
</VezeetaBookProductLineIds>
<oldEntityListingEmail>sample string 17</oldEntityListingEmail>
</SignUpModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |