List entries
Create
Creates entries in the given list from a JSON array whose keys are the list's own field keys; the same endpoint serves custom lists and the system lists behind tags, ticket statuses, priorities and multi option values. The batch is all or nothing (one invalid row, a unique-constraint clash or going past the plan's list-entry allowance rejects the whole call), ids and timestamps are assigned by the server, and nothing else is set in motion: no automations, no notifications, no background work.
POST
/api/{tenant:minlength(2)}/v{version:apiVersion}/list_entries/{list_id}
Request arguments
| Name | Type | Source |
|---|---|---|
| list_id | Int32 | |
| list_entries_input | DTO_list_entry[] | Body |
Request body example
Response
Response body example
DTO_list_entry
| Name | Type | ReadOnly | Description |
|---|---|---|---|
| id | Int32 | ReadOnly | Id |
| created | DateTime | ReadOnly | Created |
| created_by | DTO_reference_user | ReadOnly | Created by |
| last_updated | DateTime | ReadOnly | Last updated |
| last_updated_by | DTO_reference_user | ReadOnly | Last updated by |
DTO_reference_user
| Name | Type | ReadOnly | Description |
|---|---|---|---|
| profile_pic | String | ReadOnly | Profile pic |
| String | ReadOnly | ||
| id | Int32 | Id | |
| label | Object | ReadOnly | Label |
Generated Aug 4, 2026 18:37