# Conveyor

Conveyor is a platform that automates security reviews by providing a Trust Center, AI-driven questionnaire automation, and integrations with various tools to streamline compliance processes.

- **Category:** security & identity tools
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 25
- **Triggers:** 0
- **Slug:** `CONVEYOR`
- **Version:** 20260312_00

## Tools

### Delete a Conveyor document

**Slug:** `CONVEYOR_DELETE_DOCUMENT`

Tool to delete a specific document. Use when you need to remove a document by its ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `document_id` | string | Yes | Unique identifier (UUID) of the document to delete. Get this from CONVEYOR_GET_DOCUMENTS action. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete folder

**Slug:** `CONVEYOR_DELETE_FOLDER`

Permanently deletes a folder from the Conveyor Exchange by its UUID. Use GET_FOLDERS first to retrieve the folder_id. This action is irreversible.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `folder_id` | string | Yes | UUID of the folder to delete. Obtain this from the GET_FOLDERS action or from a previous POST_FOLDER response. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get all access groups

**Slug:** `CONVEYOR_GET_ACCESS_GROUPS`

Tool to retrieve all access groups for a program. Use when you need to fetch the complete list of access groups configured in the Conveyor Exchange.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Authorization Request

**Slug:** `CONVEYOR_GET_AUTHORIZATION_REQUEST`

Retrieves details of a specific authorization request from Conveyor Exchange by its ID. Use this to get information about a pending or processed access request, including the requestor's email, message, status, and associated dataroom.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `authorization_request_id` | string | Yes | The unique identifier (UUID) of the authorization request to retrieve. Can be obtained from the list authorization requests endpoint. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Authorization Requests

**Slug:** `CONVEYOR_GET_AUTHORIZATION_REQUESTS`

Retrieves authorization requests from Conveyor's Trust Center. Use this tool to: - List all authorization requests (no filters) - Get pending requests awaiting approval (status='requested') - Filter by specific status ('initial', 'requested', 'approved', 'ignored') - Filter by requester email address Returns a list of authorization requests with details including requester email, status, timestamps, and optional CRM links.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | No | Filter authorization requests by the requester's email address. |
| `status` | string | No | Filter by authorization request status. Valid values: 'initial', 'requested', 'approved', 'ignored'. Use 'requested' to fetch pending authorization requests in the queue. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get authorizations

**Slug:** `CONVEYOR_GET_AUTHORIZATIONS`

Retrieve authorizations from your Conveyor Trust Center. Authorizations control who has access to view documents. Use this to list all authorizations or filter by status ('gated', 'authorized', 'revoked') or email address. Requires a valid API token for authentication.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | No | Filter authorizations by the recipient's email address. |
| `status` | string | No | Filter authorizations by status. Valid values: 'gated', 'authorized', or 'revoked'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get all Conveyor connections

**Slug:** `CONVEYOR_GET_CONNECTIONS`

Tool to retrieve all connections. Use when you need to fetch the complete list of your Conveyor connections. Use after authenticating with a valid API key.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (starts at 1) |
| `domain` | string | No | Filter connections by domain (e.g., 'example.com'). Do not include 'https://' or 'www.' |
| `per_page` | integer | No | Number of results per page (default: 100) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get all Conveyor documents

**Slug:** `CONVEYOR_GET_DOCUMENTS`

Retrieves all documents from the Conveyor trust center. Returns a list of documents with their metadata including name, description, access level, versions, and timestamps. No parameters required - simply call to get all documents.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List all Exchange folders

**Slug:** `CONVEYOR_GET_FOLDERS`

Retrieves all folders from the Conveyor Exchange workspace. Returns a list of folders with their IDs, names, timestamps, and associated document IDs. Use this to discover available folders before uploading documents or managing folder contents.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get all interactions

**Slug:** `CONVEYOR_GET_INTERACTIONS`

