表单提交

联系表单提交

提交联系表单,支持防重复提交、邮件通知和CRM集成

post/api/contact_form

Request body

namestring required

姓名

companystring required

公司名称

phonestring required

电话号码

emailstring email required

邮箱地址

zixunstring required

咨询内容

remarkstring

备注信息

formIdstring

表单ID

utm_sourcestring

营销来源

utm_mediumstring

营销媒介

utm_keywordstring

营销关键词

utm_contentstring

营销内容

Example request

{
  "name": "张三",
  "company": "极狐信息技术有限公司",
  "phone": "13800138000",
  "email": "zhangsan@example.com",
  "zixun": "希望了解GitLab企业版的功能和价格",
  "remark": "希望尽快联系",
  "formId": "contact_form_001",
  "utm_source": "google",
  "utm_medium": "cpc",
  "utm_keyword": "gitlab",
  "utm_content": "banner_ad"
}

Response

提交成功

codeinteger

状态码

messagestring

响应消息

dataobject nullable

响应数据

Example response

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

Changes