概览
本指南将带你通过 Fax.Plus API 购买传真号码。 您将学习如何检查您的余额,找到可用的数字,并完成购买过程。
必备条件
- 活跃的 Fax.Plus 企业账户
- API 访问凭据
- 购买所需的足够账户余额
步进指南
-
请检查您的账户余额
在开始购买之前,请确认您的账户中是否有足够的资金。 Fax.Plus API 只能使用您的帐户余额购买。GET /v3/shop/bance
响应示例:
了解更多: 获取帐户余额 - 传真。 lus API
"amount": 100,
"货币": "USD"
}
Tip: Make sure your balance covers the cost of the number you want to purchase. 如果您需要添加资金,请访问 app.fax.plus
-
查看可用的国家
GET /v3/shop/numbers/country
了解更多: 列出国家 - 传真。 lus API
目前通过 Fax.Plus API 的传真号码可用于:
- 下列国家代表出席了会议:
- :加拿大:加拿大
-
Find available areas
Once you've selected a country, you can view available geographic areas where fax numbers can be purchased.GET /v3/shop/numbers/countries/{country_code}/areas
Example for US areas:GET /v3/shop/numbers/countries/US/areas
Learn more: List areas - Fax.Plus API -
Search for available numbers
Search for fax numbers using country and area filters:GET /v3/shop/numbers/countries/{country_code}/areas/{calling_code}/numbers
Example search for numbers in New York (area code 212):GET /v3/shop/numbers/countries/US/areas/212/numbers
Learn more: List available numbers - Fax.Plus API -
购买数字
一旦您找到了您所需的数字 您可以立即购买:POST /v3/shop/number s/购买
Response
"item_id": "<string>"
}
"number": "<string>"
}
重要笔记
- 余额要求:在尝试购买之前确保您有足够的余额。
- 地理可得性:目前只有美国和加拿大才有这一数字。
- 支付方式:购买只能使用您的帐户余额。
- 购买失败:如果您的余额不足,购买将失败。
了解更多: 购买数字 - Fax.Plus API
故障排除
共同问题和解决办法
-
余额不足
- 解决方案: 通过 app.fax.plus web 界面添加资金。
- 号码不再可用
- 解决方案: 数字是实时分配的。 如果购买失败,因为号码不再可用,执行新的搜索并尝试不同的号码。
- 无效的区域代码
- Solution: Double-check the area code using the areas endpoint before searching for numbers.