POST me/profile/update
Update profile for user
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
inDto |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "network_id": "sample string 1", "year_in_school": "sample string 2", "grad_year": "sample string 3", "answers": [ { "id": 1, "answer": "sample string 2" }, { "id": 1, "answer": "sample string 2" }, { "id": 1, "answer": "sample string 2" } ] }
application/xml, text/xml
Sample:
<UpdateProfileInDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Web.API.Models.Input"> <answers xmlns:d2p1="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO"> <d2p1:QuestionAnswerDto> <d2p1:answer>sample string 2</d2p1:answer> <d2p1:id>1</d2p1:id> </d2p1:QuestionAnswerDto> <d2p1:QuestionAnswerDto> <d2p1:answer>sample string 2</d2p1:answer> <d2p1:id>1</d2p1:id> </d2p1:QuestionAnswerDto> <d2p1:QuestionAnswerDto> <d2p1:answer>sample string 2</d2p1:answer> <d2p1:id>1</d2p1:id> </d2p1:QuestionAnswerDto> </answers> <grad_year>sample string 3</grad_year> <network_id>sample string 1</network_id> <year_in_school>sample string 2</year_in_school> </UpdateProfileInDto>
application/x-www-form-urlencoded
Sample:
Sample not available.