Jupiter ERP
Account API

Create comment

/api/account/comments

POSTHTTP
post/api/account/comments

Beispielanfrage

POST https://api.jupiter-erp.com/api/account/comments

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

Antworten

201Created
ModellComment
FeldTypBeschreibung
created_atstring (date-time)Creation timestamp in ISO 8601 format.
entityobject
FeldTypBeschreibung
idinteger
namestring
entity_idinteger
entity_typestring

string

  • Contact
  • Project
  • Task
  • CustomDocument
  • Quote
  • ServiceObject
  • ServiceOrder
id*integer
text*stringHTML
updated_atstring (date-time)Last update timestamp in ISO 8601 format.
uploadsobject[]

array

Elemente

FeldTypBeschreibung
file_bytes*number
file_ext*string
file_name*string
file_type*string
id*integer
url*string (https://test.com)
userobject
FeldTypBeschreibung
image_urlstring
namestring
user_idinteger
Beispiel Response
{
  "id": 0,
  "user_id": 0,
  "entity_type": "Contact",
  "entity_id": 0,
  "user": {
    "name": "string",
    "image_url": "string"
  },
  "entity": {
    "id": 0,
    "name": "string"
  },
  "text": "string"
}
Comments

Fragen zur Integration?

POST /api/account/comments · Jupiter ERP