TrieOH
Informd

Overview

Multi-tenant forms for TrieOH — namespaces, forms, steps, fields, responses.

Informd is TrieOH's forms service: namespaces (tenant grouping), forms, steps (sections), fields (question definitions), and responses (submissions).

Call it

EnvironmentBase URL
Localhttp://localhost:8083
Prodhttps://api.trieoh.com/informd (or https://api.informd.trieoh.com)

Authentication

SchemeHeaderNotes
Bearer JWTAuthorization: Bearer <token>IdentityX access token; required for namespace routes
API keyX-API-Key: <key>IdentityX service key

Two routes are public (no auth):

  • GET /forms/{form_id}/asnwerable — public answer view
  • POST /forms/{form_id}/responses — public submission

Spelling is part of the interface

The public answer view is /forms/{form_id}/asnwerable — note the historical spelling ("asnwerable"). It is intentional and part of the contract; don't "fix" it in clients.

Key concepts

ConceptMeaning
Namespacetenant grouping; owns forms and members
Forma survey; can be open/closed, drafted/archived
Stepa section of a form, with an order
Fielda question definition inside a step
Responseone submission against a form

Endpoint groups

Browse each group in the sidebar:

GroupCovers
namespacescreate, members, form listing (JWT-only)
formslifecycle (open/close/archive/redraft), members, public answer view, submission
steps / fieldsform structure, field options (select)
responsessubmissions, counts
systemhealth, spec

Most operations exist in two shapes: on /forms/... (acting as the calling user) and on /namespaces/{id}/forms/... (scoped, acting on a namespace's form).

On this page