通过 RingCentral 发送传真 API
Sending Fax by RingCentral API
我尝试使用 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:
status code=400 content type=application/json;
{
"message": "Bad Request",
"errors": []
}
问题清楚地显示了 contentType 或 fax MIME body...
由于传真 api 支持附件作为数据。 400 Bad request error是由于错误的内容或mime类型造成的
Content-Type: multipart/mixed
API 允许使用包含两个或更多部分的多部分请求发送传真消息。
参考:https://developers.ringcentral.com/api-reference#
以下参考文献描述相同:
我尝试使用 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:
status code=400 content type=application/json;
{
"message": "Bad Request",
"errors": []
}
问题清楚地显示了 contentType 或 fax MIME body...
由于传真 api 支持附件作为数据。 400 Bad request error是由于错误的内容或mime类型造成的
Content-Type: multipart/mixed
API 允许使用包含两个或更多部分的多部分请求发送传真消息。
参考:https://developers.ringcentral.com/api-reference#
以下参考文献描述相同: