@@ -17,9 +17,7 @@ class PhoneIdClient extends _PhoneIdClient {
1717
1818 const PHONEID_STANDARD_RESOURCE = "/v1/phoneid/standard/%s " ;
1919 const PHONEID_SCORE_RESOURCE = "/v1/phoneid/score/%s " ;
20- const PHONEID_CONTACT_RESOURCE = "/v1/phoneid/contact/%s " ;
2120 const PHONEID_LIVE_RESOURCE = "/v1/phoneid/live/%s " ;
22- const PHONEID_NUMBER_DEACTIVATION_RESOURCE = "/v1/phoneid/number_deactivation/%s " ;
2321 const PHONEID_GET_INFO_PATH = "/v1/phoneid/%s " ;
2422 const PHONEID_GET_INFO_PATH_ALT = "/v1/phoneid " ;
2523
@@ -51,18 +49,6 @@ function score ($phone_number, $ucid, array $other = []) {
5149 ]));
5250 }
5351
54- /**
55- * The PhoneID Contact API delivers contact information related to the subscriber's phone number to provide another
56- * set of indicators for established risk engines.
57- *
58- * See https://developer.telesign.com/docs/rest_api-phoneid-contact for detailed API documentation.
59- */
60- function contact ($ phone_number , $ ucid , array $ other = []) {
61- return $ this ->get (sprintf (self ::PHONEID_CONTACT_RESOURCE , $ phone_number ), array_merge ($ other , [
62- "ucid " => $ ucid
63- ]));
64- }
65-
6652 /**
6753 * The PhoneID Live API delivers insights such as whether a phone is active or disconnected, a device is reachable
6854 * or unreachable and its roaming status.
@@ -75,18 +61,6 @@ function live ($phone_number, $ucid, array $other = []) {
7561 ]));
7662 }
7763
78- /**
79- * The PhoneID Number Deactivation API determines whether a phone number has been deactivated and when, based on
80- * carriers' phone number data and TeleSign's proprietary analysis.
81- *
82- * See https://developer.telesign.com/docs/rest_api-phoneid-number-deactivation for detailed API documentation.
83- */
84- function numberDeactivation ($ phone_number , $ ucid , array $ other = []) {
85- return $ this ->get (sprintf (self ::PHONEID_NUMBER_DEACTIVATION_RESOURCE , $ phone_number ), array_merge ($ other , [
86- "ucid " => $ ucid
87- ]));
88- }
89-
9064 /**
9165 * Enter a phone number with country code to receive detailed information about carrier, location, and other details.
9266 *
0 commit comments