Jupiter ERP
Account API

Update Tasks

/api/account/tasks/{id}

PATCHHTTP
patch/api/account/tasks/{id}

Beispielanfrage

PATCH https://api.jupiter-erp.com/api/account/tasks/example-id

Code
curl -X PATCH 'https://api.jupiter-erp.com/api/account/tasks/example-id' \
  -H 'Authorization: Bearer YOUR_API_TOKEN' \
  -H 'X-Account-Uuid: YOUR_ACCOUNT_UUID' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "name": "string",
  "description": "string",
  "account_user_id": 0,
  "closed": true,
  "due_at": null,
  "priority_type": null
}'

Parameter

NameInPflichtBeschreibung
idpathja

Request Body

Optional

FeldTypBeschreibung
account_user_idinteger
closedboolean
descriptionstring
due_atallOf(1)

Timestamp in W3C format, will be saved in UTC time +00:00

name*string
priority_typeallOf(1)
Beispiel Request
{
  "name": "string",
  "description": "string",
  "account_user_id": 0,
  "closed": true,
  "due_at": null,
  "priority_type": null
}

Antworten

200OK
ModellTask
FeldTypBeschreibung
account_userobject
FeldTypBeschreibung
abilitiesstring[]Ability strings for this account user. Included when listing or getting users (admin editing). Omitted in embedded contexts (e.g. documents, projects, service orders) to avoid leaking permission data.

array

Elemente

string

created_atstring (date-time)Creation timestamp in ISO 8601 format.
display_emailstring
display_namestring
display_phonestring
id*integer
invited_emailstringEmail address the user was invited with. Set for pending account users; null after acceptance or when not applicable.
role*string

string

  • user
  • admin
status*string

string

  • active
  • blocked
  • pending
updated_atstring (date-time)Last update timestamp in ISO 8601 format.
userobject
FeldTypBeschreibung
email*string
id*integer
image_urlstring
name*string
account_user_idinteger
closedboolean
closed_atstringTimestamp in W3C format, will be saved in UTC time +00:00
created_atstring (date-time)Creation timestamp in ISO 8601 format.
created_byobject
FeldTypBeschreibung
email*string
id*integer
image_urlstring
name*string
created_user_idinteger
descriptionstring
due_atstringTimestamp in W3C format, will be saved in UTC time +00:00
id*integer
name*string
priority_typestring

string

  • none
  • minor
  • major
  • critical
  • blocker
task_groupsobject[]

array

Elemente

FeldTypBeschreibung
created_atstring (date-time)Creation timestamp in ISO 8601 format.
entityobject
FeldTypBeschreibung
idinteger
namestring
entity_idinteger
entity_typestring
id*integer
name*string
orderinginteger
tasks_countinteger
updated_atstring (date-time)Last update timestamp in ISO 8601 format.
updated_atstring (date-time)Last update timestamp in ISO 8601 format.
Beispiel Response
{
  "id": 0,
  "name": "string",
  "description": "string",
  "due_at": "2025-01-14T13:51:15.000Z",
  "priority_type": "none",
  "closed": true
}
Tasks

Fragen zur Integration?

PATCH /api/account/tasks/{id} · Jupiter ERP