Tool to get all interactions (document interactions, q&a interactions) with optional filters. Use when you need to retrieve and filter interactions across all documents and Q&A sessions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (starts at 1). Defaults to 1 if not specified. |
| `per_page` | integer | No | Number of results per page. Defaults to API default if not specified. |
| `interaction_type` | string ("document_interaction" | "q_and_a_interaction") | No | Enum for interaction type filter. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get interactions by connection ID

**Slug:** `CONVEYOR_GET_INTERACTIONS_BY_CONNECTION_ID`

Tool to fetch interactions associated with a specific connection. Use when you need to list all interactions for a given connection after validating its existence.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (starts at 1). Defaults to 1 if not specified. |
| `per_page` | integer | No | Number of results per page. Defaults to 100 if not specified. |
| `connection_id` | string | Yes | The connection ID to filter interactions by. Obtain this from the GET Connections endpoint. |
| `interaction_type` | string | No | Filter by interaction type (e.g., 'Document', 'Q & A'). If not specified, returns all interaction types. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get interactions by document ID

**Slug:** `CONVEYOR_GET_INTERACTIONS_BY_DOCUMENT_ID`

Tool to fetch interactions associated with a specific document. Use when you need to list all interactions for a given document after validating its existence.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (starts at 1). Defaults to 1 if not specified. |
| `per_page` | integer | No | Number of results per page. Defaults to 100 if not specified. |
| `document_id` | string | Yes | The UUID of the document to retrieve interactions for. Obtain this from the GET Documents endpoint. |
| `created_at_end` | string | No | Filter interactions created on or before this date. Format: YYYY-MM-DD (e.g., '2024-12-31'). |
| `created_at_start` | string | No | Filter interactions created on or after this date. Format: YYYY-MM-DD (e.g., '2024-01-01'). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Knowledge Base Questions

**Slug:** `CONVEYOR_GET_KNOWLEDGE_BASE_QUESTIONS`

Retrieves knowledge base questions from Conveyor. Use to list, search, or paginate through Q&A entries stored in the knowledge base for compliance and security questionnaires.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results (1-indexed). Defaults to 1 if not specified. |
| `search` | string | No | Search term to filter knowledge base questions by text content. |
| `per_page` | integer | No | Number of items per page (default: 100). Common values: 25, 50, or 100. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get product lines

**Slug:** `CONVEYOR_GET_PRODUCT_LINES`

Retrieves all product lines configured in Conveyor. Use this action to list available product lines for organizing trust documentation, authorizations, and security reviews by business segment. This is a read-only operation that requires a valid API token. Returns a list of product lines with their IDs, names, and descriptions. The list may be empty if no product lines have been configured.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get questionnaires

**Slug:** `CONVEYOR_GET_QUESTIONNAIRES`

Retrieves all questionnaires from Conveyor with optional filters. Use this to list questionnaires by status, product line, or date ranges. Returns questionnaire metadata including assignee, connection, product lines, and completion status.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `status` | string ("processing" | "started" | "ready_for_review" | "approved" | "completed") | No | Enum for questionnaire status values. |
| `due_at_end` | string | No | Filter questionnaires due on or before this date (YYYY-MM-DD format) |
| `due_at_start` | string | No | Filter questionnaires due on or after this date (YYYY-MM-DD format) |
| `created_at_end` | string | No | Filter questionnaires created on or before this date (YYYY-MM-DD format) |
| `completed_at_end` | string | No | Filter questionnaires completed on or before this date (YYYY-MM-DD format) |
| `created_at_start` | string | No | Filter questionnaires created on or after this date (YYYY-MM-DD format) |
| `product_line_ids` | string | No | Comma-separated list of product line UUIDs to filter by |
| `completed_at_start` | string | No | Filter questionnaires completed on or after this date (YYYY-MM-DD format) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Patch authorization

**Slug:** `CONVEYOR_PATCH_AUTHORIZATION`

