# get\_asset\_builder\_templates

`imerit_ango.sdk.SDK.`&#x20;

## get\_asset\_builder\_templates(project\_id)

Retrieve all of the asset builder templates in your project.&#x20;

### Parameters

* **project\_id:** string
  * The unique identifier for the project. You can find the project ID in [the user interface](https://docs.imerit.net/sdk/sdk-documentation/..#project-ids) or retrieve it by using the [`list_projects`](https://docs.imerit.net/sdk/sdk-documentation/project-level-sdk-functions/list_projects) function.

Returns:

* **output:** dict
  * A dictionary containing the result of the operation.
  * Including a `status` field indicating whether the request was successful and a `data` field containing the response payload with updated resources produced by the operation.

### Example

{% tabs %}
{% tab title="python" %}

```python
import os
from dotenv import load_dotenv
from imerit_ango.sdk import SDK

load_dotenv("variables.env")
api_key = os.getenv("API_KEY")
project_id = os.getenv("PROJECT_ID")

ango_sdk = SDK(api_key)

templates = ango_sdk.get_asset_builder_templates(project_id=project_id)
```

{% endtab %}
{% endtabs %}

<details>

<summary>Sample Output</summary>

```python
[
  {
    "name": "Sample Template",
    "description": "Sample Description",
    "template": "Sample Content",
    "preLabelConfig": {},
    "dataConfig": {
      "Batch": {
        "type": "text",
        "storage": "Public",
        "includeInExport": false
      },
      "External ID": {
        "type": "text",
        "storage": "Public",
        "includeInExport": false
      },
    },
    "selectedExternalId": "External ID",
    "_id": "68b69f9068d5b2b62c6e615d",
    "createdAt": "2020-00-00T00:00:00.000Z"
  }
]
```

</details>

{% hint style="info" %}
**See also**

[create\_asset\_builder\_template](https://docs.imerit.net/sdk/sdk-documentation/project-level-sdk-functions/create_asset_builder_template), [upload\_files\_with\_asset\_builder](https://docs.imerit.net/sdk/sdk-documentation/project-level-sdk-functions/upload_files_with_asset_builder), [Asset Builder](https://docs.imerit.net/data/importing-assets/asset-builder)
{% endhint %}
