Skip to main content
PATCH
/
forms
/
bulk
Update multiple forms
curl --request PATCH \
  --url https://formbase.dev/api/v1/forms/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "forms": [
    {
      "id": "<string>",
      "title": "<string>",
      "description": "<string>",
      "returnUrl": "<string>"
    }
  ]
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

API key in format: Bearer api_xxxxxxxxxxxxx

Body

application/json
forms
object[]
required

Response

Successful response

success
boolean
required