API


3. Verification Code

Description : Verification API is used to verification the new member in merchant portal.
URL : https://sandbox.goodie.id/api-rest/member/registration/verification
Method : POST
Header :
No Key Value Requirement Description
1 Content-type application/json M Security Header

Body :
No Parameter Value Requirement Description
1 userName String M Member’s username
2 Code String M Member’s code
3 merchantId String M Id of the merchant

JSON Format :

{
    "username" : "futami@goodie.id",
    "code" : "4231",
    "merchantId" : "5F773EA1-1E66-4F9E-B9C8-E1FA8156AD20"
}
                        

Response :
No Parameter Value Description
1 referralPoint Int Referral Point
2 abstractResponse
3 responseStatus String See details**
4 responseMessage String see details**

JSON Format :

{
    "referralPoint": 0,
    
    "abstractResponse": {
            "responseStatus": "INQ000",
            "responseMessage": "Inquiry success"
    }
}