Networks

How to get/remove/modify networks in the database through requests.

Adding a Network

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

Query Parameters

Name
Type
Description

license

String

The license we use to find the License User

ip

String

An IP address you would want to whitelist as a network

{
    // Response
}

Removing 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

Query Parameters

Name
Type
Description

license

String

The license we use to find the License User

ip

String

An IP address you want to remove from the whitelisted networks

{
    // Response
}

💽 Getting all Networks

This will provide all License User whitelisted networks

GET https://localhost:8080/api/v1/license/network

This will provide all whitelisted networks

Query Parameters

Name
Type
Description

license

String

The license we use to find the License User

Last updated