Jupiter ERP
Account API

Update ContactFields

/api/account/contact-fields/{id}

PATCHHTTP
patch/api/account/contact-fields/{id}

Beispielanfrage

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

Code
curl -X PATCH 'https://api.jupiter-erp.com/api/account/contact-fields/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 '{
  "key": "string",
  "name": "string",
  "description": "string",
  "type": "string",
  "select_values": [
    "string"
  ],
  "default_value": null
}'

Parameter

NameInPflichtBeschreibung
idpathja

Request Body

Optional

FeldTypBeschreibung
default_valueobjectdefault value
descriptionstring
keystring
namestring
orderinginteger
select_valuesstring[]

array

Elemente

string

typestring
Beispiel Request
{
  "key": "string",
  "name": "string",
  "description": "string",
  "type": "string",
  "select_values": [
    "string"
  ],
  "default_value": null
}

Antworten

200OK
FeldTypBeschreibung
created_atstring (date-time)Creation timestamp in ISO 8601 format.
default_valueobjectdefault value
descriptionstring
id*integer
key*string
name*string
orderinginteger
select_valuesstring[]

array

Elemente

string

type*string
updated_atstring (date-time)Last update timestamp in ISO 8601 format.
Beispiel Response
{
  "id": 0,
  "key": "string",
  "name": "string",
  "description": "string",
  "type": "string",
  "select_values": [
    "string"
  ]
}
ContactFields

Fragen zur Integration?

PATCH /api/account/contact-fields/{id} · Jupiter ERP