Networks
How to get/remove/modify networks in the database through requests.
Last updated
How to get/remove/modify networks in the database through requests.
Last updated
This will whitelist a network for a License User allowing them to authenticate from a IP address
POST
https://localhost:8080/api/v1/license/network/add
This will whitelist a network with a provided license and IP address
license
String
The license we use to find the License User
ip
String
An IP address you would want to whitelist as a network
This will remove a network from License User networks
DELETE
https://localhost:8080/api/v1/license/network/remove
This will remove a network from the License User whitelists
license
String
The license we use to find the License User
ip
String
An IP address you want to remove from the whitelisted networks
This will provide all License User whitelisted networks
GET
https://localhost:8080/api/v1/license/network
This will provide all whitelisted networks
license
String
The license we use to find the License User