POST api/activation/userProfile
Activate user profile and in case of success user will get welcome email back. Use grant type accesskey for authorization
Request Information
URI Parameters
None.
Body Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ActivationGuid |
Activation Guid |
globally unique identifier |
You can get ActivationGuid from activation email Required |
| Password |
Password
|
string |
None. |
| PrimaryGeoPostCodeId |
City(location) Id |
integer |
You can get PrimaryGeoPostCodeId with GET api/City?countryId={countryId}&term={term}&resultItemsAmount={resultItemsAmount} Required |
| TermsId |
Id for terms and conditions |
integer |
User must accept latest terms and conditions. Use GET api/Terms?countryId={countryId} to get Id for latest terms and conditions. Required |
| RecieveNewsletter |
Receive newsletter |
boolean |
Check to true for receive newsletters from LogBuy Required |
Request Formats
application/json, text/json
{
"activationGuid": "de55a062-e2f9-4d90-9f2a-56418b6e589b",
"password": "sample string 2",
"primaryGeoPostCodeId": 3,
"termsId": 4,
"recieveNewsletter": true
}
Response Information
Response Formats
application/json, text/json
"sample string 1"