要将自定义表单附加到Workfront项目,您需要使用Workfront提供的API。以下是基本步骤和相关概念:
以下是一个简单的Python示例,展示如何使用requests库通过Workfront API提交表单数据:
import requests
# 设置API基本信息
base_url = "https://yourcompany.attask-ondemand.com/attask/api"
api_key = "your_api_key"
project_id = "your_project_id"
# 准备表单数据
form_data = {
"name": "Custom Form Submission",
"description": "This is a test submission.",
# 添加其他需要的字段
}
# 设置请求头
headers = {
"Content-Type": "application/json",
"apiKey": api_key,
}
# 构建完整的URL
url = f"{base_url}/v12.0/proj/{project_id}/customform"
# 发送POST请求
response = requests.post(url, json=form_data, headers=headers)
# 检查响应
if response.status_code == 200:
print("Form submitted successfully!")
else:
print(f"Failed to submit form. Status code: {response.status_code}")
print(response.json())
通过以上步骤和方法,您应该能够成功地将自定义表单附加到Workfront项目中。
领取专属 10元无门槛券
手把手带您无忧上云