smartlead_add_client
Add a new client to the Smartlead email marketing system with configurable permissions and optional white-label branding settings.
Instructions
Add a new client to the system, optionally with white-label settings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | Email address of the client | ||
logo | No | Logo text or identifier | |
logo_url | No | URL to the client's logo image | |
name | Yes | Name of the client | |
password | Yes | Password for the client's account | |
permission | Yes | Array of permissions to grant to the client. Use ["full_access"] for full permissions. |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "Email address of the client",
"type": "string"
},
"logo": {
"description": "Logo text or identifier",
"type": "string"
},
"logo_url": {
"description": "URL to the client's logo image",
"type": [
"string",
"null"
]
},
"name": {
"description": "Name of the client",
"type": "string"
},
"password": {
"description": "Password for the client's account",
"type": "string"
},
"permission": {
"description": "Array of permissions to grant to the client. Use [\"full_access\"] for full permissions.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"email",
"permission",
"password"
],
"type": "object"
}