Get Settings Link
GET /v1/links/settings
Returns a signed URL where the client user can view and edit their organization settings within RecruitiFi.
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_456defResponses
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/settings?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."}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."}