POST api/Account/guest_data_update
Request Information
URI Parameters
None.
Body Parameters
guest_login_update_request| Name | Description | Type | Additional information |
|---|---|---|---|
| guest_Id | string |
None. |
|
| phone_number | string |
None. |
|
| country | string |
None. |
|
| referral_code | string |
None. |
|
| token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"guest_Id": "sample string 1",
"phone_number": "sample string 2",
"country": "sample string 3",
"referral_code": "sample string 4",
"token": "sample string 5"
}
application/xml, text/xml
Sample:
<guest_login_update_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models"> <country>sample string 3</country> <guest_Id>sample string 1</guest_Id> <phone_number>sample string 2</phone_number> <referral_code>sample string 4</referral_code> <token>sample string 5</token> </guest_login_update_request>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
guest_login_update_response| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2"
}
application/xml, text/xml
Sample:
<guest_login_update_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models"> <message>sample string 2</message> <success>true</success> </guest_login_update_response>