ContentAction Data Type

Information related to the different actions that can be taken in current state. See ParametersAction, ChangeAction or ApprovalAction subtypes

Properties
name data type description
type string

"parameters | change | approval", depending on the type, different information will be provided.

See ParametersAction, ChangeAction or ApprovalAction subtypes

actions array of string

List of available actions depending on the action type:

  • If type is "approval" some of the following available: approve, reject, assign, unassign
  • If type is "change": change

Example

{
  "type" : "...",
  "actions" : [ "...", "..." ]
}