API - creating record without assigned user
CompletedI'm trying to create a new Project record via API with no user assigned to the Project - by default the machine user I'm using to create the record gets assigned. Is it possible to specify a null assigned user on record creation? I'm a bit confused as to how to do this!
Would I set assigned_role_id to null or some other value? Or would it be better to remove the assigned role after Project creation (and if so how?)
Thanks
-
Official comment
Hi Jon,
You can update the project after creation, you will need to send a PATCH request to
/api/orgs/<org_id>/projects/<project_id>/
and with this as the JSON payload:{
"assigned_role": null
}They would have to make sure that they will be sending a POST request
POST /api/orgs/<org_id>/projects/Hope this helps. Otherwise, let us know.
Comment actions
Please sign in to leave a comment.
Comments
2 comments