> For the complete documentation index, see [llms.txt](https://developers.make.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.make.com/custom-apps-documentation/app-components/iml-functions.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
