# Custom IML functions

{% hint style="info" %}
Before getting started with custom IML functions, learn more about the the [Integromat Markup Language (IML)](/custom-apps-documentation/block-elements/iml.md).

Custom IML functions are not available by default. Contact us via our [helpdesk](https://www.make.com/en/ticket) if you need to create a custom IML function.
{% endhint %}

All built-in IML functions and your custom IML functions are available for you to use inside your own custom functions. You can access them in the `iml` namespace like this: `iml.parseDate()`.

A list of built-in IML functions is available [here](https://help.make.com/functions).

Only JavaScript built-in objects and Buffer are available for you to use. You can use all features of ES 6, like arrow functions, destructuring, etc…

## Limits

<table><thead><tr><th width="262.3333333333333" valign="top">Name</th><th valign="top">Total limit of ...</th><th valign="top">Value</th></tr></thead><tbody><tr><td valign="top">Max Execution Timeout</td><td valign="top">... seconds</td><td valign="top">10</td></tr><tr><td valign="top">Max Number</td><td valign="top">... characters</td><td valign="top">5000</td></tr></tbody></table>

## Examples

* [Dynamic mappable parameters](/custom-apps-documentation/app-components/iml-functions/dynamic-mappable-parameters.md)
* [Handling of full update approach in update modules](/custom-apps-documentation/app-components/iml-functions/handling-of-full-update-approach-in-update-modules.md)
* [Removal of empty collections and nulls](/custom-apps-documentation/app-components/iml-functions/removal-of-empty-collections-and-nulls.md)

## Test your custom IML functions

Learn more about debugging custom IML functions in the [Make DevTool](/custom-apps-documentation/debug-your-app/make-devtool.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.make.com/custom-apps-documentation/app-components/iml-functions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
