Enum Reference
WorkflowDeploymentStatus
The deployment status of a Workflow or WorkflowDeployment.
| Value | Description |
|---|---|
PENDING | The deployment has been submitted but is not yet confirmed onchain. |
FAILED | The deployment failed. See the deployment's errorMessage field for detail. |
ACTIVE | The workflow is deployed and actively executing. |
PAUSED | The workflow is deployed but paused; it will not execute until reactivated. |
DELETED | The workflow has been deleted from the Workflow Registry. |
WorkflowExecutionStatus
The status of a WorkflowExecution.
| Value | Description |
|---|---|
UNKNOWN | The execution's status could not be determined. |
UNSPECIFIED | No status has been set for this execution. |
TRIGGERED | The execution has been triggered but has not yet started processing. |
IN_PROGRESS | The execution is currently running. |
SUCCESS | The execution completed successfully. |
FAILURE | The execution terminated because of an error. See the execution's errors field for detail. |
WorkflowExecutionClassifiedStatus
A more granular classification of a finished execution's outcome, distinguishing who or what caused a failure.
| Value | Description |
|---|---|
UNSPECIFIED | No classification has been set. |
SUCCESS | The execution completed successfully. |
USER_ERROR | The execution failed because of an error in the workflow's own logic or configuration. |
SYSTEM_ERROR | The execution failed because of an error in the CRE platform or DON infrastructure, not the workflow itself. |
SortingOrder
Sort direction, used by the orderBy argument on list queries.
| Value | Description |
|---|---|
ASC | Ascending order. |
DESC | Descending order. |
WorkflowOrderByField
Fields that workflows can sort by.
| Value | Description |
|---|---|
NAME | Sort by workflow name. |
STATUS | Sort by deployment status. |
EXECUTED_AT | Sort by the time of the workflow's last execution. |
WorkflowDeploymentOrderByField
Fields that workflowDeployments can sort by.
| Value | Description |
|---|---|
WORKFLOW_ID | Sort by the onchain workflow identifier. |
DEPLOYED_AT | Sort by the time the deployment was created. |
WorkflowExecutionOrderByField
Fields that workflowExecutions can sort by.
| Value | Description |
|---|---|
ID | Sort by execution ID. |
STATUS | Sort by execution status. |
STARTED_AT | Sort by the time the execution started. |
CREDIT_USED | Sort by credits consumed. |
OrganizationRestrictionStatus
The access level of an Organization.
| Value | Description |
|---|---|
GATED | The organization has limited access pending closed-beta approval. |
FULL_ACCESS | The organization has full platform access. |
EntityActiveStatus
Whether an entity such as an organization or API key is active or has been removed.
| Value | Description |
|---|---|
ACTIVE | The entity is active. |
DELETED | The entity has been deleted or deactivated. |
MemberType
The role of an OrganizationAccount.
| Value | Description |
|---|---|
ROOT | The organization's root/owner account. |
ADMIN | An account with administrative permissions. |
MemberStatus
The invitation/membership state of an OrganizationAccount.
| Value | Description |
|---|---|
INVITED | The account has been invited but hasn't joined yet. |
JOINED | The account has joined the organization. |
REMOVED | The account has been removed from the organization. |
RegistryType
The kind of a Registry returned by getTenantConfig.
| Value | Description |
|---|---|
ON_CHAIN | The registry is an onchain contract. |
OFF_CHAIN | The registry is a Chainlink-hosted offchain registry. |
SecretsAuthFlow
A secrets authentication flow supported by a Registry.
| Value | Description |
|---|---|
BROWSER | Secrets are authorized through an interactive browser flow. |
OWNER_KEY_SIGNING | Secrets are authorized by signing with the workflow owner's key. |