KellPro API Reference Guide

api.kellpro.com/v2

GET | POST | DELETE access

This is a specifically authenticated resource that can be used by KellPro to list the keys for an account, as well as grant or revoke access to the API.

To request this resource, the key provided must be explicitly granted access to the resource.

Resource URL

https://api.kellpro.com/v2/access.format

Parameters

active Optional

Used to filter the response down to active or non-active API keys.

Example: true | false

application Optional

Used to specify the application the key is being requested or generated from.

Example: okcr | odcr

application_id Optional

Used to specify the user ID for the user in the application where the key is being requested or requested.

Example: 20001

Example Request

GET https://api.kellpro.com/v2/access.json?casekey=019BCM++0300210

[
	{
		"id": "1",
		"key": "1234567890abcdefghijklmnopqrstuv",
		"application": "odcr",
		"application_id": "20001",
		"creation_date": "2012-06-25 15:24:41.757",
		"active": "1",
		"transaction_counter": "619"
	},
	{
		"id": "2",
		"key": "1234567890abcdefghijklmnopqrstuv",
		"application": "okcr",
		"application_id": "20001",
		"creation_date": "2012-07-03 12:09:18.303",
		"active": "1",
		"transaction_counter": "149"
	}
]