🕵️
The Warden
  • 🕵️The Warden
  • Quick Start
  • API References
    • Configuration
    • Authentication
    • Users
    • Networks
Powered by GitBook
On this page
  • Adding a Network
  • Removing a Network
  • Getting all Networks
  1. API References

Networks

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

PreviousUsers

Last updated 2 years ago

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
}
{
    // 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
}
{
    // Response
}

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

Getting all Networks

✅
❌
💽