Skip to main content
PUT
/
forms
/
{id}
Update form
curl --request PUT \
  --url https://app.azalt.co/api/v1/forms/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "isPublic": true,
  "name": "<string>",
  "description": "<string>",
  "tags": [
    "<string>"
  ],
  "alternativeNames": [
    "<string>"
  ],
  "showOrganizationLogo": true,
  "headerBgColor": "<string>",
  "logoWidth": 123,
  "headerPaddingTop": 123,
  "headerPaddingBottom": 123,
  "settings": {
    "allowPublicSubmissionEdits": true,
    "allowPublicSubmissionSupportingDocuments": true,
    "publicSupportingDocumentsMode": "all",
    "workflowOverride": {
      "type": "DIRECT_APPROVAL"
    },
    "defaultSchedules": {
      "MONTHLY": {},
      "QUARTERLY": {},
      "YEARLY": {}
    },
    "allowedEmailDomains": [
      "<string>"
    ],
    "requireUniqueEmailDomain": true,
    "requireUniqueEmailAddress": true,
    "hideFuturePeriodsOverride": true
  },
  "metadata": {}
}
'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "isPublic": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.azalt.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
isPublic
enum<boolean>
Available options:
true
name
string
description
string | null
tags
string[]
alternativeNames
string[]
headerBgColor
string | null
logoWidth
number | null
headerPaddingTop
number | null
headerPaddingBottom
number | null
settings
object
metadata
object

Response

Successful response

id
string
required
name
string
required
description
string | null
required
isPublic
boolean
required