Update an existing authorization by revoking access or modifying Access Group assignments. Use this tool to: - Revoke a user's access to the Trust Center (set revoke=true) - Update which Access Groups a user belongs to (provide access_group_ids list) At least one of 'revoke' or 'access_group_ids' must be provided.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `revoke` | boolean | No | Set to true to revoke the authorization. Once revoked, the user will lose access to the Trust Center. This action cannot be undone via this endpoint. |
| `access_group_ids` | array | No | List of Access Group IDs (UUIDs) to assign to the authorization. To remove an Access Group, specify only the Access Groups that should remain. Must contain at least one valid UUID. |
| `authorization_id` | string | Yes | The unique identifier (UUID) of the authorization to update. Obtain this from the GET authorizations endpoint. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Conveyor document

**Slug:** `CONVEYOR_PATCH_DOCUMENT`

Update a Conveyor document's metadata. Use this to change a document's name, description, access level, folder location, or other properties. Requires the document UUID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | New name for the document |
| `featured` | boolean | No | Whether to feature this document on the public profile |
| `folder_id` | string | No | UUID of the destination folder to move the document to |
| `description` | string | No | New description for the document |
| `document_id` | string | Yes | UUID of the document to update (e.g., 'c9db1f39-1bba-4c43-afc5-a1ee3d454d7c') |
| `access_level` | string | No | Access level for the document. Valid values: 'public', 'protected', 'need_to_know', 'internal' |
| `access_group_ids` | string | No | Comma-separated list of access group UUIDs for document access control |
| `product_line_ids` | string | No | Comma-separated list of product line UUIDs to associate with the document |
| `disable_downloads` | boolean | No | Whether to disable downloads for this document |
| `use_for_question_answering` | boolean | No | Whether to use this document for AI-powered question answering (only allowed for PDF files, CAIQs, HECVATs and SIGs) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update questionnaire request

**Slug:** `CONVEYOR_PATCH_QUESTIONNAIRE_REQUEST`

Tool to update a questionnaire request in Conveyor. Use this to modify an existing questionnaire request's external ID, case IDs, raw data, or source system information.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The UUID of the questionnaire request to update |
| `file` | string | No | Questionnaire file for agent analysis (binary) |
| `source` | string | No | System name (e.g., salesforce or workato) |
| `case_ids` | string | No | Salesforce Case IDs (alternative to external_id) |
| `raw_data` | string | No | Context data from your ticket in JSON or string format |
| `external_id` | string | No | The unique ID of the ticket from your external system |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create new authorization

**Slug:** `CONVEYOR_POST_AUTHORIZATION`

Tool to create a new authorization in Conveyor Exchange. Use this to grant access to a user by email address or by approving an existing authorization request. Provide either 'email' (to create a new authorization for that email) or 'request_id' (to approve an existing authorization request), but not both.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | No | Email address of the person receiving access. Cannot be used with request_id. |
| `expires_at` | string | No | When authorization will be revoked. Date format (e.g., '2025-12-31'). |
| `nda_bypass` | boolean | No | Whether to bypass NDA requirement. Defaults to false. |
| `request_id` | string | No | The authorization request ID to approve. Cannot be used with email. |
| `access_group_ids` | array | No | Array of access group IDs to grant. If not provided, grants basic access only. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Upload new document

**Slug:** `CONVEYOR_POST_DOCUMENT`

Tool to upload a new document to Conveyor's Knowledge Library. Use when you need to add a file (<=100MB) for security compliance documentation.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `file` | object | Yes | The file to upload. Supported file types: PDF, DOC, DOCX, XLS, XLSX, XLSM, PPT, TXT, CSV, JSON. Maximum file size is 100MB. |
| `name` | string | Yes | Display name for the document in Conveyor's Knowledge Library (e.g., 'Q4 Security Report') |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create new folder

**Slug:** `CONVEYOR_POST_FOLDER`

Tool to create a new folder in Conveyor Exchange. Use when you need to organize items into folders programmatically after obtaining an API key.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name of the folder to create |
| `parent_id` | string | No | UUID of an existing parent folder under which to nest this new folder; omit to create at the root level |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Submit new questionnaire

**Slug:** `CONVEYOR_POST_QUESTIONNAIRE`

