Hey folks — working on an integration where we're creating work orders from an external scheduling system. Right now I'm making two calls: POST to /work_orders to create, then PATCH to update the assignee_id.
Wondering if there's a way to do this in one shot? I tried including assignee_id in the POST body but got a 422 with "assignee cannot be set during creation."
Is this a hard limitation or am I missing something in the payload structure? Would be nice to cut the round-trip latency here.
cc similar OAuth question for context on how I'm authenticating these calls.