hi, i have used the get_phase api to get the id of a phase of a particular container. id = phantom.get_phase(container=id_value, trace=False) which returned id 94734, then i did the following post request: ` {"name": "new task", "order": 2, "phase_id": 94734, "description": "test description", "playbooks": [{}], "actions": []} ` to the "workbook_task_template endpoint" to add a task to phase_id 94734. I'm getting the following failed response : {\"failed\": true, \"message\": \"Invalid value \\\"94734\\\" for parameter \\\"phase_id\\\"\"}"}] not sure why this is the case since the phase id currently exist.
... View more