Tool to submit a new questionnaire to Conveyor. Use when you need to create a security questionnaire or RFP submission with file uploads, portal links, or Salesforce integration.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `file` | object | No | The questionnaire file to upload. Use when original_format is 'file' or 'spreadsheet' |
| `email` | string | Yes | Email address of the person creating the questionnaire |
| `notes` | string | No | Access instructions for portal-based questionnaires. Useful when original_format is 'portal' |
| `crm_id` | string | No | Unique CRM record identifier to associate with this questionnaire |
| `domain` | string | Yes | Customer domain that submitted the questionnaire (e.g., 'google.com', 'example.com') |
| `due_at` | string | No | Due date in YYYY-MM-DD format (e.g., '2026-03-15'). Defaults to three business days from creation if not specified |
| `filename` | string | No | Filename - required when using content_version_id |
| `crm_amount` | number | No | Monetary value associated with the CRM record (e.g., deal amount) |
| `portal_url` | string | No | URL for portal-based questionnaires. Required when original_format is 'portal' |
| `content_type` | string | No | MIME type of the file - required when using content_version_id (e.g., 'application/pdf', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet') |
| `customer_name` | string | No | CRM record name to link with this questionnaire |
| `original_format` | string ("spreadsheet" | "file" | "portal") | Yes | Sets questionnaire type - 'spreadsheet' for spreadsheet uploads, 'file' for direct file submission, or 'portal' for portal-based questionnaires |
| `product_line_ids` | string | No | Comma-separated Product Line UUIDs applicable to this questionnaire (e.g., 'uuid1,uuid2,uuid3'). If omitted, applies to all product lines |
| `content_version_id` | string | No | Salesforce content version ID for Salesforce-integrated questionnaires. Alternative to direct file upload |
| `questionnaire_type` | string ("security_questionnaire" | "rfp") | No | Type of questionnaire being submitted. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create questionnaire request

**Slug:** `CONVEYOR_POST_QUESTIONNAIRE_REQUEST`

Tool to create a new questionnaire request in Conveyor. Use when you need to submit a security questionnaire or compliance request for processing. Requires submitter_email and either external_id with raw_data OR case_ids from Salesforce.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `file` | object | No | Questionnaire file for analysis. Supported file types: PDF, DOC, DOCX, XLS, XLSX, TXT. |
| `source` | string | No | Name of integration system (e.g., 'salesforce', 'workato', 'api_test') |
| `case_ids` | string | No | Case IDs created by Salesforce managed package trigger. Required unless passing external_id |
| `raw_data` | string | No | JSON string containing data from your ticket for agent context. Required unless passing case_ids |
| `external_id` | string | No | The unique ID of the ticket from your external system. Required unless passing case_ids |
| `submitter_email` | string | Yes | The email address of the person submitting the questionnaire request |
| `submitter_external_id` | string | No | The ID of the submitter in your external system. This can be used for tagging / @-mentioning |
| `submitter_external_name` | string | No | The name of the submitter. This can be used for tagging / @-mentioning |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create new review

**Slug:** `CONVEYOR_POST_REVIEW`

Tool to create a review in Conveyor with optional references to external VM unique IDs. Use when you need to create a vendor review programmatically.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | Yes | Email of the person creating the review. Note - this needs to be a work email and not a free one that ends in something like @gmail.com |
| `vendor_name` | string | Yes | The name of the Vendor you want to create a review for |
| `external_vm_unique_id` | string | No | Optional external VM unique ID reference for linking the review to an external vendor management system |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Submit single question

**Slug:** `CONVEYOR_POST_SINGLE_QUESTION`

Submit a single question to Conveyor's AI knowledge base and receive an immediate answer. Use this when responding to security questionnaires, compliance inquiries, or knowledge base queries. Returns the AI-generated answer along with confidence scoring when available.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `question` | string | Yes | The question to be answered by Conveyor AI. Typically used for security questionnaires, compliance questions, or knowledge base queries. |
| `product_line_ids` | array | No | List of product line IDs to scope the question to specific products. Pass an empty list to query across all product lines. Use 'Get product lines' action to retrieve valid IDs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
