batchGetInvoiceProfile
inline suspend fun InvoicingClient.batchGetInvoiceProfile(crossinline block: BatchGetInvoiceProfileRequest.Builder.() -> Unit): BatchGetInvoiceProfileResponse
This gets the invoice profile associated with a set of accounts. The accounts must be linked accounts under the requester management account organization.
Samples
fun main() {
//sampleStart
// BatchGetInvoiceProfile
val resp = invoicingClient.batchGetInvoiceProfile {
accountIds = listOf<String>(
"111111111111"
)
}
//sampleEnd
}