deleteProfile
inline suspend fun B2BiClient.deleteProfile(crossinline block: DeleteProfileRequest.Builder.() -> Unit): DeleteProfileResponse
Deletes the specified profile. A profile is the mechanism used to create the concept of a private network.
Samples
fun main() {
//sampleStart
// Sample DeleteProfile call
b2BiClient.deleteProfile {
profileId = "p-60fbc37c87f04fce9"
}
//sampleEnd
}