<ph type="x-smartling-placeholder"></ph>
您正在查看 Apigee Edge 文档。
转到
Apigee X 文档。 信息
简介
在为组织添加支持的币种时,您可以为 后付费开发者,如添加受支持的 币种)。信用额度适用于组织中的所有后付费开发者。在 也可以为单个后付费开发者设置信用额度,具体说明请参见 后续部分。在这种情况下,信用额度会覆盖为 指定的开发者。
使用 API 设置信用额度
要为个别开发者设置信用额度,请向以下用户发出 POST 请求:
/organizations/{org_name}/developers/{developer_id}/developer-credit-limit
,其中
{developer_id}
是开发者的电子邮件地址。当您发出请求时
您需要将赠金金额和用于
赠送金额。例如,以下请求为开发者设置了 1000 美元的信用额度:
$ 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 检索信用额度
要检索后付费开发者的信用额度,请向以下用户发出 GET 请求:
/organizations/{org_name}/developers/{developer_id}/developer-credit-limit
,其中
{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 }
后续步骤
您可以通过创收功能发布退款(仅适用于购买交易)。了解具体方法 办理退款。