通过RingCentral API发送传真

时间:2019-07-07 14:28:58

标签: fax ringcentral

我试图使用REST客户端在Sandbox URL上使用RingCentral的传真API:

https://platform.devtest.ringcentral.com/restapi/v1.0/account/~/extension/~/fax 具有以下内容:

Authorization: Bearer {{my access_token}}"
Content-Type: application/json

{
    "to": [{
        "phoneNumber": "<my phone number>"
    }],
    "faxResolution": "High",
    "sendTime": "2019-02-20T09:30:10.800Z"
}

但是从传真API收到 Bad Request 问题:

status code=400 content type=application/json;
{
    "message": "Bad Request",
    "errors": []
}

1 个答案:

答案 0 :(得分:1)

问题明确显示了 contentType 传真MIME正文 ...
由于传真api支持将附件作为数据。 400错误的请求错误是由于内容或哑剧类型错误引起的

Content-Type: multipart/mixed

API允许发送包含多部分请求(包含两个或更多部分)的传真消息。

ref:https://developers.ringcentral.com/api-reference#

以下参考文献对此进行了描述:

https://forums.developers.ringcentral.com/questions/517/weird-boundary-in-presence-response-when-requestin.html

https://forums.developers.ringcentral.com/questions/614/switching-to-f-form-option-for-posting-multipartmi.html?page=2&pageSize=10&sort=oldest