smartlead_place_order_mailboxes
Place orders to purchase domains and associated mailboxes for email marketing campaigns, specifying vendor, forwarding domain, and mailbox details.
Instructions
Confirm and place order for domains and mailboxes to be purchased.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domains | Yes | List of domains and associated mailbox details for purchase | |
forwarding_domain | Yes | The domain to forward to when users access purchased domains | |
vendor_id | Yes | ID of the vendor from whom you want to purchase the domains and mailboxes |
Input Schema (JSON Schema)
{
"properties": {
"domains": {
"description": "List of domains and associated mailbox details for purchase",
"items": {
"properties": {
"domain_name": {
"description": "The domain name you want to purchase",
"type": "string"
},
"mailbox_details": {
"description": "Details for each mailbox you want to purchase",
"items": {
"properties": {
"first_name": {
"description": "First name for the mailbox owner",
"type": "string"
},
"last_name": {
"description": "Last name for the mailbox owner",
"type": "string"
},
"mailbox": {
"description": "The complete mailbox address (e.g., john@example.com)",
"type": "string"
},
"profile_pic": {
"description": "URL or identifier for profile picture (optional)",
"type": "string"
}
},
"required": [
"mailbox",
"first_name",
"last_name"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"domain_name",
"mailbox_details"
],
"type": "object"
},
"type": "array"
},
"forwarding_domain": {
"description": "The domain to forward to when users access purchased domains",
"type": "string"
},
"vendor_id": {
"description": "ID of the vendor from whom you want to purchase the domains and mailboxes",
"type": "integer"
}
},
"required": [
"vendor_id",
"forwarding_domain",
"domains"
],
"type": "object"
}