Command: set the project's Let's Encrypt account e-mail (requires manager; empty clears it). Certificates are gated on this setting.
POST
/projects/{projectId}/acme-email
const url = 'https://example.com/api/v1/projects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/acme-email';const options = { method: 'POST', headers: {cookie: 'dnse_session=<dnse_session>', 'Content-Type': 'application/json'}, body: '{"email":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/projects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/acme-email \ --header 'Content-Type: application/json' \ --cookie dnse_session=<dnse_session> \ --data '{ "email": "example" }'Authorizations
Abschnitt betitelt „Authorizations“Parameters
Abschnitt betitelt „Parameters“Path Parameters
Abschnitt betitelt „Path Parameters“projectId
required
string format: uuid
Request Bodyrequired
Abschnitt betitelt „Request Bodyrequired“Media typeapplication/json
object
email
required
string
Examplegenerated
{ "email": "example"}Responses
Abschnitt betitelt „Responses“Updated project.
Media typeapplication/json
object
id
string format: uuid
name
string
isBase
Personal base project — not shareable, not deletable.
boolean
role
The acting user’s effective role (admins act owner-level).
string
favorite
Pinned on the acting user’s overview (per-user preference).
boolean
acmeEmail
Let’s Encrypt account e-mail (project setting; empty = certificates disabled).
string
Example
{ "role": "owner"}Resource not found.
Media typeapplication/json
object
error
required
string
Examplegenerated
{ "error": "example"}