Skip to content

提交表单答卷

注意

表单相关接口目前处于 alpha 阶段,接口可能会随时调整,请慎重使用。

提交答卷内容

基本信息

请求方法:POST

请求路径:/api/v1/openapi/personal/forms/:form_id/answers

请求主机:developer.kdocs.cn

限流频次

应用类型限额
测试应用
500 次/天
正式应用
100,000 次/天

权限范围

权限值显示名称权限说明
commit_form_answers
提交表单答卷
提交表单答卷

Path 参数

参数必须类型说明
form_id
string
表单 id

Query 参数

参数必须类型说明
access_token
string

Body 参数

参数必须类型说明
token
string
防重用 token
edit_version
integer
表单修订版本
phone_number
string
填写人手机号码
solitarie_name_id
string
接龙场景署名名称 id
solitarie_name
string
接龙场景署名名称
is_skip_valid
boolean
是否跳过校验
is_verified
boolean
是否核销
+
answer_json
answerJson {}
答卷内容

提示

题目类型请参考创建更新表单中关于题目类型的说明

返回值字段明细,请参考返回示例

返回参数

参数必须类型说明
code
integer
错误码
data
data {}
响应数据

示例

请求示例

curl --request POST \
	--url 'https://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCe/answers?access_token=kvqxrspxjctdojjqdildjhonzwusaquc' \
	--header 'Content-Type: application/json' \
	--data '{"token":"1","answer_json":{"ext":{"preset_key_id":"","preset_key_value":"","is_verified":false},"answers":{"2agiq4":{"type":"doubleSelect","selectValue":[{"itemId":"k17j6v","jumpTo":null,"value":"11"},{"itemId":"i4ijyw","jumpTo":null,"value":"22"}]}}}}'
OkHttpClient client = new OkHttpClient();

MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"token\":\"1\",\"answer_json\":{\"ext\":{\"preset_key_id\":\"\",\"preset_key_value\":\"\",\"is_verified\":false},\"answers\":{\"2agiq4\":{\"type\":\"doubleSelect\",\"selectValue\":[{\"itemId\":\"k17j6v\",\"jumpTo\":null,\"value\":\"11\"},{\"itemId\":\"i4ijyw\",\"jumpTo\":null,\"value\":\"22\"}]}}}}");
Request request = new Request.Builder()
	.url("https://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCe/answers?access_token=kvqxrspxjctdojjqdildjhonzwusaquc")
	.post(body)
	.addHeader("Content-Type", "application/json")
	.build();

Response response = client.newCall(request).execute();
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCe/answers?access_token=kvqxrspxjctdojjqdildjhonzwusaquc"

	payload := strings.NewReader("{\"token\":\"1\",\"answer_json\":{\"ext\":{\"preset_key_id\":\"\",\"preset_key_value\":\"\",\"is_verified\":false},\"answers\":{\"2agiq4\":{\"type\":\"doubleSelect\",\"selectValue\":[{\"itemId\":\"k17j6v\",\"jumpTo\":null,\"value\":\"11\"},{\"itemId\":\"i4ijyw\",\"jumpTo\":null,\"value\":\"22\"}]}}}}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
import http.client

conn = http.client.HTTPSConnection("developer.kdocs.cn")

payload = "{\"token\":\"1\",\"answer_json\":{\"ext\":{\"preset_key_id\":\"\",\"preset_key_value\":\"\",\"is_verified\":false},\"answers\":{\"2agiq4\":{\"type\":\"doubleSelect\",\"selectValue\":[{\"itemId\":\"k17j6v\",\"jumpTo\":null,\"value\":\"11\"},{\"itemId\":\"i4ijyw\",\"jumpTo\":null,\"value\":\"22\"}]}}}}"

headers = { 'Content-Type': "application/json" }

conn.request("POST", "/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCe/answers?access_token=kvqxrspxjctdojjqdildjhonzwusaquc", payload, headers)

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))
<?php

$curl = curl_init();

