Manage Tracked URLs
POST/v1/jobchange/manageTrackedLinkedInUrls
This endpoint allows our partners to manage the set of URLs that are tracked for job changes. Callers can add or remove urls from the set of tracked urls.
Request Body
| Field | Type | Description | Required |
|---|---|---|---|
linkedin_urls | array | A list of LinkedIn URLs and actions. | ✅ |
customer_id | string | The customer ID for which to modify job change tracking urls. | ✅ |
Response
The endpoint returns a response with a count of the added, removed and invalid URLs from the request, as well as a count of the remaining tracked URLs.
Example Success Response
{
"added_count": 5,
"removed_count": 1,
"invalid_count": 0,
"remaining_count": 1000
}
Error Handling
The API returns appropriate error messages with status codes if something goes wrong.
| Error Code | Message | Description |
|---|---|---|
| 400 | Invalid Request | Verify your request is properly formatted |
| 401 | Unauthorized | Verify you are using a valid API key |
| 500 | Internal Server Error | An unexpected error occurred. |
Example Error Response
{
"error": {
"code": 400,
"message":"no LinkedIn URLs provided"
}
}
Request
Responses
- 200
Successful response