使用信用额度管理后付费余额

您正在查看 Apigee Edge 文档。
前往 Apigee X 文档
信息

简介

为组织添加支持的币种后,您可以为后付费开发者设置信用额度(如添加支持的币种中所述)。此信用额度适用于组织中的所有后付费开发者。此外,您还可以为个人后付费开发者设置信用额度,具体如以下部分所述。在这种情况下,赠送金额上限仅会替换为指定开发者针对相应币种设置的所有上限。

使用 API 设置信用额度

如需为单个开发者设置信用额度,请向 /organizations/{org_name}/developers/{developer_id}/developer-credit-limit 发出 POST 请求,其中 {developer_id} 是开发者的电子邮件地址。发出请求时,您需要将赠送金额和赠送金额所用的币种作为查询参数指定。例如,以下请求会为开发者设置 1, 000 美元的信用额度:

$ curl -H "Content-Type:application/json" -X POST \
"https://api.enterprise.apigee.com/v1/mint/organizations/{org_name}/developers/dev7@myorg/developer-credit-limit?amount=1000&supportedCurrencyId=usd" \
-u email:password

使用 API 检索信用额度

如需检索后付费开发者的信用额度,请向 /organizations/{org_name}/developers/{developer_id}/developer-credit-limit 发出 GET 请求,其中 {developer_id} 是开发者的电子邮件地址。例如:

$ curl -H "Accept:application/json" -X GET \
"https://api.enterprise.apigee.com/v1/mint/organizations/{org_name}/developers/dev7@myorg/developer-credit-limit" \
-u email:password

响应应类似如下所示(仅显示部分响应):

{
  "developerBalance" : [ {
    "amount" : 1000.0000,
    "id" : "ddd98cd5-06bc-481b-ae42-76a7345933a9",
    "supportedCurrency" : {
      "description" : "United States Dollar",
      "displayName" : "United States Dollar",
      "id" : "usd",
      "name" : "USD",
      "organization" : {
        ...
      },
      "status" : "ACTIVE",
      "virtualCurrency" : false
    },
    "usage" : 76.6052
  } ],
  "totalRecords" : 1
}

后续步骤

您可以使用创收功能发布退款(仅限购买交易)。如需了解详情,请参阅发布退款