Jupiter ERP
Account API

Create CostCenters

/api/account/cost-centers

POSTHTTP
post/api/account/cost-centers

Beispielanfrage

POST https://api.jupiter-erp.com/api/account/cost-centers

Code
curl -X POST 'https://api.jupiter-erp.com/api/account/cost-centers' \
  -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",
  "code": "string",
  "booking_account_number": 0
}'

Request Body

Optional

FeldTypBeschreibung
booking_account_numberinteger
codestring
name*string
Beispiel Request
{
  "name": "string",
  "code": "string",
  "booking_account_number": 0
}

Antworten

201Created
FeldTypBeschreibung
booking_account_numberinteger
codestring
created_atstring (date-time)Creation timestamp in ISO 8601 format.
id*integer
name*string
updated_atstring (date-time)Last update timestamp in ISO 8601 format.
Beispiel Response
{
  "id": 0,
  "name": "string",
  "code": "string",
  "booking_account_number": 0,
  "updated_at": "2025-01-14T13:51:15.000Z",
  "created_at": "2025-01-14T13:51:15.000Z"
}
CostCenters

Fragen zur Integration?

POST /api/account/cost-centers · Jupiter ERP