记录计数 API
目的
想要了解员工表单的总记录计数,请使用记录计数 API。获取记录计数 API 可用于获取任何表单的记录计数。
请求 URL
https://people.zoho.com.cn/people/api/employee/counts?authtoken=<token>
请求参数
authtoken | 指定身份验证令牌 |
month | 指定月份 |
year | 指定年份 |
示例
根据年月提取员工记录。
请求 URL:
https://people.zoho.com.cn/people/api/employee/counts?authtoken=7d985878998943g4j09h43dd0b167dda34b&month=2&year=2013
XML 响应:
<Response status=1><Count>1752</Count></Response>
JSON 响应:
[{"Count":1752}]
获取记录计数 API
目的
此 API 用于检索任何类型表单的总记录计数。
请求 URL
https://people.zoho.com.cn/people/api/forms/<formLinkName>/getRecordCount?authtoken=<token>
请求参数
authtoken | 指定身份验证令牌 |
formLinkName | 要获取 formLinkName,您可使用提取表单 API。 |
示例
请求 URL:
https://people.zoho.com.cn/people/api/forms/department/getRecordCount?authtoken=7d985878998943g4j09h43dd0b167dda34b
XML 响应:
<?xmlversion=""1.0"" encoding=""UTF-8""?>
<responseuri=""/api/forms/department/getRecordCount"">
<status>
0</status>
<message>
Success</message><result>
<RecordCount>
3280</RecordCount>
</result>
</response>
JSON 响应:
{"response":{"message":"Success","result":{"RecordCount":3280},"status":0,"uri":"/api/forms/department/getRecordCount"}}
错误代码
请参阅错误代码。