POST
/
lists
/
{list_id}
/
items
Add Item To List
curl --request POST \
  --url https://jobs-api.registercheck.de/api/v2/lists/{list_id}/items \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "entity_id": "<string>",
  "entity_name": "<string>",
  "is_company": true,
  "register_number": "<string>",
  "birth_date": "<string>",
  "notes": "<string>"
}'
{
  "entity_id": "<string>",
  "entity_name": "<string>",
  "is_company": true,
  "register_number": "<string>",
  "birth_date": "<string>",
  "notes": "<string>",
  "id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "watchlist_subscription_id": "<string>"
}

Authorizations

Authorization
string
header
required

Enter your API key

Path Parameters

list_id
string
required

Body

application/json

Base model for list item data

entity_id
string
required

ID of the entity (company or person)

entity_name
string
required

Name of the entity

is_company
boolean
default:true

Whether the entity is a company (True) or person (False)

register_number
string | null

Company register number (for companies)

birth_date
string | null

Birth date (for persons)

notes
string | null

Additional notes about the entity

Response

Successful Response

Response model for a list item with metadata

entity_id
string
required

ID of the entity (company or person)

entity_name
string
required

Name of the entity

id
string
required

Unique identifier for the list item

created_at
string
required

ISO timestamp when the item was created

updated_at
string
required

ISO timestamp when the item was last updated

is_company
boolean
default:true

Whether the entity is a company (True) or person (False)

register_number
string | null

Company register number (for companies)

birth_date
string | null

Birth date (for persons)

notes
string | null

Additional notes about the entity

watchlist_subscription_id
string | null

ID of associated watchlist subscription if applicable