Skip to main content
PUT
/
company
/
signer-terms
/
{language}
Create or update company signer terms
curl --request PUT \
  --url https://api.firma.dev/functions/v1/signing-request-api/company/signer-terms/{language} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "statement_text": "<string>",
  "terms_url": "<string>"
}
'
{
  "ok": true,
  "storedHtml": "<string>",
  "changed": true
}

Authorizations

Authorization
string
header
required

API key for authentication. Use your API key directly without any prefix (e.g., 'your-api-key'). Bearer prefix is optional but not required.

Path Parameters

language
enum<string>
required

Language code

Available options:
en,
es,
it,
pt,
fr,
de,
el,
ru,
pl

Body

application/json
statement_text
string
required

Signer consent statement as HTML. Sanitized before storage.

terms_url
string<uri> | null

Optional external terms link

Response

Company signer terms updated successfully

ok
boolean
storedHtml
string

The sanitized HTML actually stored

changed
boolean

Whether sanitization altered the submitted statement