updateProfile
inline suspend fun B2BiClient.updateProfile(crossinline block: UpdateProfileRequest.Builder.() -> Unit): UpdateProfileResponse
Updates the specified parameters for a profile. A profile is the mechanism used to create the concept of a private network.
Samples
fun main() {
//sampleStart
// Sample UpdateProfile call
val resp = b2BiClient.updateProfile {
businessName = "John's Shipping"
email = "john@example.com"
name = "Shipping Profile"
phone = "5555555555"
profileId = "p-60fbc37c87f04fce9"
}
//sampleEnd
}