Dashboard Statistics Overview

Partners

Active

ID Name

Users who can edit keys?

managers
editors
processes

Keys manage license keys

Active keys

License holder Domains Key Type State Size Version Created Expire

Deleted keys

License holder Domains Key Type Size Version Created

Expired keys

License holder Domains Key Type Size Version Created

Enter one or two domains.

Enter custom JSON data.

When a trial key period ends.

Enter one or two domains.

Enter custom JSON data.

When a trial key period ends.

Audit log what happened when

Webhooks hook into SimplyEdit

Help

Getting license key information

	curl -u user:password 
		 -X GET https://api.simplyedit.io/0/keys/serious-competition-4910

Listing your keys

	curl -u user:password
		 -X GET https://api.simplyedit.io/0/keys/

Create a new key

	curl -u user:password
		 -X POST
		 -d [email protected]
		 -d hosts[0]=example.com
		 -d custom={}
		 -d type=license
		 -d target=small
		 https://api.simplyedit.io/0/keys/

Update an existing key

	curl -u user:password
		 -X PUT 
		 -H "Content-type: application/json"
		 -d @data.json
		 https://api.simplyedit.io/keys/serious-competition-4910
data.json
	{
		"email": "[email protected]",
		"hosts": [
			"example.com",
			"alternate.org"
		],
		"custom": {}
	}