Get process types

A quick tutorial on how to get the process types

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

Processes Types

GET /api/v0.3/processes_types

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

See the example:

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

See next:

Last updated