// workflows/new

Build a workflow.

Pick the capabilities, say where each field gets its value, and run it before you save it. Building one costs nothing: what an account changes is where it is kept. Every rule the server enforces is checked here as you type, so saving cannot fail for a reason you could not see.

This is the "Dutch test identity batch" example with its sample values filled in. It is not saved yet: change anything, test it, then save it as your own.
· What it is called
· What it asks for

Declare a value here when it changes from run to run. Steps read it by its key. Anything that never changes belongs in the step itself as a fixed value, not here. A workflow may declare up to 10 inputs, and none at all is fine.

· What it does

Steps run top to bottom, one after another. A step can use a fixed value, one of the inputs above, or the output of any step above it. Up to 12 steps.

Every one of its 3 steps is pure computation, so a test run in the builder happens on your own machine and costs nothing. Your input is not sent to us for it.

Run from your saved workflows, from your code or from an assistant, the work happens on our machines and is metered: 3 credits, one call per step across 3 steps.

Adding a step that needs our side, meaning anything touching a key we hold, a database, the network or a file, would move the whole run onto our servers and it would be charged there too.

· Step 1 of 3 · 1 credit

UUID Generator

Generate cryptographically random UUID v4 or sortable ULID identifiers in the display format you need.

Reads: count from input "count" · format is fixed

Gives back:values listformat text, usable by every step below as “Output of an earlier step”
· Where each field comes from
count (optional)Number

How many to generate, 1 to 100. Defaults to 1. Example: 3

format (optional)Text (String)

"uuid" (default) for UUID v4, or "ulid". Example: uuid

display_format (optional)Text (String)

How to write them: "default", "no-dashes", "braces" or "urn". Example: default

Left out. The capability will use its own default.

What this step gives back
{
  "values": [
    "b7f9c1d2-3e4a-4b5c-8d6e-7f8091a2b3c4"
  ],
  "format": "uuid"
}

A later step reading this one can take the whole object, or a path into it such as values.

· Step 2 of 3 · 1 credit

Test IBAN Generator

Generate IBANs for NL, DE, BE, FR or GB that satisfy the country's own format and every check digit inside it, tied to no real account.

Reads: count from input "count" · country from input "country"

Gives back:count numbercountry textibans listnote text, usable by every step below as “Output of an earlier step”
· Where each field comes from
count (optional)Number

How many IBANs to generate, 1 to 100. Defaults to 1. Example: 5

country (optional)Text (String)

Country code: "NL" (default), "DE", "BE", "FR" or "GB". Example: NL

What this step gives back
{
  "count": 5,
  "country": "NL",
  "ibans": [
    "NL21INGB0123456789"
  ],
  "note": "Structurally valid IBANs: the country's own character layout, the mod-97 check digits, and for BE and FR the national check digit the bank computes over the account. Not linked to real bank accounts. For test environments only."
}

A later step reading this one can take the whole object, or a path into it such as count.

· Step 3 of 3 · 1 credit

Test BSN Generator

Generate Dutch BSN numbers that pass the elfproef, for test environments where a real citizen number must never appear.

Reads: count from input "count"

Gives back:count numberbsns listnote text
· Where each field comes from
count (optional)Number

How many numbers to generate, 1 to 100. Defaults to 1. Example: 5

What this step gives back
{
  "count": 5,
  "bsns": [
    "123456782"
  ],
  "note": "Test numbers that pass the elfproef (11-check). They are not linked to real persons."
}

A later step reading this one can take the whole object, or a path into it such as count.

· Test it before you save

This runs the workflow exactly as written, without saving it. It uses the real capabilities, so what you see is what a later run will do. Inputs are prefilled from the examples you gave them.

Stays on your device

This runs in your browser. What you put in is never sent to ToolForte, so we could not read it if we wanted to.

One exception, so the sentence above stays true: when a run finishes here we record that it happened, which ready made workflow it came from if it came from one, how many steps it had and how long it took. Never what you put in, never what came back, and never anything written into the steps themselves. It is how we can tell which tools are worth keeping.

Runs in your browser. No credits, nothing sent to us.
Saved in this browser

This is saved by your browser on this device. It is not sent to ToolForte, so it is not on your other devices and we cannot recover it for you.

Clearing your browser data removes it, and so does the delete button here.

Leave without savingUnsaved changes.