Parameters
Field | Type | Required | Description |
|
| β | Must be |
|
| β | Business email address (will be normalized and hashed) |
|
| β | MD5 hash of the business email (32 hex chars) |
Pass either email or md5.
Request
curl --request POST \
--url https://app.moltsets.com/mcp/ \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "business_email_to_personal_hem",
"arguments": {
"md5": "5d41402abc4b2a76b9719d91101XXXXX", // or email
"email": "[email protected]" // or md5
}
}
}'
Response
{
"jsonrpc": "2.0",
"result": {
"business_email": "[email protected]",
"hems": [
"7b774effe4a349c6dd82ad4f4f2XXXXX"
]
}
}