Objetos
4 min
Get Objects
Gets the list of objects in a profile of a given device
GET
https://api.fsflt.net/panel/device/objects/list
curl --location --request GET 'https://api.fsflt.net/panel/device/objects/list' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{"device_id":"string","customer_code":"Number","profile_code":"Number"}'Add IP Address
Add a new IP address in a profile for a specific device
POST
https://api.fsflt.net/panel/device/objects/ip/add
curl --location --request POST 'https://api.fsflt.net/panel/objects/ip/add' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{"device_id":"String","customer_code":"Number","ip":"String","profile_code":"Number"}'Add Range IP
Add a new range of IP addresses in a profile for a specific device
POST
https://api.fsflt.net/panel/device/objects/rangeip/add
curl --location --request POST 'https://api.fsflt.net/panel/objects/rangeip/add' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{"device_id":"String","customer_code":"Number","ip_start":"String","ip_end":"string","profile_code":"Number"}'Add CIDR
Add CIDR in a profile for a specific device
POST
https://api.fsflt.net/panel/device/objects/cidr/add
curl --location --request POST 'https://api.fsflt.net/panel/objects/cidr/add' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{"device_id":"String","customer_code":"Number","cidr":"String","profile_code":"Number"}'Remove IP Address
Remove IP address from profile for a specific device
POST
https://api.fsflt.net/panel/device/objects/ip/remove
curl --location --request POST 'https://api.fsflt.net/panel/objects/ip/remove' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{"device_id":"String","customer_code":"Number","ip":"String"}'Remove Range IP
Removes a range of IP addresses in a profile for a specific device
POST
https://api.fsflt.net/panel/device/objects/rangeip/remove
curl --location --request POST 'https://api.fsflt.net/panel/objects/rangeip/remove' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{"device_id":"String","customer_code":"Number","ip_start":"String","ip_end":"string"}'Remove CIDR
Removes CIDR in a profile for a specific device
POST
https://api.fsflt.net/panel/device/objects/cidr/remove
curl --location --request POST 'https://api.fsflt.net/panel/objects/cidr/remove' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{"device_id":"String","customer_code":"Number","cidr":"String","profile_code":"Number"}'