# 設定_同步潮汐 **API 修改紀錄** |版本|日期|備註| | ------------ |------------ |------------ | | v1 |2024/07/04| 發佈 | **設定_同步潮汐** 設定_同步潮汐 #### 網址 https://{domain}/api/v1/member-to-device/sync-tide #### Http Method GET #### HTTP Header accept-language : language code apikey : apk key #### Query Params |欄位名稱|必填|型態|欄位|備註| | ------------ | :-----------: |:-----------: |------------ |------------ | |latitude|Y|float|緯度|60.936 |longitude|Y|float|經度|5.114 |start|Y|string|開始日期|2024-07-04 #### HTTP Body 傳入參數 |欄位名稱|必填|型態|欄位|備註| | ------------ | :-----------: |:-----------: |------------ |------------ | #### HTTP Response 回傳參數 |Name|Type|說明| | ------------ | ------------ |------------ | |result |string |下載網址 | #### Request Header Authoriztion ```json { "accept-language" : "en", //or 'zh_tw' "apikey" : "api key string" } ``` #### Json Example Response Json Success ```json { "status": true, "code": 200, "message": "success", "result": "https://...." } ``` Response Json Error ```json { "status": false, "message": "No Data", "code": 400 } ```