Is it Possible to Retrieve Output Props from the App Actions API Similar to Configurable Props?

This topic was automatically generated from Slack. You can find the original thread here.

Hi,
Just like the App Actions API provides configurable_props, is it also possible to retrieve the output_props (returned after a successful execution of an action)?

https://api.pipedream.com/v1/connect/<project-id>/actions?app=slack&limit=1 :

{
    "page_info": {
        "total_count": 33,
        "count": 1,
        "start_cursor": "cGNfNzNJWXdMOQ",
        "end_cursor": "cGNfNzNJWXdMOQ"
    },
    "data": [
        {
            "name": "Upload File",
            "description": "Upload a file. [See the documentation](https://api.slack.com/messaging/files#uploading_files)",
            "component_type": "action",
            "version": "0.1.1",
            "key": "slack-upload-file",
            "configurable_props": [
                {
                    "name": "slack",
                    "type": "app",
                    "app": "slack"
                },
                {
                    "name": "conversation",
                    "type": "string",
                    "label": "Channel",
                    "description": "Select a public or private channel, or a user or group",
                    "remoteOptions": true
                },
                {
                    "name": "content",
                    "label": "File Path or URL",
                    "description": "The file to upload. Provide either a file URL or a path to a file in the `/tmp` directory (for example, `/tmp/myFile.txt`)",
                    "type": "string"
                },
                {
                    "name": "initialComment",
                    "type": "string",
                    "label": "Initial Comment",
                    "description": "Will be added as an initial comment before the image",
                    "optional": true
                },
                {
                    "name": "syncDir",
                    "type": "dir",
                    "accessMode": "read",
                    "sync": true,
                    "optional": true
                }
            ],
            "stash": "optional"
        }
    ]
}

Unfortunately not. The output of an action execution is often dependent on the specific inputs, so we don’t currently have a consistent schema defined for action executions.

ooh okay, thank you answering my query though…:slightly_smiling_face: