Aticara ByteStorm API Reference
Aticara ByteStorm API Reference
and other aticara trademarks are trademarks of Aticara Technologies PVT LTD
All other trademarks and trade names mentioned in this document are the property of their respective
holders.
Notice
The purchased products, services and features are stipulated by the contract made between Aticara and
the customer. All or part of the products, services and features described in this document may not be
within the purchase scope or the usage scope. Unless otherwise specified in the contract, all statements,
information, and recommendations in this document are provided "AS IS" without warranties, guarantees
or representations of any kind, either express or implied.
The information in this document is subject to change without notice. Every effort has been made in the
preparation of this document to ensure accuracy of the contents, but all statements, information, and
recommendations in this document do not constitute a warranty of any kind, express or implied.
http://www.aticara.com
support@aticara.com
Aticara ByteStorm API Reference
Aticara Django REST API Architecture
REST Web Service :
Representational State Transfer (REST) is a software architectural style that defines a set of
constraints to be used for creating Web services. Web services that conform to the REST architectural style,
called RESTful Web services (RWS), provide interoperability between computer systems on the Internet.
Web service APIs that adhere to the REST architectural constraints are called RESTful APIs. HTTP-based
RESTful APIs are defined with the following aspects:
With REST, networked components are a resource you request access to -- a black box whose
implementation details are unclear. The presumption is that all calls are stateless; nothing can be retained
by the RESTful service between executions.
Because the calls are stateless, REST is useful in cloud applications. Stateless components can be freely
redeployed if something fails, and they can scale to accommodate load changes. This is because any
request can be directed to any instance of a component; there can be nothing saved that has to be
remembered by the next transaction.
About Django:
Django is a Python-based free and open-source web framework, which follows the model-
template-view (MTV) architectural pattern.
It is a lightweight and standalone web server for development and testing ,support for middleware classes
that can intervene at various stages of request processing and carry out custom functions ,an interface to
Python's built-in unit test framework.
Some well-known sites that use Django include the Public Broadcasting Service,Instagram,Mozilla, The
Washington Times,Disqus,Bitbucket,and Nextdoor.
Django can be run in conjunction with Apache, Nginx using WSGI, Gunicorn, or Cherokee using flup (a
Python module).Django also includes the ability to launch a FastCGI server, enabling use behind any web
server which supports FastCGI, such as Lighttpd or Hiawatha. It is also possible to use other WSGI-
compliant web servers.Django officially supports four database backends: PostgreSQL, MySQL, SQLite, and
Oracle. Microsoft SQL Server can be used with django-mssql on Microsoft operating systems,while similarly
external backends exist for IBM Db2,SQL Anywhere and Firebird.
Page 2
Aticara ByteStorm API Reference
Aticara Django REST APIs:
Aticara provides software based 1/10/25/40/50/100 Gbps traffic emulator which can match/beat any
expensive FPGA based traffic emulator in the market in terms of throughput, performance and cost per
port.It basically has features like Bytestorm,PcapStorm ,Webstorm,Quickstorm,DDOS etc which performs
various functionalities.
Aticara needs REST APIs to compute operations that are performed by these features without the aid of
User Interface. Hence Django REST APIs became an integral part of Aticara middleware.
One of the main differences between DRF and other frameworks is that it allows developer to define URL
structure and not rely on an auto-generated one, while others automate much of the conversion from
Django models to REST endpoints, thus are less flexible. Moreover, Django REST Framework includes built-
in API browser for testing out newly developed API.
Mechanism is very simple and just like any other REST API , REST Automation User on REST Client Side will
be sending request as per his need with the help of specific URL and request pattern .Server running on the
other Side will receive this request and process it with the help of Django server which is nothing but
Aticara REST Automation Server which inturn will be connected to Aticara Backend [Aticara Dashboard
and MYSQL Database], Performs Required operation and responds back to the Client.
Django's configuration system allows third party code to be plugged into a regular project, provided that it
follows the reusable app conventions. More than 2500 packages are available to extend the framework's
original behavior, providing solutions to issues the original tool didn't tackle: registration, search, API
provision and consumption, CMS, etc.
Page 3
Aticara ByteStorm API Reference
Port ID Description
Request packets received by APIs and response packets returned by APIs must be in the JSON format.
(The format of APIs for upload and download depends on the API definitions.)
The MIME type is application/json.
All APIs use the UTF-8 encoding format.
1.3 URL
CloudOpera APIs are designed based on the concepts of RESTful APIs.
REST, a network consists of resources. Resources are identified by Uniform Resource Identifiers (URIs)
across the network. Applications from a client obtains resources through Uniform Resource Locators
(URLs).
https://ip:port/{api-root}/{external-service-name}/{version}/{rest-path}
Element Description
For example, the API for obtaining basic information about all rules is:
http://localhost:8086/rest/uam/v1/roles.
Page 4
Aticara ByteStorm API Reference
Table 1-2 describes the elements of the URL.
Page 5
Aticara ByteStorm API Reference
1.4 API Authentication
The following describes the process of API authentication:
There are two authentication modes for invoking APIs. Choose any one of them to perform authentication.
Token authentication: Invokes requests through token authentication. For details about
the toke authentication, see section "Obtaining the User Token."
AK/SK authentication: Invokes requests through Access Key ID (AK)/Secret Access Key
(SK) encryption. AK/SK authentication is more secure. For details, see section
"Obtaining a User Token Using an AK."
Step 2 A token value is returned after each successful login.
Step 3 Each request must use this token value for authentication.
1.5 Request
Request Methods
According to the REST specifications, all operations performed on resources must comply with the HTTP
specifications.
The key operations include the following: GET, PUT, POST, and DELETE. The operation performed on
resources can be classified into: create, retrieve, update, and delete (CRUD).
If the requested URL does not support this operation, status code 405 (Method Not Allowed) is
returned.
The PATCH request method is not supported.
For details about restrictions of each operation, see the following.
Page 6
Aticara ByteStorm API Reference
GET
[Use scenario] This method is used to obtain resources.
[Status code] If the request is successful, the status code 200 (OK) is returned.
The security requirement means that the operation does not change the server status. The
idempotence requirement means that relative status change is not allowed for the resource.
POST
[Use scenario] This method is used to create resources in the scenario where operations cannot be
expressed by CRUD (non-CRUD).
[Status code] If the resource is created successfully, the status code 200 (OK) or 201 (Created) is returned.
In the non-CRUD scenario, the status code 200 (OK) is returned.
[Restrictions] The request method does not meet security and idempotence requirements.
PUT
[Use scenario] This method is used to fully update resources. If the object to be updated does not exist, the
object will be created.
For example, PUT /users/admin means to create one user whose id is admin and set the user attribute
information if user admin does not exist. If user admin already exists, then all of its information is
replaced.
[Status code] If the resource is created successfully, the status code 201 (Created) is returned. If the
resource is updated successfully, the status code 200 (OK) is returned.
DELETE
[Use scenario] This method is used to delete resources.
[Status code] If the resource is deleted successfully, the status code 200 (OK) is returned. If the resource to
be deleted does not exist, the status code 204 (No Content) is returned. If a service receives the request
but the resource is not deleted immediately, the status code 202 (Accepted) is returned.
Page 7
Aticara ByteStorm API Reference
Operation severity
Table 1-4 lists the operation severity in this document.
Severity Description
1.6 Response
Response Type
Unless otherwise specified, the returned result for each request is identified with a status code. For details,
see the description of status codes.
The APIs of Aticara CloudOpera Orchestrator can be classified into synchronous APIs and asynchronous
APIs.
Synchronous APIs
For synchronous APIs, a response is returned within 30 s, and the returned result is mainly identified by
HTTP status code. For details, see the description of the related APIs.
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Cache-Control: no-cache
Content-Length: 298
{"operations" : [ {
"operation_id" : "31af59f1dc72437cb1c8f71e6e1b84a8",
"operation" : "Create",a
"result" : {
"result" : "success ",
"reason" : ""},
"user_id" : "89af59f1dc72437cb1c8f71e6e1b84by ",
Page 8
Aticara ByteStorm API Reference
"operation_content": "",
"progress" : "done",
"operate_at" : "1447259909284",
"finished_at" : "1447158572834"
"task_uri":
"/decomposer/v1/tasks/f912a4b3e1954ab5a34d1b544b4b209b"
}]}
Asynchronous APIs
Asynchronous APIs are used for operations that may take a long time, up to date “Asynchronous API” is
listed in Chapter 5.1. When receiving a request, the background service will initiate a task to perform the
expected operation, meanwhile the server end will immediately returns Status Code 202 with
“operation_id” included in the response body. The requester can initiate a GET operation with the specified
“operation _id” to obtain the execution progress of the task, the get API is described in chapter “2.1.6
Querying the operation of a service”.
("https://accessip:port/rest/servicemanager/v1/services/{serviceID}/operations/{operationID}")
2. Using the callback URL to IES, please refer to Section “5 IES Async-Job Callback Service”
Timeout Period
The REST APIs of Aticara CloudOpera have a fixed timeout period of 30s.
Status Code
Status codes
Page 9
Aticara ByteStorm API Reference
Status Code Description
304 Not Modified The resource has not been modified since
the version specified by the request
headers If-Modified-Since or If-None-
Match. In such case, there is no need to
retransmit the resource since the client still
has a previously downloaded copy.
400 Bad Request The server cannot or will not process the
request due to an apparent client error
(e.g., malformed request syntax, invalid
request message framing, or deceptive
request routing).
Page 10
Aticara ByteStorm API Reference
Status Code Description
returned.
409 Conflict
The request could not be processed
because of conflict in the request, such as
an edit conflict between multiple
simultaneous updates.
414 Request-URI Too Long The URL can contain a maximum of 2083
characters.
429 Too Many Requests The user has sent too many requests in a
given amount of time.
Page 11
Aticara ByteStorm API Reference
Status Code Description
Timeout Period
The REST APIs of Aticara CloudOpera Orchestrator have a pre-set timeout period of 30s.
Page 12
Aticara ByteStorm API Reference
Parameter Description Mandato Example
Name ry
token, which is used to
authenticate APIs. The API that
obtains the authentication token
does not require this parameter.
Page 13
Aticara ByteStorm API Reference
Parameter Name Description Mandato Example
ry
no-store: Important information is
prevented from being published
mistakenly. If this value is sent in
requests, the cache does not store
anything about the requests and
responses.
no-transform: The proxy server is
forbidden from modifying Content-
Encoding, Content-Range, and
Content-Type.
must-revalidate: If the client has
cached data, after the client obtains
the data, the client compares the
obtained data with the cached data
for verification even though the
cached data is still valid.
proxy-revalidation: If the proxy
server has cached data, after the
client obtains the data, the proxy
server compares the obtained data
with the cached data for verification
even though the cached data is still
valid.
max-age: Specifies the maximum
amount of time a resource will be
considered fresh in seconds.
min-fresh: Indicates that the client
wants a response that will still be
fresh for at least the specified
number of seconds.
max-stale: Indicates that the client is
willing to accept a response that has
exceeded its expiration time. If the
value of max-stale is specified, you
specify the time the response must
not be expired by.
Page 14
Aticara ByteStorm API Reference
1.GET reserveports
This API returns information about all the Ports that are reserved!
Request URL: Example Request:
https://accessip:port/reserveports/ Reserveports
Example Response
200 - OK
[
{
"port_id": 0,
"port_name": "Port 0",
"port_status": 1,
"port_reserve": 0,
"port_mac": "00:0c:29:fc:48:02",
"port_user": "",
"port_user_id": 1,
"port_host": "localhost",
"port_flows": 100,
"port_streams": 1,
"port_data": 0,
"port_capture": 0,
"port_stats": 0,
"port_pci": "0",
"port_feature": 0,
"port_test_id": 0,
"port_test_name": "",
"port_arp": 0,
"port_icmp": 0,
"port_speed": 10000
},
Page 15
Aticara ByteStorm API Reference
2.PUT reserveports
Thi API is to reserve the unreserved Ports.
https://accessip:port/reserveports/
curl --location --request PUT
HEADERS
"http://192.168.174.20:8080/reserveports/" \
--header "Content-Type: application/json" \
Content-Type --data "{
\"port_id\": 3,
application/json
\"port_name\": \"Port 3\",
BODY raw \"port_status\": 1,
\"port_reserve\": 1,
{ \"port_user\": \"test\",
"port_id": 1, \"port_user_id\": 99
"port_reserve": 1, }"
"port_user": "test",
"port_user_id": 99 Example Response
}
200 - OK
{
"Message": "Port Reserved Successfully."
}
3. DEL Releaseport
This API is to release the reserved ports.
https://accessip:port/releaseport/?portId=1 releaseport_200
curl --location --request DELETE
"https://accessip:port/releaseport/?portId=2"
PARAMS:
Example Response:
portId
200 - OK
1 {
"Message": "Released Port Successfully",
"Port Id": "2",
"Port Status": 1
}
Page 16
Aticara ByteStorm API Reference
4.GET createtestbed
This API returns the list of TestBeds that are created.
Example Request
Request URL:
curl --location --request GET
"https://accessip:port/createtestbed/"
https://accessip:port/createtestbed/
Example Response
200 - OK
[
{
"test_id": 1,
"feature_id": 1,
"user_id": 99,
"num_ports": 2,
"port1": 0,
"port2": 0,
"latency": 0,
"test_time": 0,
"test_name": "bbbb",
"chart_index": 0,
"test_stop_time": null,
"test_start_time": null
},
Page 17
Aticara ByteStorm API Reference
5.POST createtestbed
This API is to create Testbed with appropriate name .
Example Request
Request URL:
createtestbed_200_ok
https://accessip:port/createtestbed/
curl --location --request POST
"https://accessip:port/createtestbed/" \
HEADERS --header "Content-Type: application/json" \
--data "{
\"test_id\": 1,
Content-Type \"feature_id\": 1,
application/json \"user_id\": 99,
\"test_name\": \"ByteStorm\"
BODY raw }"
{
"test_id": 1, Example Response
"feature_id": 1, 201 - Created
"user_id": 99,
"test_name": "ByteStorm" {
"Message": "Testbed Created Successfully!",
} "Test ID": 2
}
6. DEL removeportfromtestbed
THis API is to delete the stream from a particular testbed.
Page 18
Aticara ByteStorm API Reference
7.GET addportstotestbed
This API returns the list of ports that are added to testbed.
Example Response
200 - OK
[
{
"port_id": 0,
"port_name": "Port 0",
"port_status": 1,
"port_reserve": 0,
"port_feature": 0,
"port_test_id": 0,
"port_test_name": " "
}
]
8.PUT addportstotestbed
This API is used to add ports to testbed.
Request URL: Example Request
curl --location --request PUT
https://accessip:port/addportstotestbed/ "https://accessip:port/addportstotestbed/" \
--header "Content-Type: application/json" \
HEADERS --data "{
\"port_id\": 3,
\"port_feature\": 1,
Content-Type \"port_test_id\": 2,
application/json \"port_test_name\": \"ByteStorm\"
}
BODY raw "
{ Example Response
"port_id": 1, 200 - OK
"port_feature": 1,
"port_test_id": 1, {
"port_id": 3,
"port_test_name": "ByteStorm" "port_name": "Port 3",
} "port_status": 1,
"port_reserve": 1,
"port_feature": 1,
"port_test_id": 2,
"port_test_name": "ByteStorm"
}
Page 19
Aticara ByteStorm API Reference
9.GET portconfig
This API returns port configuration information.
https://accessip:port/portconfig/ portconfig
curl --location --request GET
"https://accessip:port/portconfig/"
Example Response
200 - OK
[
{
"pb_test_id": 2,
"pb_port": 2,
"pb_user_id": 99,
"pb_hosts": 32,
"pb_csubnet": 10,
"pb_src_mac_address": "00:0c:29:11:11:11",
"pb_dst_mac_address": "00:0c:29:22:22:22",
"pb_src_ip_address": "10.0.0.1",
"pb_dst_ip_address": "20.0.0.1",
"pb_protocol": 17,
"pb_mac_addr_range": "",
"pb_ip_addr_range": "0",
"pb_ip_addr_type": 1,
"pb_mac_addr_type": 1,
"pb_ip_addr_increment_factor": 1,
"pb_mac_addr_increment_factor": 1,
"pb_streams": "1",
"loadprofile": 0,
"pb_line_rate": 5,
"pb_per_utilization": 84,
"pb_mode": 3,
"pb_crc_offload": 0,
"pb_gw": 0,
"pb_gw_ip_addr": "0",
"pb_rx_port": 3,
"pb_gw_mac": "0",
"pb_icmp_rt": 0,
"test_status": 0
},
]
Page 20
Aticara ByteStorm API Reference
10.PUT portconfig
This API is used to make port configurations..
Page 21
Aticara ByteStorm API Reference
11.GET hostconfig
This API returns Information related to Host Configuration
Example Response:
200 - OK
[
{
"pb_test_id": 2,
"pb_port": 2,
"pb_user_id": 99,
"pb_hosts": 254,
"pb_csubnet": 24,
"pb_src_mac_address": "00:0c:29:fc:48:ee",
"pb_dst_mac_address": "00:0c:29:fc:48:f8",
"pb_src_ip_address": "10.0.0.1",
"pb_dst_ip_address": "20.0.0.1",
"pb_protocol": 17,
"pb_mac_addr_range": "",
"pb_ip_addr_range": "0",
"pb_ip_addr_type": 1,
"pb_mac_addr_type": 1,
"pb_ip_addr_increment_factor": 1,
"pb_mac_addr_increment_factor": 1,
"pb_streams": "1",
"loadprofile": 0,
"pb_line_rate": 5,
"pb_per_utilization": 84,
"pb_mode": 3,
"pb_crc_offload": 0,
"pb_gw": 0,
"pb_gw_ip_addr": "10.0.0.1",
"pb_rx_port": 3,
"pb_gw_mac": "0",
"pb_icmp_rt": 0,
"test_status": 0
},
]
Page 22
Aticara ByteStorm API Reference
12.PUT HostConfig
This API is to do Host Related Configuration.
Page 23
Aticara ByteStorm API Reference
13.GET streamconfig
This API will return list of streams and its configuration details.
Request URL:
https://accessip:port/streamconfig/?TestId=2
PARAMS Example Request:
streamconfig_200ok
TestId
2 curl --location --request GET
"https://accessip:port/streamconfig/?TestId=3"
Example Response:
200 - ok
[
{
"stream_id": 1,
"stream_name": "stream1",
"protocol": 1,
"user_pre_defined": 1,
"stream_state": 1,
"ifg": 0,
"ibg": 0,
"isg": 0,
"packets_burst": 0,
"bytes_burst": 0,
"min_load": 1500,
"max_load": 0,
"pattern": 2,
"ports_selected": "0,1"
}
]
Page 24
Aticara ByteStorm API Reference
14.POST streamconfig:
This API is used to Post configure each stream in the testbed.
Page 25
Aticara ByteStorm API Reference
15.PUT streamconfig:
This API is used to configure each stream in the testbed.
Page 26
Aticara ByteStorm API Reference
.
.
.
.
.
"h4p24": "",
"h4p25": "",
"h4p26": "",
"h4p27": "",
"latency": null,
"jitter": null
}
Example Response:
testId
200 - OK
2
[
{
"Number_of_Hosts": 254,
"IP_Address_incrementing_Factor": 1,
"Start_IP_Address": "10.0.0.2",
"IP_Address_Type": 1,
"Mac_Address_incrementing_Factor": 0,
"Mac_Address_Type": 1,
"Start_Mac_Address": "00:0c:29:fc:48:02"
}
]
Page 27
Aticara ByteStorm API Reference
17.GET TrafficConfig:
This API returns the information about the traffic configuration.
https://accessip:port/trafficprofile/?testId=2&portId=2 TrafficConfig
curl --location --request PUT
HEADERS: "https://accessip:port/trafficprofile/?testId=2&portId=2" \
Content-Type --header "Content-Type: application/json" \
--data "{
application/json \"arp\": \"40%\",
\"bgp\": \"35%\",
PARAMS; \"ip\":\"25%\"
testId
}"
2
portId
2
BODY raw
{
"arp": "40%",
"bgp": "35%",
"ip":"25%"
Page 28
Aticara ByteStorm API Reference
19.GET Load Profile
https://accessip:port/loadprofileconfig/?testId=1&portI loadprofile_200ok
d=3 curl --location --request GET
"https://accessip:port/loadprofileconfig/?testId=3&portId=1"
PARAMS
Example Response:
testId
200 - OK
1
{
portId "ramp_down": 5,
"iterations": 4,
3 "ramp_up": 5,
"duration": 20,
"test_id": 3,
"port_id": 1
}
Page 29
Aticara ByteStorm API Reference
21. PUT Load Profile
This API is to create Testbed with appropriate name .
https://accessip:port/loadprofileconfig/ loadprofile_200OK
HEADERS
curl --location --request PUT "https://accessip:port/loadprofileconfig/" \
--header "Content-Type: application/json" \
Content-Type
--data "{
application/json \"test_id\": 3,
\"port_id\": 1,
BODY raw \"ramp_down\": 78,
\"ramp_up\": 34,
{ \"duration\": 25
"test_id": 3, }"
"port_id": 1,
"ramp_down": 78, Example Response
"ramp_up": 34,
"duration": 25 200 - OK
} {
"Message": "Successfully set load profile!"
}
22.GET Summary
This API displays the entire summary of configurations done for that particular testbed.
https://accessip:port/trafficprofile/?portId=2&testId=2 TrafficConfig_200Ok
curl --location --request GET
"https://accessip:port/trafficprofile/?portId=0&testId=3"
PARAMS
Example Response:
portId 200 - OK
{
2
"Port Id": "0",
testId "stream1": "100.0%"
}
2
Page 30
Aticara ByteStorm API Reference
23. PUT StartTraffic
This API starts the Traffic..
https://accessip:port/starttraffic/?TestId=2&port_data= StartTraffic_304
curl --location --request PUT
1 "https://accessip:port/starttraffic/?TestId=2&port_data=1" \
--header "Content-Type: application/json"
HEADERS
Content-Type
Example Response:
application/json
PARAMS 304 - Not Modified
{
"Message": "Traffic Started Already"
TestId }
2
port_data
1
Always 1
BODY formdata
https://accessip:port/startcapture/?TestId=2&port_capt startcapture_200_ok
ure=1
curl --location --request PUT
"https://accessip:port/startcapture/?TestId=2&port_capture=1"
PARAMS
Example Response:
TestId
200 - OK
2 {
"message": "Started capture Successfully"
port_capture }
1
Always 1
Page 31
Aticara ByteStorm API Reference
25.GET trafficstatus
This API returns the status of Traffic.
https://accessip:port/trafficstatus/?portId=1&testId=5 trafficstatus_200ok
Example Response:
portId
1 200 - OK
[
testId {
"port_id": "0",
5
"port_data": 1
},
{
"port_id": "1",
"port_data": 1
}
]
https://accessip:port/stopcapture/?TestId=2&port_capt stopcapture_304
ure=0
curl --location --request PUT
"https://accessip:port/stopcapture/?TestId=2&port_capture=1"
PARAMS
Example Response:
TestId
304 - Not Modified
2 {
"Message": "Port_capture cannot be One!!"
port_capture }
0
Always 0
Page 32
Aticara ByteStorm API Reference
https://accessip:port/stoptraffic/?TestId=1&port_data= stoptraffic_304
0
curl --location --request PUT
"https://accessip:port/stoptraffic/?TestId=1&port_data=0"
PARAMS:
Example Response:
TestId
304 - Not Modified
1 {
"Message": "Traffic Stopped Already"
port_data }
0
Always 0
28.POST displaystats
This API displays Statistics data of the test run..
https://accessip:port/displaystats/?port_1=0&port_2=1& displaystats_200Ok
TestId=5
port_2
1 [
{
TestId "Type": "Aggregate Statistics"
5 },
{
"tx_tpkts": 132606217,
"avg_txbits": 18898747,
"rx_tbits": 8192626880,
"tx_tbits": 7956372720,
"avg_txpkts": 314979,
"rx_tpkts": 136543783,
Page 33
Aticara ByteStorm API Reference
"avg_rxpkts": 324332,
"avg_rxbits": 19459921,
"port_id": 0
},
{
"tx_tpkts": 126728547,
"avg_txbits": 18061075,
"rx_tbits": 8212290366,
"tx_tbits": 7603712820,
"avg_txpkts": 301017,
"rx_tpkts": 136544681,
"avg_rxpkts": 324334,
"avg_rxbits": 19506627,
"port_id": 1
}
]
Example Response:
PARAMS:
200 - OK
{
testId "Message": "Test Bed Successfully Deleted"
}
1
testName
ByteStorm
BODY formdata
Page 34
Aticara ByteStorm API Reference
30. DEL DeleteLogs
Request URL: Example Request:
DeleteLogs_400BadRequest
https://accessip:port/deletelogs/?filename=Report_sam curl --location --request DELETE
ple_2019_08_26_10_41_06.zip "https://accessip:port/deletelogs/?filename=Report_sample_2019_08_2
6_10_41_06.zip"
CONTACT US:
demo@aticara.com
sales@aticara.com
www.aticara.com
©2019 Aticara Technologies & systems Pvt Ltd . All rights reserved. Aticara reserves the right to make design changes without notice. As we are
always seeking to improve our products, the information in this document gives only a general indication of the product capacity, performance and
suitability, none of which shall form part of any contract. All trademarks are acknowledged.
Page 35