Hi,
I'v managed to create a task through the API. However, which 'keys' do I need to configure the assigned team and the account?
the last one: "assignedTeam" doesn't work and neither does "account"
I'v managed to create a task through the API. However, which 'keys' do I need to configure the assigned team and the account?
Code:
# Task data
task_data = {
"name": "New Task Title",
"status": "00 - Ready to start",
"description": "This is a new task created via API.",
"assignedUserId": "1", # Replace with actual user ID
"startDate": "2024-10-11T09:00:00",
"dueDate": "2024-10-12T17:00:00",
"priority": "Normal",
"account": "Algemeen",
"assignedTeam": "200 - Coordinatie"
the last one: "assignedTeam" doesn't work and neither does "account"

Comment