The following API call enables to set user profile data.
Resource URL
/api/1.0/profile/set
Resource Information
| Response formats | JSON |
| Response code | 200 |
| Requires authentication? | Yes |
| HTTP Method | POST |
Parameters
| Name | Type | Default Value | Validation | Description |
name optional | string | - | length[1, 511] | name of current user's profile. |
optional | string | - | email of current user's profile. | |
password optional | base64 string | - | password | password of current user's profile. |
language optional | string | - | language | language of current user's profile. |
Example Request URL
Example Result
{
"name": <string>,
"email": <string>,
"language": <string>
}
Add Comment