Client cat Options
Client cat Input Example
https://localhost/cat/Client?name=Rufus
with the corresponding output:
{
"error": 0,
"limit": 50,
"data": [
{
"clientid": 1,
"name": "Rufus",
"uname": "6.3.17 (12May13) x86_64-unknown-linux-gnu,ubuntu,12.04",
"autoprune": 1,
"fileretention": 6912000,
"jobretention": 31536000
}
],
"offset": 0
}
/cat/Client?catalog=mycat
The above returns all the Client items in the catalog named mycat.
/cat/Client?limit=15 – returns data of the first 15 clients in the default catalog
/cat/Client?offset=10&limit=15 – returns the data of the 15 clients starting at the 10th client.
/cat/Client?clientid=2 – returns all the data for client with clientid equal 2.
/cat/Client?name=Rufus – returns all the data for client with client name Rufus
/cat/Client/ - returns the data of all clients in the first catalog defined in the resources
/cat/Client?option=value[&…] – see the table above
Client cat Output Example
{
"clientid": 1,
"name": "example-client-name1",
"uname": "client environment specific information",
"autoprune": 0,
"fileretention": 5184000,
"jobretention": 15552000
}
/cat/Media/ - returns the name of all media in the first catalog
defined
/cat/Media?parameter=value[&…] - see the table below
Media cat keywords:
Go back to the Catalog Category chapter.
Go back to the REST API chapter.
Go back to the main Advanced Features Usage page.