Announcement

Collapse
No announcement yet.

IsBlockedCallerNumber function question

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    IsBlockedCallerNumber function question

    The function IsBlocked always seems to return true. I"m probably not using it correctly, and would like some advice as how to use it.

    PHP Code:
    hs.PluginFunction("BLNetCallerId""""IsBlockedCallerNumber", {"XXXXXX0467"}) 
    Returns TRUE even though that particular number is not listed in the blocked list.

    Also is this syntax correct for using a variable for the number?

    PHP Code:
    hs.PluginFunction("BLNetCallerId""""IsBlockedCallerNumber", {myNumber}) 
    Thank you.
    Don

    #2
    Try this:

    Code:
    hs.PluginFunction("BLNetCallerId", "", "IsBlockedCallerNumber", New Object(){myNumber})
    Cheers,
    Bob
    Web site | Help Desk | Feature Requests | Message Board

    Comment


      #3
      Thanks!
      Don

      Comment

      Working...
      X