# Get process types

Use the following endpoint to get all the process types you created using Alphamoon Workspace along with their IDs:

## Processes Types

<mark style="color:blue;">`GET`</mark> `/api/v0.3/processes_types`

{% tabs %}
{% tab title="200: OK Successful response" %}

```json
[
  {
    "id": "29b0618e37a94dc9950e7fcfaff338b9",
    "name": "Custom"
  },
  {
    "id": "bbe7f45aea884e74bbd011a5f57e87f0",
    "name": "Invoices"
  },
  {
    "id": "28b626ddcefb2137b7c03546645eef95",
    "name": "Receipts"
  },
  {
    "id": "118fdb8048ba4e768dfb23c0213b6c9a",
    "name": "Passports"
  }
]
```

{% endtab %}
{% endtabs %}

#### See the example:

{% tabs %}
{% tab title="API call" %}

```bash
curl -X 'GET' \
  'https://workspace.alphamoon.ai/api/v0.3/processes_types' \
  -H 'accept: application/json' \
  -H 'Authorization: Basic API_KEY_BASE64_ENCODED'
```

{% endtab %}

{% tab title="Server response" %}

```json
[
  {
    "id": "29b0618e37a94dc9950e7fcfaff338b9",
    "name": "Custom"
  },
  {
    "id": "bbe7f45aea884e74bbd011a5f57e87f0",
    "name": "Invoices"
  },
  {
    "id": "28b626ddcefb2137b7c03546645eef95",
    "name": "Receipts"
  },
  {
    "id": "118fdb8048ba4e768dfb23c0213b6c9a",
    "name": "Passports"
  }
]
```

{% endtab %}
{% endtabs %}

**See next:**


---

# 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://alphamoon.gitbook.io/documentation/api/get-process-types.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.
