# AI 傳送資料 **Base Url: https://service.didigo.app/ai** AI API文檔: [https://ai.zchengai.com/apidoc/index.html#/](https://ai.zchengai.com/apidoc/index.html#/api?appKey=api&key=app%255Capi%255Ccontroller%255CUser%2540checkInV2&title=%25E4%25BC%259A%25E5%2591%2598%25E7%25AD%25BE%25E5%2585%25A5(%25E7%2599%25BB%25E5%25BD%2595%25E5%2592%258C%25E6%25B3%25A8%25E5%2586%258CV2%25E7%2589%2588%25E6%259C%25AC%25E7%2599%25BB%25E5%25BD%2595%25E5%258D%25B3%25E6%25B3%25A8%25E5%2586%258C)&shareKey=) --- - **`[POST]` (接收修改語音資料路徑)** | Description | 修改語音 | | --- | --- | | Auth Required | No | | POST Type | JSON | Request | Paramater | Type | Required | Place | Description | | --- | --- | --- | --- | --- | | `voice_id` | String | Yes | `Body` `JSON` | 對應語音檔id | | `status` | String | Yes | `Body` `JSON` | 更新狀態 | Respone | Paramater | Type | Description | | --- | --- | --- | | `code` | String | 回傳電文狀態 | | `voice_id` | String | 對應語音檔id | - ✳️ Example ```json { "voice_id": "f6b3e123456789abcdef", "status": "active" } ``` - **✅ Response 200** ```json { "code": "200", "voice_id": "f6b3e123456789abcdef" } ``` --- - **`[POST]` (接收修改數字人影片資料路徑)** | Description | 修改數字人 | | --- | --- | | Auth Required | No | | POST Type | JSON | Request | Paramater | Type | Required | Place | Description | | --- | --- | --- | --- | --- | | `digital_id` | String | Yes | `Body` `JSON` | 對應數字人影片id | | `status` | String | Yes | `Body` `JSON` | 更新狀態 | | `url` | String | Yes | `Body` `JSON` | 影片連結 | | `time` | String | Yes | `Body` `JSON` | 影片時長(秒) | | `stream_url` | String | Yes | `Body` `JSON` | 串流連結 | Respone | Paramater | Type | Description | | --- | --- | --- | | `code` | String | 回傳電文狀態 | | `digital_id` | String | 對應數字人影片id | - ✳️ Example ```json { "digital_id": "4f17c3a9b7e84e3e891e3cf2f01a66c5", "status": "active", "url": "https://example.com/video.mp4", "stream_url": "http://stream.didigo.app/mistapi/url/xxx", "time": "7.3" } ``` - **✅ Response 200** ```json { "code": "200", "digital_id": "4f17c3a9b7e84e3e891e3cf2f01a66c5", } ``` ---