<ph type="x-smartling-placeholder"></ph>
현재 Apigee Edge 문서를 보고 있습니다.
Apigee X 문서. 정보
소개
조직에서 지원되는 통화를 추가하면 지원되는 앱 추가에 설명된 대로 후불 개발자 통화)을 입력합니다. 신용 한도는 조직의 모든 후불 개발자에게 적용됩니다. 포함 또한 참조하세요 이 경우 신용 한도는 지정할 수 있습니다.
API를 사용하여 신용 한도 설정
개별 개발자의 신용 한도를 설정하려면 POST 요청을 발행하세요.
/organizations/{org_name}/developers/{developer_id}/developer-credit-limit
, 각 항목의 의미는 다음과 같습니다.
{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
, 각 항목의 의미는 다음과 같습니다.
{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 }
다음 단계
수익 창출을 사용하여 환불 (구매 거래만 해당)을 게시할 수 있습니다. 자세히 알아보기: 환불 게시