Jupiter ERP
Account API

List Tasks

/api/account/tasks

GETHTTP
get/api/account/tasks

Beispielanfrage

GET https://api.jupiter-erp.com/api/account/tasks

Code
curl -X GET 'https://api.jupiter-erp.com/api/account/tasks' \
  -H 'Authorization: Bearer YOUR_API_TOKEN' \
  -H 'X-Account-Uuid: YOUR_ACCOUNT_UUID' \
  -H 'Accept: application/json'

Parameter

NameInPflichtBeschreibung
task_group_idqueryja
order_byqueryneinSort by a specific field
#/components/parameters/OrderDirParameter
#/components/parameters/PerPageParameter
#/components/parameters/PageParameter

Antworten

200OK
FeldTypBeschreibung
data*object[]

array

Elemente

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.
meta*object
FeldTypBeschreibung
current_page*integerThe current page number.
items_from*integerThe starting item number on the current page.
items_to*integerThe ending item number on the current page.
last_page*integerThe last page number.
per_page*integerThe number of items per page.
total*integerThe total number of items.
Beispiel Response
{
  "data": [
    {
      "id": 0,
      "name": "string",
      "description": "string",
      "due_at": "2025-01-14T13:51:15.000Z",
      "priority_type": "none",
      "closed": true
    }
  ],
  "meta": {
    "current_page": 1,
    "last_page": 1,
    "per_page": 15,
    "total": 1,
    "items_from": 1,
    "items_to": 1
  }
}
Tasks

Fragen zur Integration?

GET /api/account/tasks · Jupiter ERP