ovh-api-bash-client/README.md

44 lines
959 B
Markdown

ovhApiBashClient
================
A bash client for OVH API (https://api.ovh.com/)
Initialize
----------
In order to create a new OVH API application, run:
```
./ovhApiBashClient.sh --initApp
```
Usage
-----
To make a basic call on GET /me just run:
```
./ovhApiBashClient.sh
```
To retrieve your domain list, run:
```
./ovhApiBashClient.sh --url "/domain"
```
To activate the monitoring on your dedicated server, run:
```
./ovhApiBashClient.sh --method PUT --url "/dedicated/server/ns00000.ovh.net" --data '{"monitoring": true}'
```
Options
-------
Possible arguments are:
```
--url <url> : the API URL to call, for example /domains (default is /me)
--method <method> : the HTTP method to use, for example POST (default is GET)
--data <JSON data> : the data body to send with the request
--init : to initialize the consumer key
--initApp : to initialize the API application
```