diff --git a/src/APIs/Domains.php b/src/APIs/Domains.php index 23eb0ba..7047bd2 100644 --- a/src/APIs/Domains.php +++ b/src/APIs/Domains.php @@ -595,6 +595,8 @@ public function deleteChildNameServer($orderId, $cns, $ip) * @param int $adminContactId * @param int $techContactId * @param int $billingContactId + * @param bool $skipIRTP + * @param bool $designatedAgent * * @return array|Exception * @throws Exception @@ -606,7 +608,8 @@ public function modifyContact( $adminContactId, $techContactId, $billingContactId, - $skipIRTP = false + $skipIRTP = false, + $designatedAgent = false ) { $params = [ 'order-id' => $orderId, @@ -614,6 +617,7 @@ public function modifyContact( 'admin-contact-id' => $adminContactId, 'tech-contact-id' => $techContactId, 'billing-contact-id' => $billingContactId, + 'designated-agent' => $designatedAgent ? 'true' : 'false', ]; if ($skipIRTP) {