curl_setopt_array($curl, [
	CURLOPT_URL => "https://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCe/answers?access_token=kvqxrspxjctdojjqdildjhonzwusaquc",
	CURLOPT_RETURNTRANSFER => true,
	CURLOPT_ENCODING => "",
	CURLOPT_MAXREDIRS => 10,
	CURLOPT_TIMEOUT => 30,
	CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
	CURLOPT_CUSTOMREQUEST => "POST",
	CURLOPT_POSTFIELDS => "{\"token\":\"1\",\"answer_json\":{\"ext\":{\"preset_key_id\":\"\",\"preset_key_value\":\"\",\"is_verified\":false},\"answers\":{\"2agiq4\":{\"type\":\"doubleSelect\",\"selectValue\":[{\"itemId\":\"k17j6v\",\"jumpTo\":null,\"value\":\"11\"},{\"itemId\":\"i4ijyw\",\"jumpTo\":null,\"value\":\"22\"}]}}}}",
	CURLOPT_HTTPHEADER => [
		"Content-Type: application/json"
	],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
	echo "cURL Error #:" . $err;
} else {
	echo $response;
}
const data = JSON.stringify({
	"token": "1",
	"answer_json": {
		"ext": {
			"preset_key_id": "",
			"preset_key_value": "",
			"is_verified": false
		},
		"answers": {
			"2agiq4": {
				"type": "doubleSelect",
				"selectValue": [
					{
						"itemId": "k17j6v",
						"jumpTo": null,
						"value": "11"
					},
					{
						"itemId": "i4ijyw",
						"jumpTo": null,
						"value": "22"
					}
				]
			}
		}
	}
});

const xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener("readystatechange", function () {
	if (this.readyState === this.DONE) {
		console.log(this.responseText);
	}
});

xhr.open("POST", "https://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCe/answers?access_token=kvqxrspxjctdojjqdildjhonzwusaquc");
xhr.setRequestHeader("Content-Type", "application/json");

xhr.send(data);
const http = require("https");

const options = {
	"method": "POST",
	"hostname": "developer.kdocs.cn",
	"port": null,
	"path": "/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCe/answers?access_token=kvqxrspxjctdojjqdildjhonzwusaquc",
	"headers": {
		"Content-Type": "application/json"
	}
};

const req = http.request(options, function (res) {
	const chunks = [];

	res.on("data", function (chunk) {
		chunks.push(chunk);
	});

	res.on("end", function () {
		const body = Buffer.concat(chunks);
		console.log(body.toString());
	});
});

req.write(JSON.stringify({
  token: '1',
  answer_json: {
    ext: {preset_key_id: '', preset_key_value: '', is_verified: false},
    answers: {
      '2agiq4': {
        type: 'doubleSelect',
        selectValue: [
          {itemId: 'k17j6v', jumpTo: null, value: '11'},
          {itemId: 'i4ijyw', jumpTo: null, value: '22'}
        ]
      }
    }
  }
}));
req.end();
CURL *hnd = curl_easy_init();

curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "https://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCe/answers?access_token=kvqxrspxjctdojjqdildjhonzwusaquc");

struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);

curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\"token\":\"1\",\"answer_json\":{\"ext\":{\"preset_key_id\":\"\",\"preset_key_value\":\"\",\"is_verified\":false},\"answers\":{\"2agiq4\":{\"type\":\"doubleSelect\",\"selectValue\":[{\"itemId\":\"k17j6v\",\"jumpTo\":null,\"value\":\"11\"},{\"itemId\":\"i4ijyw\",\"jumpTo\":null,\"value\":\"22\"}]}}}}");

CURLcode ret = curl_easy_perform(hnd);
var client = new RestClient("https://developer.kdocs.cn/api/v1/openapi/personal/forms/JxdxSDJpnZKRRr0dEKZRuJ_FoonpnyvgzPfYd2nVJQLGW_Di8Xw5GnY7rcAOCe/answers?access_token=kvqxrspxjctdojjqdildjhonzwusaquc");
var request = new RestRequest(Method.POST);
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\"token\":\"1\",\"answer_json\":{\"ext\":{\"preset_key_id\":\"\",\"preset_key_value\":\"\",\"is_verified\":false},\"answers\":{\"2agiq4\":{\"type\":\"doubleSelect\",\"selectValue\":[{\"itemId\":\"k17j6v\",\"jumpTo\":null,\"value\":\"11\"},{\"itemId\":\"i4ijyw\",\"jumpTo\":null,\"value\":\"22\"}]}}}}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);

返回示例

{
    "code": 0,
    "data": {}
}

错误码

请参考错误码说明