While installing eSIM plan getting failure.

Hi All,
I am unable to install eSIM plan using addplan method in objective c kindly help me on this, I have used below code.
Code Block
CTCellularPlanProvisioningRequest *provRequest = [[CTCellularPlanProvisioningRequest alloc] init];
      provRequest.address = @"eSim Address";
[provisioning addPlanWith:provRequest completionHandler:^(CTCellularPlanProvisioningAddPlanResult result) {
        switch (result) {
          case CTCellularPlanProvisioningAddPlanResultUnknown:
            NSLog(@"Provisioning Unknown");
            break;
          case CTCellularPlanProvisioningAddPlanResultFail:
            NSLog(@"Provisioning Fail");
            break;
          case CTCellularPlanProvisioningAddPlanResultSuccess:
            NSLog(@"Provisioning Success");
            break;
          default:
            NSLog(@"Something went wrong, Please try again later");
            break;
        }
      }];

add eSIM support to your provision profile by raising request to Apple. Apple allows this only for network company.
While installing eSIM plan getting failure.
 
 
Q