Authorization

Authorization in JSON-RPC API

API access requires authorization.

Create an API user in the Cove Data Protection Management Console, then use the generated token to authorize API requests. See the user management section in the main User Guide for detailed information on managing users.

Add API Users

Create API users for your company or your customers from the Cove Management Console.

Visa (session token)

In a response to your authorization request (Login), you will get a visa. This is a required parameter for all further requests. The visa stays valid for 15 minutes.

📘

Each response contains a new visa. You can use visas from previous calls to keep the visa chain uninterrupted. If the interval between service calls exceeds 15 minutes, you will need to repeat the Login request and start a new visa chain.

Required parameters

ParameterDescriptionType/Supported values
partnerThe name of the customer you want to log in understd::string String
usernameYour email address for access to the servicestd::string String
passwordYour password for access to the servicestd::string String

Sample request

{
    "jsonrpc":"2.0",
    "method":"Login",
    "params":{
	    "partner":"Smart Telecom Inc.",
	    "username":"[email protected]",
	    "password":"sec1234!6"
    },
    "id":"1"
}

Sample response

{
    "id": "1",
    "jsonrpc": "2.0",
    "result": {
	"result": {
		"EmailAddress": "[email protected]",
		"FirstLoginTime": 1464945879,
		"FirstName": "Christine",
		"Flags": [
		    "AllowApiAuthentication"
		],
		"FullName": "Smith",
		"Id": 50193,
		"LastLoginTime": 1512383091,
		"Name": "[email protected]",
		"PartnerId": 33491,
		"Password": null,
		"PhoneNumber": "",
		"RoleId": 1,
		"Title": "Reseller",
		"TwoFactorAuthenticationStatus": "Enabled"
	}
    },
    "visa": "{{visa}}"
}

Did this page help you?