> ## Documentation Index
> Fetch the complete documentation index at: https://forest-chore-open-api.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Create and manage Smart Actions

### What is a Smart Action?

Sooner or later, you will need to perform actions on your data that are specific to your business. Moderating comments, generating an invoice, logging into a customer’s account or banning a user are exactly the kind of important tasks to unlock in order to manage your day-to-day operations.

On our Live Demo example, our `companies` collection has many examples of Smart Action. The simplest one is `Mark as live`.

<Info>
  If you're looking for information on native actions (CRUD), check out [this page](/legacy/ruby-agent/reference-guide/actions/overview).
</Info>

### Creating a Smart action

In order to create a Smart action, you will first need to **declare it in your code** for a specific collection. Here we declare a *Mark as Live* Smart action for the `companies` collection.

<Tabs>
  <Tab title="Rails">
    ```ruby theme={null}
    class Forest::Company
      include ForestLiana::Collection

      collection :Company

      action 'Mark as Live'
    end
    ```
  </Tab>

  <Tab title="Django">
    Ensure the file app/forest/\_\_init\_\_.py exists and contains the import of the previous defined class :
  </Tab>
</Tabs>

After declaring it, your Smart action will appear in the Smart actions tab within your collection settings.

<Warning>
  A Smart action is displayed in the UI only if:

  * it is set as "visible" in the collection settings\
    AND
  * in non-development environments, the user's role must grant the "trigger" permission
</Warning>

<Info>
  At this point, the Smart Action does *nothing*, because no route in your Admin backend handles the API call yet.
</Info>

The **Smart Action behavior** is implemented separately from the declaration.

In the following example, we've implemented the *Mark as live* Smart Action, which simply changes a company's status to `live`.

<Tabs>
  <Tab title="Rails">
    The route declaration takes place in `config/routes.rb`.

    ```javascript theme={null}
    Rails.application.routes.draw do
      # MUST be declared before the mount ForestLiana::Engine.
      namespace :forest do
        post '/actions/mark-as-live' => 'companies#mark_as_live'
      end

      mount ForestLiana::Engine => '/forest'
    end
    ```

    The business logic in this Smart Action is extremely simple. We only update here the attribute `status` of the companies to the value `live`:

    ```ruby theme={null}
    class Forest::CompaniesController < ForestLiana::SmartActionsController
      def mark_as_live
        company_id = ForestLiana::ResourcesGetter.get_ids_from_request(params, forest_user).first
        Company.update(company_id, status: 'live')
    ​
        head :no_content
      end
    end
    ```

    <Warning>
      You must make sure that all your Smart Actions controllers extend from the `ForestLiana::SmartActionsController`. This is mandatory to ensure that all features built on top of Smart Actions work as expected (authentication, permissions, approval workflows,...)
    </Warning>

    <Info>
      You may have to [add CORS headers](/legacy/ruby-agent/how-tos/setup/configuring-cors-headers) to enable the domain `app.forestadmin.com` to trigger API call on your Application URL, which is on a different domain name (e.g. *localhost:3000*).
    </Info>
  </Tab>

  <Tab title="Django">
    Make sure your **project** `urls.py` file include you app urls with the `forest` prefix.

    ```javascript theme={null}
    from django.contrib import admin
    from django.urls import path, include

    urlpatterns = [
        path('forest', include('app.urls')),
        path('forest', include('django_forest.urls')),
        path('admin/', admin.site.urls),
    ]
    ```

    The route declaration takes place in `app/urls.py`.

    ```javascript theme={null}
    from django.urls import path
    from django.views.decorators.csrf import csrf_exempt

    from . import views

    app_name = 'app'
    urlpatterns = [
        path('/actions/mark-as-live', csrf_exempt(views.MarkAsLiveView.as_view()), name='mark-as-live'),
    ]
    ```

    The business logic in this Smart Action is extremely simple. We only update here the attribute `status` of the companies to the value `live`:

    Note that Forest takes care of the authentication thanks to the `ActionView` parent class view.

    <Info>
      You may have to [add CORS headers](/legacy/ruby-agent/how-tos/setup/configuring-cors-headers) to enable the domain `app.forestadmin.com` to trigger API call on your Application URL, which is on a different domain name (e.g. *localhost:8000*).
    </Info>
  </Tab>

  <Tab title="Laravel">
    The route declaration takes place in `routes/web.php`.

    The business logic in this Smart Action is extremely simple. We only update here the attribute `status` of the companies to the value `live`:
  </Tab>
