Beispielanfrage
PATCH https://api.jupiter-erp.com/api/account/contact-groups/example-id
Code
curl -X PATCH 'https://api.jupiter-erp.com/api/account/contact-groups/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"
}'Parameter
| Name | In | Pflicht | Beschreibung |
|---|---|---|---|
| id | path | ja | — |
Request Body
Optional
| Feld | Typ | Beschreibung |
|---|---|---|
| name | string | — |
Beispiel Request
{
"name": "string"
}Antworten
200OK
ModellContactGroup
| Feld | Typ | Beschreibung |
|---|---|---|
| contacts_count* | integer | Amount of contacts assigned to this group |
| id* | integer | Unique identifier for the group. |
| name* | string | Name of the group. |
Beispiel Response
{
"id": 0,
"name": "string",
"contacts_count": 0
}ContactGroups