
## Postgres assets package

URL: https://docs.atlan.com/apps/connectors/database/postgresql/sdk/references/package-reference

> Programmatically crawl and manage PostgreSQL assets in Atlan using the Python SDK (pyatlan). Reference for the PostgreSQL assets package.

:::warning[Deprecated—use the app reference]
This package is deprecated. Use the [app reference](app-reference) for the new `client.app` builder, or see [Manage apps](https://docs.atlan.com/llms/platform/python/manage-apps/llms.txt).
:::

# Postgres assets package

The [Postgres assets package](https://ask.atlan.com/hc/en-us/articles/6329557275793)
crawls PostgreSQL assets and publishes them to Atlan for discovery.

## Direct extraction

:::warning[Will create a new connection]
This should only be used to create the workflow the first time. Each time you run this method it will create a new connection and new assets within that connection — which could lead to duplicate assets if you run the workflow this way multiple times with the same settings.

Instead, when you want to re-crawl assets, re-run the existing workflow (see [Re-run existing workflow](#re-run-existing-workflow) below).
:::
To crawl assets directly from PostgreSQL using basic authentication:

### Java

```java showLineNumbers title="Direct extraction from PostgreSQL"
Workflow postgres = PostgreSQLCrawler.directBasicAuth( // (1)
 "production", // (2)
 "postgres.x9f0ve2k1kvy.ap-south-1.rds.amazonaws.com", // (3)
 5432, // (4)
 "postgres", // (5)
 "nCkM685ZH9g4fVICMs6H", // (6)
 "demo_db", // (7)
 List.of(client.getRoleCache().getIdForName("$admin")), // (8)
 null,
 null,
 true, // (9)
 true, // (10)
 10000L, // (11)
 Map.of("demo_db", List.of("demo")), // (12)
 null); // (13)
WorkflowResponse response = postgres.run(); // (14)
```

1. The `PostgreSQLCrawler` package will create a workflow to crawl assets from PostgreSQL. The `directBasicAuth()` method creates a workflow for crawling assets directly from PostgreSQL.
2. You must provide a name for the connection that the PostgreSQL assets will exist within.
3. You must provide the hostname of your PostgreSQL instance.
4. You must specify the port number of the PostgreSQL instance (use `5432` for the default).
5. You must provide your PostgreSQL username.
6. You must provide your PostgreSQL password.
7. You must specify the name of the PostgreSQL database you want to crawl.
8. You must specify at least one connection admin, either:

 - everyone in a role (in this example, all `$admin` users)
 - a list of groups (names) that will be connection admins
 - a list of users (names) that will be connection admins

9. You can specify whether you want to allow queries to this connection (`true`, as in this example) or deny all query access to the connection (`false`).
10. You can specify whether you want to allow data previews on this connection (`true`, as in this example) or deny all sample data previews to the connection (`false`).
11. You can specify a maximum number of rows that can be accessed for any asset in the connection.
12. You can also optionally specify the set of assets to include in crawling. For PostgreSQL assets, this should be specified as a map keyed by database name with values as a list of schemas within that database to crawl. (If set to null, all databases and schemas will be crawled.)
13. You can also optionally specify the list of assets to exclude from crawling. For PostgreSQL assets, this should be specified as a map keyed by database name with values as a list of schemas within the database to exclude. (If set to null, no assets will be excluded.)
14. You can then run the workflow using the `run()` method on the object you've created. Because this operation will execute work in Atlan, you must [provide it an `AtlanClient`](https://docs.atlan.com/llms/platform/python/set-up-sdk/llms.txt) through which to connect to the tenant.

 :::warning[Workflows run asynchronously]
Remember that workflows run asynchronously. See the [packages and workflows introduction](https://docs.atlan.com/llms/platform/python/packages/llms.txt) for details on how you can check the status and wait until the workflow has been completed.
 :::

### Python

```python showLineNumbers title="Direct extraction from PostgreSQL using basic auth"
from pyatlan.client.atlan import AtlanClient
from pyatlan.model.packages import PostgresCrawler

client = AtlanClient()

crawler = (
 PostgresCrawler( # (1)
 client=client, # (2)
 connection_name="production", # (3)
 admin_roles=[client.role_cache.get_id_for_name("$admin")], # (4)
 admin_groups=None,
 admin_users=None,
 row_limit=10000, # (5)
 allow_query=True, # (6)
 allow_query_preview=True, # (7)
 )
 .direct(hostname="test.com", database="test-db") # (8)
 .basic_auth( # (9)
 username="test-user",
 password="test-password",
 )
 .include(assets={"test-include": ["test-asset-1", "test-asset-2"]}) # (10)
 .exclude(assets=None) # (11)
 .exclude_regex(regex=".*_TEST") # (12)
 .source_level_filtering(enable=True) # (13)
 .jdbc_internal_methods(enable=True) # (14)
 .to_workflow() # (15)
)
response = client.workflow.run(crawler) # (16)
```

1. Base configuration for a new PostgresCrawler crawler.
2. You must provide a client instance.
3. You must provide a name for the connection that the PostgreSQL assets will exist within.
4. You must specify at **least one connection admin**, either:

 - everyone in a role (in this example, all `$admin` users).
 - a list of groups (names) that will be connection admins.
 - a list of users (names) that will be connection admins.

5. You can specify a maximum number of rows that can be accessed for any asset in the connection.
6. You can specify whether you want to allow queries to this connection.
(`True`, as in this example) or deny all query access to the connection (`False`).
7. You can specify whether you want to allow data previews on this connection
(`True`, as in this example) or deny all sample data previews to the connection (`False`).
8. You can specify the hostname of your Postgres instance and database name for direct extraction.
9. When using `basic_auth()`, you need to provide the following information:

 - username through which to access PostgreSQL.
 - password through which to access PostgreSQL.

10. You can also optionally specify the set of assets to
include in crawling. For Postgres assets, this should be specified
as a dict keyed by database name with each value being
a list of schemas to include. (If set to None, all table will be crawled.)
11. You can also optionally specify the list of assets to
exclude from crawling. For Postgres assets, this should be
specified as a dict keyed by database name with each value being
a list of schemas to exclude. (If set to None, no table will be excluded.)
12. You can also optionally specify the exclude regex for
crawler ignore tables and views based on a naming convention.
13. You can also optionally specify whether to enable (`True`) or disable (`False`) schema
level filtering on source, schemas selected in the include filter will be fetched.
14. You can also optionally specify whether to enable (`True`) or disable (`False`) JDBC
internal methods for data extraction.
15. Now, you can convert the package into a `Workflow` object.
16. Run the workflow by invoking the `run()`
method on the workflow client, passing the created object.

 :::warning[Workflows run asynchronously]
Remember that workflows run asynchronously.
See the [packages and workflows introduction](https://docs.atlan.com/llms/platform/python/packages/llms.txt)
for details on how you can check the status
and wait until the workflow has been completed.
 :::

### Kotlin

```kotlin showLineNumbers title="Direct extraction from PostgreSQL"
val postgres = PostgreSQLCrawler.directBasicAuth( // (1)
 "production", // (2)
 "postgres.x9f0ve2k1kvy.ap-south-1.rds.amazonaws.com", // (3)
 5432, // (4)
 "postgres", // (5)
 "nCkM685ZH9g4fVICMs6H", // (6)
 "demo_db", // (7)
 listOf(client.roleCache.getIdForName("\$admin")), // (8)
 null,
 null,
 true, // (9)
 true, // (10)
 10000L, // (11)
 mapOf("demo_db" to listOf("demo")), // (12)
 null) // (13)
WorkflowResponse response = postgres.run(); // (14)
```

1. The `PostgreSQLCrawler` package will create a workflow to crawl assets from PostgreSQL. The `directBasicAuth()` method creates a workflow for crawling assets directly from PostgreSQL.
2. You must provide a name for the connection that the PostgreSQL assets will exist within.
3. You must provide the hostname of your PostgreSQL instance.
4. You must specify the port number of the PostgreSQL instance (use `5432` for the default).
5. You must provide your PostgreSQL username.
6. You must provide your PostgreSQL password.
7. You must specify the name of the PostgreSQL database you want to crawl.
8. You must specify at least one connection admin, either:

 - everyone in a role (in this example, all `$admin` users)
 - a list of groups (names) that will be connection admins
 - a list of users (names) that will be connection admins

9. You can specify whether you want to allow queries to this connection (`true`, as in this example) or deny all query access to the connection (`false`).
10. You can specify whether you want to allow data previews on this connection (`true`, as in this example) or deny all sample data previews to the connection (`false`).
11. You can specify a maximum number of rows that can be accessed for any asset in the connection.
12. You can also optionally specify the set of assets to include in crawling. For PostgreSQL assets, this should be specified as a map keyed by database name with values as a list of schemas within that database to crawl. (If set to null, all databases and schemas will be crawled.)
13. You can also optionally specify the list of assets to exclude from crawling. For PostgreSQL assets, this should be specified as a map keyed by database name with values as a list of schemas within the database to exclude. (If set to null, no assets will be excluded.)
14. You can then run the workflow using the `run()` method on the object you've created. Because this operation will execute work in Atlan, you must [provide it an `AtlanClient`](https://docs.atlan.com/llms/platform/python/set-up-sdk/llms.txt) through which to connect to the tenant.

 :::warning[Workflows run asynchronously]
Remember that workflows run asynchronously. See the [packages and workflows introduction](https://docs.atlan.com/llms/platform/python/packages/llms.txt) for details on how you can check the status and wait until the workflow has been completed.
 :::

### Raw REST API

:::tip[Create the workflow via UI only]
We recommend creating the workflow only via the UI.
To rerun an existing workflow, see the steps below.
:::

## IAM user authentication

:::warning[Will create a new connection]
This should only be used to create the workflow the first time. Each time you run this method it will create a new connection and new assets within that connection — which could lead to duplicate assets if you run the workflow this way multiple times with the same settings.

Instead, when you want to re-crawl assets, re-run the existing workflow (see [Re-run existing workflow](#re-run-existing-workflow) below).
:::
To crawl assets directly from PostgreSQL using IAM user authentication:

### Java

:::warning[Coming soon]
:::

### Python

```python showLineNumbers title="PostgreSQL assets crawling using IAM user authentication"
from pyatlan.client.atlan import AtlanClient
from pyatlan.model.packages import PostgresCrawler

client = AtlanClient()

crawler = (
 PostgresCrawler( # (1)
 client=client, # (2)
 connection_name="production", # (3)
 admin_roles=[client.role_cache.get_id_for_name("$admin")], # (4)
 admin_groups=None,
 admin_users=None,
 row_limit=10000, # (5)
 allow_query=True, # (6)
 allow_query_preview=True, # (7)
 )
 .direct(hostname="test.com", database="test-db") # (8)
 .iam_user_auth( # (9)
 username="test-user",
 access_key="test-access-key",
 secret_key="test-secret-key",
 )
 .include(assets={"test-include": ["test-asset-1", "test-asset-2"]}) # (10)
 .exclude(assets=None) # (11)
 .exclude_regex(regex=".*_TEST") # (12)
 .source_level_filtering(enable=True) # (13)
 .jdbc_internal_methods(enable=True) # (14)
 .to_workflow() # (15)
)
response = client.workflow.run(crawler) # (16)
```

1. Base configuration for a new PostgresCrawler crawler.
2. You must provide a client instance.
3. You must provide a name for the connection that the PostgreSQL assets will exist within.
4. You must specify at **least one connection admin**, either:

 - everyone in a role (in this example, all `$admin` users).
 - a list of groups (names) that will be connection admins.
 - a list of users (names) that will be connection admins.

5. You can specify a maximum number of rows that can be accessed for any asset in the connection.
6. You can specify whether you want to allow queries to this connection.
(`True`, as in this example) or deny all query access to the connection (`False`).
7. You can specify whether you want to allow data previews on this connection
(`True`, as in this example) or deny all sample data previews to the connection (`False`).
8. You can specify the hostname of your Postgres instance and database name for direct extraction.
9. When using `iam_user_auth()`, you need to provide the following information:

 - database username to extract from.
 - access key through which to access PostgreSQL.
 - secret key through which to access PostgreSQL.

10. You can also optionally specify the set of assets to
include in crawling. For Postgres assets, this should be specified
as a dict keyed by database name with each value being
a list of schemas to include. (If set to None, all table will be crawled.)
11. You can also optionally specify the list of assets to
exclude from crawling. For Postgres assets, this should be
specified as a dict keyed by database name with each value being
a list of schemas to exclude. (If set to None, no table will be excluded.)
12. You can also optionally specify the exclude regex for
crawler ignore tables and views based on a naming convention.
13. You can also optionally specify whether to enable (`True`) or disable (`False`) schema
level filtering on source, schemas selected in the include filter will be fetched.
14. You can also optionally specify whether to enable (`True`) or disable (`False`) JDBC
internal methods for data extraction.
15. Now, you can convert the package into a `Workflow` object.
16. Run the workflow by invoking the `run()`
method on the workflow client, passing the created object.

 :::warning[Workflows run asynchronously]
Remember that workflows run asynchronously.
See the [packages and workflows introduction](https://docs.atlan.com/llms/platform/python/packages/llms.txt)
for details on how you can check the status
and wait until the workflow has been completed.
 :::

### Raw REST API

:::tip[Create the workflow via UI only]
We recommend creating the workflow only via the UI.
To rerun an existing workflow, see the steps below.
:::

## IAM role authentication

:::warning[Will create a new connection]
This should only be used to create the workflow the first time. Each time you run this method it will create a new connection and new assets within that connection — which could lead to duplicate assets if you run the workflow this way multiple times with the same settings.

Instead, when you want to re-crawl assets, re-run the existing workflow (see [Re-run existing workflow](#re-run-existing-workflow) below).
:::
To crawl assets directly from PostgreSQL using IAM role authentication:

### Java

:::warning[Coming soon]
:::

### Python

```python showLineNumbers title="PostgreSQL assets crawling using IAM role authentication"
from pyatlan.client.atlan import AtlanClient
from pyatlan.model.packages import PostgresCrawler

client = AtlanClient()

crawler = (
 PostgresCrawler( # (1)
 client=client, # (2)
 connection_name="production", # (3)
 admin_roles=[client.role_cache.get_id_for_name("$admin")], # (4)
 admin_groups=None,
 admin_users=None,
 row_limit=10000, # (5)
 allow_query=True, # (6)
 allow_query_preview=True, # (7)
 )
 .direct(hostname="test.com", database="test-db") # (8)
 .iam_role_auth( # (9)
 username="test-user",
 access_key="test-access-key",
 secret_key="test-secret-key",
 )
 .include(assets={"test-include": ["test-asset-1", "test-asset-2"]}) # (10)
 .exclude(assets=None) # (11)
 .exclude_regex(regex=".*_TEST") # (12)
 .source_level_filtering(enable=True) # (13)
 .jdbc_internal_methods(enable=True) # (14)
 .to_workflow() # (15)
)
response = client.workflow.run(crawler) # (16)
```

1. Base configuration for a new PostgresCrawler crawler.
2. You must provide a client instance.
3. You must provide a name for the connection that the PostgreSQL assets will exist within.
4. You must specify at **least one connection admin**, either:

 - everyone in a role (in this example, all `$admin` users).
 - a list of groups (names) that will be connection admins.
 - a list of users (names) that will be connection admins.

5. You can specify a maximum number of rows that can be accessed for any asset in the connection.
6. You can specify whether you want to allow queries to this connection.
(`True`, as in this example) or deny all query access to the connection (`False`).
7. You can specify whether you want to allow data previews on this connection
(`True`, as in this example) or deny all sample data previews to the connection (`False`).
8. You can specify the hostname of your Postgres instance and database name for direct extraction.
9. When using `iam_role_auth()`, you need to provide the following information:

 - database username to extract from.
 - ARN of the AWS role.
 - AWS external ID.

10. You can also optionally specify the set of assets to
include in crawling. For Postgres assets, this should be specified
as a dict keyed by database name with each value being
a list of schemas to include. (If set to None, all table will be crawled.)
11. You can also optionally specify the list of assets to
exclude from crawling. For Postgres assets, this should be
specified as a dict keyed by database name with each value being
a list of schemas to exclude. (If set to None, no table will be excluded.)
12. You can also optionally specify the exclude regex for
crawler ignore tables and views based on a naming convention.
13. You can also optionally specify whether to enable (`True`) or disable (`False`) schema
level filtering on source, schemas selected in the include filter will be fetched.
14. You can also optionally specify whether to enable (`True`) or disable (`False`) JDBC
internal methods for data extraction.
15. Now, you can convert the package into a `Workflow` object.
16. Run the workflow by invoking the `run()`
method on the workflow client, passing the created object.

 :::warning[Workflows run asynchronously]
Remember that workflows run asynchronously.
See the [packages and workflows introduction](https://docs.atlan.com/llms/platform/python/packages/llms.txt)
for details on how you can check the status
and wait until the workflow has been completed.
 :::

### Raw REST API

:::tip[Create the workflow via UI only]
We recommend creating the workflow only via the UI.
To rerun an existing workflow, see the steps below.
:::

## Offline extraction

:::warning[Will create a new connection]
This should only be used to create the workflow the first time. Each time you run this method it will create a new connection and new assets within that connection — which could lead to duplicate assets if you run the workflow this way multiple times with the same settings.

Instead, when you want to re-crawl assets, re-run the existing workflow (see [Re-run existing workflow](#re-run-existing-workflow) below).
:::
To crawl PostgeSQL assets from the S3 bucket:

### Java

:::warning[Coming soon]
:::

### Python

```python showLineNumbers title="Crawling PostgreSQL assets from a bucket"
from pyatlan.client.atlan import AtlanClient
from pyatlan.model.packages import PostgresCrawler

client = AtlanClient()

crawler = (
 PostgresCrawler( # (1)
 client=client, # (2)
 connection_name="production", # (3)
 admin_roles=[client.role_cache.get_id_for_name("$admin")], # (4)
 admin_groups=None,
 admin_users=None,
 row_limit=10000, # (5)
 allow_query=True, # (6)
 allow_query_preview=True, # (7)
 )
 .s3( # (8)
 bucket_name="test-bucket",
 bucket_prefix="test-prefix",
 bucket_region="test-region",
 )
 .source_level_filtering(enable=True) # (9)
 .jdbc_internal_methods(enable=True) # (10)
 .to_workflow() # (11)
)
response = client.workflow.run(crawler) # (12)
```

1. Base configuration for a new PostgresCrawler crawler.
2. You must provide a client instance.
3. You must provide a name for the connection that the PostgreSQL assets will exist within.
4. You must specify at **least one connection admin**, either:

 - everyone in a role (in this example, all `$admin` users).
 - a list of groups (names) that will be connection admins.
 - a list of users (names) that will be connection admins.

5. You can specify a maximum number of rows that can be accessed for any asset in the connection.
6. You can specify whether you want to allow queries to this connection.
(`True`, as in this example) or deny all query access to the connection (`False`).
7. You can specify whether you want to allow data previews on this connection
(`True`, as in this example) or deny all sample data previews to the connection (`False`).
8. When using `s3()`, you need to provide the following information:

 - name of the bucket/storage that contains the extracted metadata files.
 - prefix is everything after the bucket/storage name, including the `path`.
 - (Optional) name of the region if applicable.
9. You can also optionally specify whether to enable (`True`) or disable (`False`) schema
level filtering on source, schemas selected in the include filter will be fetched.
10. You can also optionally specify whether to enable (`True`) or disable (`False`) JDBC
internal methods for data extraction.
11. Now, you can convert the package into a `Workflow` object.
12. Run the workflow by invoking the `run()`
method on the workflow client, passing the created object.

 :::warning[Workflows run asynchronously]
Remember that workflows run asynchronously.
See the [packages and workflows introduction](https://docs.atlan.com/llms/platform/python/packages/llms.txt)
for details on how you can check the status
and wait until the workflow has been completed.
 :::

### Raw REST API

:::tip[Create the workflow via UI only]
We recommend creating the workflow only via the UI.
To rerun an existing workflow, see the steps below.
:::

## Re-run existing workflow

To re-run an existing workflow for PostgreSQL assets:

### Java

```java showLineNumbers title="Re-run existing PostgreSQL workflow"
List existing = WorkflowSearchRequest // (1)
 .findByType(client, PostgreSQLCrawler.PREFIX, 5); // (2)
// Determine which of the results is the PostgreSQL workflow you want to re-run...
WorkflowRunResponse response = existing.get(n).rerun(client); // (3)
```

1. You can search for existing workflows through the `WorkflowSearchRequest` class.
2. You can find workflows by their type using the `findByType()` helper method and providing the prefix for one of the packages. In this example, we do so for the `PostgreSQLCrawler`. (You can also specify the maximum number of resulting workflows you want to retrieve as results.)
3. Once you've found the workflow you want to re-run, you can simply call the `rerun()` helper method on the workflow search result. The `WorkflowRunResponse` is just a subtype of `WorkflowResponse` so has the same helper method to monitor progress of the workflow run. Because this operation will execute work in Atlan, you must [provide it an `AtlanClient`](https://docs.atlan.com/llms/platform/python/set-up-sdk/llms.txt) through which to connect to the tenant.

 - Optionally, you can use the `rerun(client, true)` method with idempotency to avoid re-running a workflow that is already in running or in a pending state. This will return details of the already running workflow if found, and by default, it is set to `false`

 :::warning[Workflows run asynchronously]
Remember that workflows run asynchronously. See the [packages and workflows introduction](https://docs.atlan.com/llms/platform/python/packages/llms.txt) for details on how you can check the status and wait until the workflow has been completed.
 :::

### Python

```python showLineNumbers title="Re-run existing DynamoDB workflow"
from pyatlan.client.atlan import AtlanClient
from pyatlan.model.enums import WorkflowPackage

client = AtlanClient()

existing = client.workflow.find_by_type( # (1)
 prefix=WorkflowPackage.POSTGRES, max_results=5
)

# Determine which DynamoDB workflow (n)

# from the list of results you want to re-run.

response = client.workflow.rerun(existing[n]) # (2)
```

1. You can find workflows by their type using the workflow client `find_by_type()`
method and providing the **prefix** for one of the packages.
In this example, we do so for the `PostgreSQLCrawler`. (You can also specify
the **maximum number of resulting workflows** you want to retrieve as results.)
2. Once you've found the workflow you want to re-run,
you can simply call the workflow client `rerun()` method.

 - Optionally, you can use `rerun(idempotent=True)` to avoid re-running a workflow that is already in running or in a pending state.
 This will return details of the already running workflow if found, and by default, it is set to `False`.

 :::warning[Workflows run asynchronously]
Remember that workflows run asynchronously. See the [packages and workflows introduction](https://docs.atlan.com/llms/platform/python/packages/llms.txt)
for details on how you can check the status and wait until the workflow has been completed.
 :::

### Kotlin

```kotlin showLineNumbers title="Re-run existing PostgreSQL workflow"
val existing = WorkflowSearchRequest // (1)
 .findByType(client, PostgreSQLCrawler.PREFIX, 5) // (2)
// Determine which of the results is the PostgreSQL workflow you want to re-run...
val response = existing.get(n).rerun(client) // (3)
```

1. You can search for existing workflows through the `WorkflowSearchRequest` class.
2. You can find workflows by their type using the `findByType()` helper method and providing the prefix for one of the packages. In this example, we do so for the `PostgreSQLCrawler`. (You can also specify the maximum number of resulting workflows you want to retrieve as results.)
3. Once you've found the workflow you want to re-run, you can simply call the `rerun()` helper method on the workflow search result. The `WorkflowRunResponse` is just a subtype of `WorkflowResponse` so has the same helper method to monitor progress of the workflow run. Because this operation will execute work in Atlan, you must [provide it an `AtlanClient`](https://docs.atlan.com/llms/platform/python/set-up-sdk/llms.txt) through which to connect to the tenant.

 - Optionally, you can use the `rerun(client, true)` method with idempotency to avoid re-running a workflow that is already in running or in a pending state. This will return details of the already running workflow if found, and by default, it is set to `false`

 :::warning[Workflows run asynchronously]
Remember that workflows run asynchronously. See the [packages and workflows introduction](https://docs.atlan.com/llms/platform/python/packages/llms.txt) for details on how you can check the status and wait until the workflow has been completed.
 :::

### Raw REST API

:::warning[Requires multiple steps through the raw REST API]
1. Find the existing workflow.
2. Send through the resulting re-run request.
:::
```json showLineNumbers title="POST /api/service/workflows/indexsearch"
{
 "from": 0,
 "size": 5,
 "query": {
 "bool": {
 "filter": [
 {
 "nested": {
 "path": "metadata",
 "query": {
 "prefix": {
 "metadata.name.keyword": {
 "value": "atlan-postgres" // (1)
 }
 }
 }
 }
 }
 ]
 }
 },
 "sort": [
 {
 "metadata.creationTimestamp": {
 "nested": {
 "path": "metadata"
 },
 "order": "desc"
 }
 }
 ],
 "track_total_hits": true
}
```

1. Searching by the `atlan-postgres` prefix will ensure you only find existing PostgreSQL assets workflows.

 :::tip[Name of the workflow]
The name of the workflow will be nested within the `_source.metadata.name` property of the response object. (Remember since this is a search, there could be multiple results, so you may want to use the other details in each result to determine which workflow you really want.)
 :::
```json title="POST /api/service/workflows/submit"
{
 "namespace": "default",
 "resourceKind": "WorkflowTemplate",
 "resourceName": "atlan-postgres-1684500411" // (1)
}
```

1. Send the name of the workflow as the `resourceName` to rerun it.

---