</Tabs>

#### What's happening under the hood?

When you trigger the Smart Action from the UI, your browser will make an API call: `POST /forest/actions/mark-as-live`.

<Info>
  If you want to customize the API call, check the list of [available options](https://docs.forestadmin.com/documentation/reference-guide/actions/create-and-manage-smart-actions#available-smart-action-options).
</Info>

The payload of the HTTP request is based on a [JSON API](http://jsonapi.org) document.\
The `data.attributes.ids` key allows you to retrieve easily the selected records from the UI.\
The `data.attributes.values` key contains all the values of your input fields ([handling input values](/legacy/ruby-agent/reference-guide/actions/create-and-manage-smart-actions/use-a-smart-action-form#handling-input-values)).\
Other properties of `data.attributes` are used to manage the *select all* behavior.

```javascript theme={null}
{
  "data": {
    "attributes": {
      "ids": ["1985"],
      "values": {},
      "collection_name": "companies",
      ...
    },
    "type": "custom-action-requests"
  }
}
```

<Warning>
  Should you want not to use the `RecordsGetter` and use request attributes directly instead, be very careful about edge cases (related data view, etc).
</Warning>

### Available Smart Action options

Here is the list of available options to customize your Smart Action:

### Rails

| Name                  | Type             | Description                                                                                                                                                                         |
| --------------------- | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| name                  | string           | Label of the action displayed in Forest.                                                                                                                                            |
| type                  | string           | (optional) [Type](/legacy/ruby-agent/reference-guide/actions/overview#triggering-different-types-of-actions) of the action. Can be `bulk`, `global` or `single`. Default is `bulk`. |
| fields                | array of objects | (optional) Check the [handling input values](/legacy/ruby-agent/reference-guide/actions/create-and-manage-smart-actions/use-a-smart-action-form#handling-input-values) section.     |
| download              | boolean          | (optional) If `true`, the action triggers a file download in the Browser. Default is `false`                                                                                        |
| endpoint              | string           | (optional) Set the API route to call when clicking on the Smart Action. Default is `'/forest/actions/name-of-the-action-dasherized'`                                                |
| http\_method          | string           | (optional) Set the HTTP method to use when clicking on the Smart Action. Default is `POST`.                                                                                         |
| description           | string           | (optional) Add a description shown in the smart action form. This supports html tags. ⚠️ only available in `forest_liana` **9.4.0**                                                 |
| submit\_button\_label | string           | (optional) Sets the text written on the submit button at the end of the form. Default value is the Smart Action name.  ⚠️ only available in `forest_liana` **9.4.0**                |

<Check>
  Want to go further with Smart Actions? Read the [next page](/legacy/ruby-agent/reference-guide/actions/create-and-manage-smart-actions/use-a-smart-action-form) to discover how to make your Smart Actions even more powerful with **Forms**!
</Check>

### Available Smart Action properties

#### req.user

The JWT Data Token contains all the details of the requesting user. On any authenticated request to your Admin Backend, you can access them with the variable `req.user`.

```javascript theme={null}
req.user content example

{
  "id": "172",
  "email": "angelicabengtsson@doha2019.com",
  "firstName": "Angelica",
  "lastName": "Bengtsson",
  "team": "Pole Vault",
  "role": "Manager",
  "tags": [{ key: "country", value: "Canada" }],
  "renderingId": "4998",
  "iat": 1569913709,
  "exp": 1571123309
}
```

#### req.body

You can find important information in the body of the request.

<Info>
  This is particularly useful to find the context in which an action was performed via a relationship.
</Info>

```javascript theme={null}
{
  data: {
    attributes: {
      collection_name: 'users', //collection on which the action has been triggered
      values: {},
      ids: [Array], //IDs of selected records
      parent_collection_name: 'companies', //Parent collection name
      parent_collection_id: '1', //Parent collection id
      parent_association_name: 'users', //Name of the association
      all_records: false,
      all_records_subset_query: {},
      all_records_ids_excluded: [],
      smart_action_id: 'users-reset-password'
    },
    type: 'custom-action-requests'
  }
}
```

### Customizing response

#### Default success notification

Returning a 204 status code to the HTTP request of the Smart Action shows the default notification message in the browser.

On our Live Demo example, if our Smart Action `Mark as Live` route is implemented like this:

```javascript theme={null}
...

router.post('/actions/mark-as-live', permissionMiddlewareCreator.smartAction(), (req, res) => {
  // ...
  res.status(204).send();
});

...
```

We will see a success message in the browser:

<img src="https://mintcdn.com/forest-chore-open-api/TmGmEqoffYUVv4Df/images/legacy/javascript-agents/toastr-success.png?fit=max&auto=format&n=TmGmEqoffYUVv4Df&q=85&s=5d8ca41674c9e2e2658bdedb66434bf5" alt="" width="959" height="107" data-path="images/legacy/javascript-agents/toastr-success.png" />

#### Custom success notification

If we return a 200 status code with an object `{ success: '...' }` as the payload like this…

```ruby theme={null}
class Forest::CompaniesController < ForestLiana::SmartActionsController
  def mark_as_live
    # ...
    render json: { success: 'Company is now live!' }
  end
end
```

… the success notification will look like this:

<img src="https://mintcdn.com/forest-chore-open-api/TmGmEqoffYUVv4Df/images/legacy/javascript-agents/toastr-success-custom.png?fit=max&auto=format&n=TmGmEqoffYUVv4Df&q=85&s=73f2fbf647cf9f9f05f8f879c4131044" alt="" width="963" height="106" data-path="images/legacy/javascript-agents/toastr-success-custom.png" />

#### Custom error notification

Finally, returning a 400 status code allows you to return errors properly.

```ruby theme={null}
class Forest::CompaniesController < ForestLiana::SmartActionsController
  def mark_as_live
    # ...
    render status: 400, json: { error: 'The company was already live!' }
  end
end
```

<img src="https://mintcdn.com/forest-chore-open-api/TmGmEqoffYUVv4Df/images/legacy/javascript-agents/toastr-error.png?fit=max&auto=format&n=TmGmEqoffYUVv4Df&q=85&s=21f650152bab09145f68e25f79b31e67" alt="" width="962" height="106" data-path="images/legacy/javascript-agents/toastr-error.png" />

#### Custom HTML response

You can also return a HTML page as a response to give more feedback to the admin user who has triggered your Smart Action. To do this, you just need to return a 200 status code with an object `{ html: '...' }`.

On our Live Demo example, we’ve created a `Charge credit card` Smart Action on the Collection `customers`that returns a custom HTML response.

```ruby theme={null}
class Forest::Customer
  include ForestLiana::Collection

  collection :Customer

  action 'Charge credit card', type: 'single', fields: [{
    field: 'amount',
    is_required: true,
    description: 'The amount (USD) to charge the credit card. Example: 42.50',
    type: 'Number'
  }, {
    field: 'description',
    is_required: true,
    description: 'Explain the reason why you want to charge manually the customer here',
    type: 'String'
  }]
end
```

```ruby theme={null}
Rails.application.routes.draw do
  # MUST be declared before the mount ForestLiana::Engine.
  namespace :forest do
    post '/actions/charge-credit-card' => 'customers#charge_credit_card'
  end

  mount ForestLiana::Engine => '/forest'
end
```

```ruby theme={null}
class Forest::CustomersController < ForestLiana::SmartActionsController
  def charge_credit_card
    customer_id = ForestLiana::ResourcesGetter.get_ids_from_request(params).first
    amount = params.dig('data', 'attributes', 'values', 'amount').to_i
    description = params.dig('data', 'attributes', 'values', 'description')

    customer = Customer.find(customer_id)

    response = Stripe::Charge.create(
      amount: amount * 100,
      currency: 'usd',
      customer: customer.stripe_id,
      description: description
    )

    render json: { html: <<EOF
<p class="c-clr-1-4 l-mt l-mb">$#{response.amount / 100.0} USD has been successfully charged.</p>

<strong class="c-form__label--read c-clr-1-2">Credit card</strong>
<p class="c-clr-1-4 l-mb">**** **** **** #{response.source.last4}</p>

<strong class="c-form__label--read c-clr-1-2">Expire</strong>
<p class="c-clr-1-4 l-mb">#{response.source.exp_month}/#{response.source.exp_year}</p>

<strong class="c-form__label--read c-clr-1-2">Card type</strong>
<p class="c-clr-1-4 l-mb">#{response.source.brand}</p>

<strong class="c-form__label--read c-clr-1-2">Country</strong>
<p class="c-clr-1-4 l-mb">#{response.source.country}</p>
EOF
    }
  end
end
```

<img src="https://mintcdn.com/forest-chore-open-api/DwOJ-XBdKEod-4Pc/images/legacy/javascript-agents/actions-html-response-success.png?fit=max&auto=format&n=DwOJ-XBdKEod-4Pc&q=85&s=9bda6ca3cc33b942b874482265e1928c" alt="" width="3022" height="1496" data-path="images/legacy/javascript-agents/actions-html-response-success.png" />

You can either respond with an HTML page in case of error. The user will be able to go back to his smart action's form by using the cross icon at the top right of the panel.

```ruby theme={null}
class Forest::Customer
  include ForestLiana::Collection

  collection :Customer

  action 'Charge credit card', type: 'single', fields: [{
    field: 'amount',
    is_required: true,
    description: 'The amount (USD) to charge the credit card. Example: 42.50',
    type: 'Number'
  }, {
    field: 'description',
    is_required: true,
    description: 'Explain the reason why you want to charge manually the customer here',
    type: 'String'
  }]
end
```

```ruby theme={null}
Rails.application.routes.draw do
  # MUST be declared before the mount ForestLiana::Engine.
  namespace :forest do
    post '/actions/charge-credit-card' => 'customers#charge_credit_card'
  end

  mount ForestLiana::Engine => '/forest'
end
```

```ruby title="/app/controllers/forest/customers_controller.rb" theme={null}
class Forest::CustomersController &#x3C; ForestLiana::SmartActionsController
  def charge_credit_card
    customer_id = ForestLiana::ResourcesGetter.get_ids_from_request(params, forest_user).first
    amount = params.dig('data', 'attributes', 'values', 'amount').to_i
    description = params.dig('data', 'attributes', 'values', 'description')

    customer = Customer.find(customer_id)

    response = Stripe::Charge.create(
      amount: amount * 100,
      currency: 'usd',
      customer: customer.stripe_id,
      description: description
    )

    render status: 400, json: {
      html: &#x3C;&#x3C;EOF
      &#x3C;p class="c-clr-1-4 l-mt l-mb">\$#{record.amount / 100} USD has not been charged.&#x3C;/p>
      &#x3C;strong class="c-form__label--read c-clr-1-2">Credit card&#x3C;/strong>
      &#x3C;p class="c-clr-1-4 l-mb">**** **** **** #{record.source.last4}&#x3C;/p>
      &#x3C;strong class="c-form__label--read c-clr-1-2">Reason&#x3C;/strong>
      &#x3C;p class="c-clr-1-4 l-mb">You can not charge this credit card. The card is marked as blocked&#x3C;/p>
      EOF
    }
  end
end

```

<img src="https://mintcdn.com/forest-chore-open-api/DwOJ-XBdKEod-4Pc/images/legacy/javascript-agents/actions-html-response-error.png?fit=max&auto=format&n=DwOJ-XBdKEod-4Pc&q=85&s=79322ca7d5f392791362184389844412" alt="" width="3018" height="1498" data-path="images/legacy/javascript-agents/actions-html-response-error.png" />

### Setting up a webhook

After a smart action you can set up a HTTP (or HTTPS) callback - a webhook - to forward information to other applications.\
\
To set up a webhook all you have to do is to add a `webhook`object in the response of your action.

```ruby theme={null}
render json: {
  webhook: { # This is the object that will be used to fire http calls.
    url: 'http://my-company-name', # The url of the company providing the service.
    method: 'POST', # The method you would like to use (typically a POST).
    headers: {}, # You can add some headers if needed (you can remove it).
    body: { # A body to send to the url (only JSON supported).
      adminToken: 'your-admin-token',
    }
  }
}
```

<Info>
  Webhooks are commonly used to perform smaller requests and tasks, like sending emails or [impersonating a user](https://docs.forestadmin.com/woodshop/how-tos/impersonate-a-user).
</Info>

<Check>
  Another interesting use of this is automating SSO authentication into your external apps.
</Check>

### Downloading a file

<Tabs>
  <Tab title="Rails">
    On our Live Demo, the collection `Customer` has a Smart Action `Generate invoice`. In this use case, we want to download the generated PDF invoice after clicking on the action. To indicate a Smart Action returns something to download, you have to enable the option `download`.

    <Warning>
      Don’t forget to expose the `Content-Disposition` header in the CORS configuration (as shown in the code below) to be able to customize the filename to download.
    </Warning>

    ```ruby theme={null}
    class Forest::Customer
      include ForestLiana::Collection

      collection :Customer

      action 'Generate invoice', download: true
    end
    ```

    ```ruby theme={null}
    Rails.application.routes.draw do
      # MUST be declared before the mount ForestLiana::Engine.
      namespace :forest do
        post '/actions/generate-invoice' => 'customers#generate_invoice'
      end

      mount ForestLiana::Engine => '/forest'
    end
    ```

    ```ruby theme={null}
    module LiveDemoRails
      class Application < Rails::Application
        config.middleware.insert_before 0, Rack::Cors do
          allow do
            origins '*'
            resource '*', :headers => :any, :methods => [:get, :post, :options],
            # you MUST expose the Content-Disposition header to customize the file to download.
            expose: ['Content-Disposition']
          end
        end
      end
    end
    ```

    ```ruby theme={null}
    class Forest::CustomersController < ForestLiana::SmartActionsController
      def generate_invoice
        data = open("#{File.dirname(__FILE__)}/../../../public/invoice-2342.pdf" )
        send_data data.read, filename: 'invoice-2342.pdf', type: 'application/pdf', disposition: 'attachment'
      end
    end
    ```
  </Tab>

  <Tab title="Django">
    On our Live Demo, the collection `Customer` has a Smart Action `Generate invoice`. In this use case, we want to download the generated PDF invoice after clicking on the action. To indicate a Smart Action returns something to download, you have to enable the option `download`.

    <Warning>
      Don’t forget to expose the `Content-Disposition` header in the CORS configuration (as shown in the code below) to be able to customize the filename to download.
    </Warning>
  </Tab>

  <Tab title="Laravel">
    On our Live Demo, the collection `Customer` has a Smart Action `Generate invoice`. In this use case, we want to download the generated PDF invoice after clicking on the action. To indicate a Smart Action returns something to download, you have to enable the option `download`.

    <Info>
      Want to upload your files to Amazon S3? Check out this this [Woodshop tutorial](https://docs.forestadmin.com/woodshop/how-tos/upload-files-to-s3).
    </Info>
  </Tab>
</Tabs>

### Refreshing your related data

If you want to create an action accessible from the details or the summary view of a record involving related data, this section may interest you.

In the example below, the “Add new transaction” action is accessible from the summary view. This action creates a new transaction and automatically refreshes the “Emitted transactions” related data section to see the new transaction.

<Tabs>
  <Tab title="Rails">
    Below is the sample code. We use the `gem 'faker'` to easily generate fake data. Remember to add this gem to your `Gemfile` and install it (`bundle install`) if you wish to use it.

    ```ruby theme={null}
    class Forest::Company
      include ForestLiana::Collection

      collection :Company
      # ...

      action 'Add new transaction', fields: [{
        field: 'Beneficiary company',
        description: 'Name of the company who will receive the transaction.',
        reference: 'Company.id'
      }, {
        field: 'Amount',
        type: 'Number'
      }]

      # ...
    end
    ```

    ```ruby theme={null}
    class Forest::CompaniesController < ForestLiana::SmartActionsController
      # ...

      def add_new_transaction
        attrs = params.dig('data','attributes', 'values')
        beneficiary_company_id = attrs['Beneficiary company']
        emitter_company_id = ForestLiana::ResourcesGetter.get_ids_from_request(params, forest_user).first
        amount = attrs['Amount']
        Transaction.create!(
          emitter_company_id: emitter_company_id,
          beneficiary_company_id: beneficiary_company_id,
          beneficiary_iban: Faker::Code.imei,
          emitter_iban: Faker::Code.imei,
          vat_amount: Faker::Number.number(4),
          fee_amount: Faker::Number.number(4),
          status: ['to_validate', 'validated', 'rejected'].sample,
          note: Faker::Lorem.paragraph,
          amount: amount,
          emitter_bic: Faker::Code.nric,
          beneficiary_bic: Faker::Code.nric
        )

        # the code below automatically refresh the related data
        # 'emitted_transactions' on the Companies' Summary View
        # after submitting the Smart action form.
        render json: {
          success: 'New transaction emitted',
          refresh: { relationships: ['emitted_transactions'] },
        }
      end
    end
    ```

    ```ruby theme={null}
    Rails.application.routes.draw do
      # MUST be declared before the mount ForestLiana::Engine.
      namespace :forest do
        # ...
        post '/actions/add-new-transaction' => 'companies#add_new_transaction'
        # ...
      end

      mount ForestLiana::Engine => '/forest'
      # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
    end
    ```
  </Tab>

  <Tab title="Django">
    Below is the sample code. We use the python Faker package to easily generate fake data. Remember to add this package to your `requirements.txt` and install it if you wish to use it.
  </Tab>

  <Tab title="Laravel">
    Below is the sample code. We use the Faker package to easily generate fake data. Remember to add this package to your `composer.json` and install it if you wish to use it.
  </Tab>
</Tabs>

### Redirecting to a different page on success

To streamline your operation workflow, it could make sense to redirect to another page after a Smart action was successfully executed.\
\
It is possible using the `redirectTo` property.\
\
The redirection works both for **internal** (`*.forestadmin.com` pages) and **external** links.

<Info>
  **External** links will open in a new tab.
</Info>

Here's a working example for both cases:

```ruby theme={null}
class Forest::Company
  include ForestLiana::Collection

  collection :Company

  action 'Return and track'
  action 'Show some activity'
end
```

```ruby theme={null}
...

namespace :forest do
  post '/actions/return-and-track' => 'company#redirect_externally'
  post '/actions/show-some-activity' => 'company#redirect_internally'
end

...
```

```ruby theme={null}
...

def redirect_externally
  # External redirection
  render json: {
    success: 'Return initiated successfully.',
    redirectTo: 'https://www.royalmail.com/portal/rm/track?trackNumber=ZW924750388GB',
  }
end

def redirect_internally
  # Internal redirection
  render json: {
    success: 'Return initiated successfully.',
    redirectTo: '/MyProject/MyEnvironment/MyTeam/data/20/index/record/20/108/activity',
  }
end

...
```

<Warning>
  Your **external** links must use the `http` or `https` protocol.
</Warning>

### Enable/Disable a Smart Action according to the state of a record

Sometimes, your Smart Action only makes sense depending on the state of your records. On our Live Demo, it does not make any sense to enable the `Mark as Live` Smart Action on the `companies` collection if the company is already live, right? This is configured from the collection's Smart Action settings.

### Restrict a smart action to specific roles

When using Forest collaboratively with clear roles defined it becomes relevant to restrict a smart action only to a select few. This functionality is accessible through Smart Actions Permissions in the Role section of your Project Settings.

### Require approval for a Smart action

Critical actions for your business may need approval before being processed. You can require approval per role from the *Roles* tab of your Project Settings; approval requests are then reviewed from the Collaboration menu.

<Check>
  Want to go further with Smart Actions? Read the next page to discover how to make your Smart Actions even more powerful with **Forms**!
</Check>
