-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Extend create endpoint.
Base path: /api/v2/organizations/{org}/members/{user}
Behavior
- Body:
{ name?, template_id? | recipe_id?, parameters?: { [k]: string }, input?: string }
- Require one of
template_id
orrecipe_id
. - Recipe-based creation.
Request model
name?
: stringtemplate_id?
: uuidrecipe_id?
: uuidparameters?
: map[string]string
Response model (task)
template_id
: uuidrecipe_id?
: uuid (post-MVP)created_at
,updated_at
,started_at?
,completed_at?
last_error?
: string
Depends on: #898