deletePartnership
inline suspend fun B2BiClient.deletePartnership(crossinline block: DeletePartnershipRequest.Builder.() -> Unit): DeletePartnershipResponse
Deletes the specified partnership. A partnership represents the connection between you and your trading partner. It ties together a profile and one or more trading capabilities.
Samples
fun main() {
//sampleStart
// Sample DeletePartnership call
b2BiClient.deletePartnership {
partnershipId = "ps-219fa02f5b4242af8"
}
//sampleEnd
}