External Actions Domain
Check App configuration. You can extend it with actions.| Name | Type | Description | Example |
|---|---|---|---|
| name | string | Name | ”MyApp” |
| website | string | Website | ”http://myawesomeapp.com” |
| version | string | Version | ”1.0.0” |
| … | |||
| actions | Array | Actions | [] |
| responsibleFor | Object | Custom app responsible for | {...(any other), "automations": true} |
Action
Action model has the following structure:| Name | Type | Description | Required | Example |
|---|---|---|---|---|
| action | string | Identity of action | true | ”Give the id for action” |
| name | string | Name of action | true | ”Give the name for action” |
| description | string | Description of action | false | ”Give the description for action” |
| args | Array | Action arguments | true | [] |
Action Argument
Action argument model has the following structure:| Name | Type | Description | Required | Example |
|---|---|---|---|---|
| id | string | Identity of arg | true | ”Give the id for argument” |
| name | string | Name of arg | true | ”Give the name for argument” |
| description | string | Description of arg | false | ”Give the description for argument” |
| type | string | Type of arg | true | Currently support text and textarea |
| textTemplateSupported | boolean | Whether templating is supported | false | true or false |