账户管理
账户余量
你可以使用 API 查询账户下的剩余可用邮件封数
调用地址
| 数据中心 | URL |
|---|---|
| 新加坡 | https://email.api.engagelab.cc |
| 土耳其 | https://emailapi-tr.engagelab.com |
当使用 REST API 时,需要将选定的 base URL 与具体 API 的路径结合起来获得完整的调用地址。
POST/v1/account/quota
URL
https://email.api.engagelab.cc/v1/account/quota
https://email.api.engagelab.cc/v1/account/quota
此代码块在浮窗中显示
HTTP 请求方式
GET
GET
此代码块在浮窗中显示
请求体类型
Content-Type: application/json
Content-Type: application/json
此代码块在浮窗中显示
请求Header
| Header | 类型 | 是否必须 | 描叙 |
|---|---|---|---|
| Authorization | string | 是 | Basic base64(api_user:api_key) |
请求参数
无
响应
{
"result": {
"account_quota": 7160,
"daily_quota": 2000000,
"daily_quota_used": 0
}
}
{
"result": {
"account_quota": 7160,
"daily_quota": 2000000,
"daily_quota_used": 0
}
}
此代码块在浮窗中显示








