Get Application Link
GET /v1/links/application
Returns a signed URL where the client user can view and communicate with the RecruitiFi agency that submitted the applicant.
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 the application belongs to.
Example
job_789ghiThe application identifier to retrieve the link for.
Example
app_012jklResponses
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/application?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."}