Get Job Link
GET /v1/links/job
Returns a signed URL where the client user can create, view, and edit a job’s RecruitiFi posting to agencies, including managing agency distribution.
Authorizations
Parameters
Query Parameters
The connector identifier for the integration.
Example
con_abc123The client identifier within the partner system.
Example
cli_xyz789The user identifier within the partner system.
Example
usr_456defThe job identifier to retrieve the posting link for.
Example
job_789ghiResponses
200
Signed URL generated successfully.
object
The signed URL to embed in an iframe. This URL is time-limited and should not be cached long-term.
ISO 8601 timestamp indicating when the signed URL expires.
Example
{ "url": "https://app.recruitifi.com/embed/job?token=eyJhbGciOi...", "expiresAt": "2025-01-15T12:30:00Z"}401
Unauthorized — missing or invalid X-Auth-Token.
object
Machine-readable error code.
Human-readable error description.
Example
{ "error": "unauthorized", "message": "Missing or invalid X-Auth-Token header."}403
Forbidden — token is valid but lacks sufficient permissions.
object
Machine-readable error code.
Human-readable error description.
Example
{ "error": "forbidden", "message": "You do not have permission to access this resource."}404
Not Found — the referenced resource does not exist.
object
Machine-readable error code.
Human-readable error description.
Example
{ "error": "not_found", "message": "The requested resource was not found."}422
Unprocessable Entity — missing or invalid query parameters.
object
Machine-readable error code.
Human-readable error description.
Example
{ "error": "unprocessable_entity", "message": "One or more required query parameters are missing or invalid."}