🚗GET - Bulk User Call Forwarding Not Reachable

my_api.get.user_call_forwarding_not_reachable()

Retrieves the Forwarding Not Reachable status for the specified user

Parameters

  • user_id (str): Target User ID

Returns

  • Dict: Forwarding enabled status, and the Number to be Forwarded to.

How To Use:

from odins_spear import api

my_api= api.Api(base_url="https://base_url/api/vx", username="john.smith", password="ODIN_INSTANCE_1")
my_api.authenticate()

my_api.get.user_call_forwarding_no_answer{
    "userId"
}

Example Data Returned (Formatted)

{
  "isActive": true,
  "forwardToPhoneNumber": 1234,
  "numberOfRings": 5,
  "userId": "4001@domain.com"
}

Last updated