API


14. Change Password

Description : Change Password API is used to change password member.
URL : https://sandbox.goodie.id/api-rest/member/change/password
Method : POST
Header :
No Key Value Requirement Description
1 Content-type application/x-www-form-urlencoded M Security Header
2 authToken String M authentication
3 deviceUniqueId String M Device Id

Body :
No Parameter Value Requirement Description
1 confirmPassword String M Member’s confirm password
2 memberId String M Member’s id
3 merchantId String M Id of the merchant
4 Password String M Member’s password
5 passwordOld String M Member’s old password
6 Username String M Member’s username

JSON Format :

{
    "confirmPassword": "password123",
    "memberId": "CE38F7D7-23C4-4F81-B7B6-AA4B97567F20",
    "merchantId": "5F773EA1-1E66-4F9E-B9C8-E1FA8156AD20",
    "password": "password123",
    "passwordOld": "password",
    "username": "futami@goodie.id"
}
                        

Response :
No Parameter Value Description
1 abstractResponse
2 responseStatus String See details**
3 responseMessage String See details**

JSON Format :

{
    "abstractResponse": {
        "responseStatus": "MEM902",
        "responseMessage": "Password has been change"
    }
}