POST
/
watchlist
/
subscriptions
Create Subscription
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>"
  ]
}'
{
  "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

Authorization
string
header
required

Enter your API key

Body

application/json
user_id
string
required
company_id
string | null
company_name
string | null
company_register_number
string | null
person_id
string | null
person_full_name
string | null
person_birth_date
string | null
event_types
string[] | null

Response

Successful Response

id
string
required
user_id
string
required
is_active
boolean
required
company_id
string | null
company_name
string | null
company_register_number
string | null
person_id
string | null
person_full_name
string | null
person_birth_date
string | null