getProfile

inline suspend fun B2BiClient.getProfile(crossinline block: GetProfileRequest.Builder.() -> Unit): GetProfileResponse

Retrieves the details for the profile specified by the profile ID. A profile is the mechanism used to create the concept of a private network.

Samples


fun main() { 
   //sampleStart 
   // Sample GetProfile call
val resp = b2BiClient.getProfile {
    profileId = "p-60fbc37c87f04fce9"
} 
   //sampleEnd
}