Jupiter ERP
Account API

List account contact groups

/api/account/contact-groups

GETHTTP
get/api/account/contact-groups

Beispielanfrage

GET https://api.jupiter-erp.com/api/account/contact-groups

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

Parameter

NameInPflichtBeschreibung
namequeryneinSearch by name. Supports SQL-like syntax: - `test*`: begins with `test` - `*test`: ends with `test` - `*test*`: contains `test` - `test`: exact match.
ids[]querynein
order_byqueryneinSort by a specific field
#/components/parameters/OrderDirParameter
#/components/parameters/PerPageParameter
#/components/parameters/PageParameter

Antworten

200OK
FeldTypBeschreibung
data*object[]

array

Elemente

FeldTypBeschreibung
contacts_count*integerAmount of contacts assigned to this group
id*integerUnique identifier for the group.
name*stringName of the group.
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",
      "contacts_count": 0
    }
  ],
  "meta": {
    "current_page": 1,
    "last_page": 1,
    "per_page": 15,
    "total": 1,
    "items_from": 1,
    "items_to": 1
  }
}
ContactGroups

Fragen zur Integration?

GET /api/account/contact-groups · Jupiter ERP