HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
409 | 1234006 | email address has been used | 邮件地址已被占用,请使用其它邮件地址 |
409 | 1234033 | email address has been used by another member as login account | 邮件地址已被他人用作于登录邮箱,请使用其它邮件地址 |
curl --location --request POST 'https://open.feishu.cn/open-apis/mail/v1/public_mailboxes' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "test_public_mailbox@xxx.xx",
"name": "test public mailbox"
}'
{
"code": 0,
"msg": "success",
"data": {
"public_mailbox_id": "xxxxxxxxxxxxxxx",
"email": "test_public_mailbox@xxx.xx",
"name": "test public mailbox"
}
}