# 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:**
