Jupiter ERP
Account API

List Tasks

/api/account/tasks

GETHTTP
get/api/account/tasks

Example request

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'

Parameters

NameInRequiredDescription
task_group_idqueryyes
order_byquerynoSort by a specific field
#/components/parameters/OrderDirParameter
#/components/parameters/PerPageParameter
#/components/parameters/PageParameter

Responses

200OK
FieldTypeDescription
data*object[]

array

Elements

FieldTypeDescription
account_userobject
FieldTypeDescription
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

Elements

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
FieldTypeDescription
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
FieldTypeDescription
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

Elements

FieldTypeDescription
created_atstring (date-time)Creation timestamp in ISO 8601 format.
entityobject
FieldTypeDescription
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
FieldTypeDescription
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.
Example 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

Questions about integration?

GET /api/account/tasks · Jupiter ERP