NAME
  landscape-api - Command-line client for the Landscape server API

SYNOPSIS

  landscape-api [general options] action [action options]

DESCRIPTION

landscape-api is a simple command-line tool that can be used to interact with
a Landscape Server (LDS) installation using its API.

Each API method is called an action and it has its own specific parameters.
To list all available actions, just run landscape-api without any arguments.

GENERAL OPTIONS
  -h, --help       show this help message and exit
  --key KEY        The Landscape access key to use when making the API
                   request. It defaults to the environment variable
                   LANDSCAPE_API_KEY if not provided.
  --secret SECRET  The Landscape secret key to use when making the API
                   request. It defaults to the environment variable
                   LANDSCAPE_API_SECRET if not provided.
  --uri URI        The URI of your Landscape endpoint. It defaults to the
                   environment variable LANDSCAPE_API_URI if not provided.
  --json           Output directly the JSON structure instead of the Python
                   representation.
  --ssl-ca-file SSL_CA_FILE  SSL CA certificate to validate server. If not
                   provided, the SSL certificate provided by the server
                   will be verified with the system CAs. It defaults to
                   the environment variable LANDSCAPE_API_SSL_CA_FILE if
                   not provided.


The KEY and SECRET values can be obtained by logging in on Landscape and going
to the user settings page.

The URI is the same one used to access Landscape but with "/api/" appended.
For example: https://landscape.example.com/api/

ACTIONS
  To obtain help about a specific action, use the "help" command like this:

  landscape-api help <action>
 
AUTHOR
  Landscape Development Team <landscape-team@canonical.com>

