ProSBC:Restful API SIP Domain
Create and modify a SIP Domain in your system with RestFul API using JSON in the following format:
Important parameters in the JSON file
Add a new SIP Domain
Add a new SIP Domain with the POST command:
POST http://ProSBCIP:12358/configurations/configuration_name/sip_registration_domains/
ProSBC creates a new SIP Domain from the name in the JSON file.
Example: Using the Postman tool, the URL is:
http://192.168.1.25:12358/configurations/config_2/sip_registration_domains/
If the new SIP Domain is created successfully, the following message is returned:
Modify a SIP Domain
Modify the existing SIP Domain with the PUT command:
PUT http://ProSBCIP:12358/configurations/configurationname/sip_registration_domains/sip_domain_name
Example: Using the Postman tool, the URL is
http://192.168.1.25:12358/configurations/config_2/sip_registration_domains/TEST_DOMAIN and changed routing_method to Contact
If the update is successful, the following message is returned:
Learn more about how to use RestFul API and Postman Tool from the following link Northbound_interface:RESTful.
Last updated
Was this helpful?