PUT/v1/emailtemplates/{id}

Update emailtemplates

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Path parameters

idstringrequired

Request body application/json

idstringnullable
tenant_idstringnullable
created_atstring (date-time)
updated_atstring (date-time)
typestringrequiredmin length 1
subjectstringrequiredmin length 1
templatestringrequiredmin length 1
footerstringnullable

Responses

object ClientEmailTemplate — same shape as the request body.

curl --request PUT \
  --url 'https://api.4comply.io/v1/emailtemplates/00000000-0000-0000-0000-000000000000' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "00000000-0000-0000-0000-000000000000",
  "tenant_id": "your-tenant-id",
  "created_at": "2026-09-07T12:00:00Z",
  "updated_at": "2026-09-07T12:00:00Z",
  "type": "string",
  "subject": "Example label",
  "template": "string",
  "footer": "string"
}'