getBillingAdjustmentRequest

Retrieves detailed information about a specific billing adjustment request. Sellers (proposers) can use this operation to view the status and details of a billing adjustment request they submitted.

A ResourceNotFoundException is returned if the billing adjustment request does not exist or the caller does not have permission to access it.

Samples


fun main() { 
   //sampleStart 
   // Get a billing adjustment request
val resp = marketplaceAgreementClient.getBillingAdjustmentRequest {
    billingAdjustmentRequestId = "ba-1a2b3c4d5e6f7g"
    agreementId = "agmt-SvIzsqYMyQwI3GWgJAe17URx"
} 
   //sampleEnd
}