API Reference
Log In

API Keys

Overview

API keys authenticate and authorize users to access a range of Modzy APIs, depending on the roles assigned to them. Roles are explained in detail in our Authorization section.

Team keys are user’s own API keys and should not be shared. To facilitate shared credentials, service accounts, or other such paradigms, users may be create projects, for which they are responsible.

Projects have a project key that can complete full job lifecycles and may be shared by multiple project members.

The keys object

{
  "prefix": "...",
  "name": "...",
  "description": "...",
  "isDefault": false,
  "isHighPriority": false,
  "status": "...",
  "createdAt": "...",
  "lastActiveDateTime": "...",
  "submittedJobs": 0,
  "retrieved": true,
  "roles": [],
  "labels": [],
  "keyType": "...",
  "account": {},
  "user": {}
}
ParameterTypeDescription
prefixstringThe visible part of the API key ID. It’s unique and it may show up in pages, URIs, and requests. Used to identify the key, it’s unable to perform API requests by itself.
namestringThe API key’s name.
descriptionstringThe API key’s usage description. Defaults to null.
isDefaultbooleanDefines if an API key is the user key. The value for user keys is true.
isHighPrioritybooleanThe API key’s priority to run jobs within a job queue. Defaults to false.
statusstringThe API key’s status. Values can be Active, Inactive, Pending, Rejected, or Deleted.
createdAtstringThe API key’s creation date in ISO8601 (YYYY-MM-DDThh:mm:ss.sTZD) format.
lastActiveDateTimestringContains the last time the API key sent a request in ISO8601 (YYYY-MM-DDThh:mm:ss.sTZD) format.
submittedJobsnumberThe API key’s submitted jobs
retrievedbooleanIt is set to true when the user retrieves the API key.
rolesarrayAn array that contains all the role objects.
labelsarrayAn array that contains all the label objects.
keyTypestringDefines if an API key is a user key (user) or a project key (system).
accountobjectAn object that contains the account’s parameters.
userobjectAn object that contains all the user’s parameters.