Skip to main content

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

FieldTypeDescriptionRequired
linkedin_urlsarrayA list of LinkedIn URLs and actions.
customer_idstringThe 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 CodeMessageDescription
400Invalid RequestVerify your request is properly formatted
401UnauthorizedVerify you are using a valid API key
500Internal Server ErrorAn unexpected error occurred.

Example Error Response

{
"error": {
"code": 400,
"message":"no LinkedIn URLs provided"
}
}

Request

Responses

Successful response