getPartnership
inline suspend fun B2BiClient.getPartnership(crossinline block: GetPartnershipRequest.Builder.() -> Unit): GetPartnershipResponse
Retrieves the details for a partnership, based on the partner and profile IDs specified. 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 GetPartnership call
val resp = b2BiClient.getPartnership {
partnershipId = "ps-219fa02f5b4242af8"
}
//sampleEnd
}