Create Configuration

Create a new email verification configuration.

SecurityapiKey
Request
Request Body schema: application/json
required
object (EmailVerificationConfigurationData)

Represents an email verification configuration.

featuresOn
Array of strings (TransactionFeaturesOn)

Features to be enabled. Do not use CREATE_TRANSACTION and COMMIT_TRANSACTION at the same time.

Items Enum: Description
CREATE_TRANSACTION

Creates a new transaction and makes the current request a part of it. By default turned off.

COMMIT_TRANSACTION

Commit transaction. By default turned off.

Example: ["CREATE_TRANSACTION"]
name
required
string (ConfigurationName)

Display name for a configuration.

Example: "Client configuration."
transactionId
string (TransactionId)

Id of the transaction, pass it in subsequent requests to make them part of the transaction

Example: "8e37da1e-ee9d-4ee0-b03d-24a1f89988f2"
Responses
200

Configuration created successfully

400

Bad Request.

post/configurations/emailverification
Request samples
application/json
{
  • "transactionId": "8e37da1e-ee9d-4ee0-b03d-24a1f89988f2",
  • "featuresOn": [
    ],
  • "name": "Client configuration.",
  • "configuration": {
    }
}
Response samples
application/json
{
  • "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
  • "name": "Client configuration.",
  • "version": 1,
  • "configuration": {
    },
  • "createdAt": "2025-03-31T14:03:04Z",
  • "modifiedAt": "2025-03-31T14:03:04Z",
  • "createdBy": "76248934691294444",
  • "transactionId": "8e37da1e-ee9d-4ee0-b03d-24a1f89988f2"
}