API Documentation
- Authentication
- Search Endpoints 🔍
- Company Endpoints 🏢
- New Incorporations 🏗️
- Persons Endpoints 👤
- Lists Endpoints 📋
- Watchlist Subscriptions
Watchlist Subscriptions
Create Subscription
Create a new watchlist subscription for a company or person
POST
/
watchlist
/
subscriptions
Copy
curl --request POST \
--url https://jobs-api.registercheck.de/api/v2/watchlist/subscriptions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"user_id": "<string>",
"company_id": "<string>",
"company_name": "<string>",
"company_register_number": "<string>",
"person_id": "<string>",
"person_full_name": "<string>",
"person_birth_date": "<string>",
"event_types": [
"<string>"
]
}'
Copy
{
"id": "<string>",
"user_id": "<string>",
"company_id": "<string>",
"company_name": "<string>",
"company_register_number": "<string>",
"person_id": "<string>",
"person_full_name": "<string>",
"person_birth_date": "<string>",
"is_active": true
}
Authorizations
Enter your API key
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://jobs-api.registercheck.de/api/v2/watchlist/subscriptions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"user_id": "<string>",
"company_id": "<string>",
"company_name": "<string>",
"company_register_number": "<string>",
"person_id": "<string>",
"person_full_name": "<string>",
"person_birth_date": "<string>",
"event_types": [
"<string>"
]
}'
Copy
{
"id": "<string>",
"user_id": "<string>",
"company_id": "<string>",
"company_name": "<string>",
"company_register_number": "<string>",
"person_id": "<string>",
"person_full_name": "<string>",
"person_birth_date": "<string>",
"is_active": true
}
Assistant
Responses are generated using AI and may contain mistakes.