API - creating record without assigned user
AbgeschlossenI'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
-
Offizieller Kommentar
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.
Aktionen für Kommentare
Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.
Kommentare
2 Kommentare