联系表单

联系表单插入(带验证码)

插入联系表单数据,需要图形验证码验证

post/contact/insert

Request body

namestring required

姓名

emailstring email required

邮箱地址

messagestring required

留言内容

keystring required

验证码key

codestring required

验证码

Example request

{
  "name": "张三",
  "email": "zhangsan@example.com",
  "message": "希望了解更多产品信息",
  "key": "captcha_key_123456",
  "code": "ABCD"
}

Response

插入成功

codeinteger

状态码

messagestring

响应消息

dataobject nullable

响应数据

Example response

{
  "code": 200,
  "message": "Submitted successfully"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.