# 會員註冊信箱驗證 **會員註冊流程,使用一般帳號註冊,EMAIL接收到驗證碼後,填入驗證** #### 網址 https://{domain}/api/v1/member/check #### Http Method POST #### HTTP Header accept-language : language code apikey : apk key #### HTTP Request Body 傳入參數 |欄位名稱|必填|型態|欄位|備註| | ------------ | :-----------: |:-----------: |------------ |------------ | |member_id |Y |int |會員ID | | |code |Y |string |驗證碼 | | #### HTTP Response 回傳參數 |Name|Type|說明| | ------------ | ------------ |------------ | #### Request Header Authoriztion ```json { "accept-language" : "en", //or 'zh_tw' "apikey" : "api key string" } ``` #### Json Example Request Json ```json { "member_id": 7, "code": "1234" } ``` Response Json Success ```json { "status": true, "code": 200, "message": "驗證成功" } ``` Response Json Error ```json { "status": false, "code": 400, "message": "認證碼有誤" } ```