Display candidate summary and actions

Before you begin

Ensure that you have reviewed the initial setup for Candidate Profiles.Review the contexts in which your software will surface SEEK Pass & SEEK Profile functionality. Generally, there are three places to surface SEEK Profile summary information:
  1. Applicant list
  2. Candidate list or talent pool page
  3. Candidate record or details page
The seekCandidateSummaries query accepts browser tokens that include the query:seek-candidate-profiles scope.

Candidate or applicant list

Conditionally display SEEK Pass and SEEK Profile elements against each candidate in the list. The seekCandidateSummaries query lets you determine whether a given candidate has SEEK Pass verification and/or a SEEK Profile.

Retrieve summaries

Execute the seekCandidateSummaries query once per page of candidates, not once per candidate.
QueryVariablesResult
query ($input: [SeekCandidateSummaryInput!]!) {
  seekCandidateSummaries(input: $input) {
    seekPrimaryEmailAddress
    seekProfile {
      exists
    }
    identity {
      formattedName
      isVerified

      icon {
        tooltipLabel
        images {
          accent
        }
      }
    }
  }
}
Use the response from the seekCandidateSummaries query to determine whether to show a profile link for each candidate:
  • If seekProfile.exists is true, render a link to the Candidate Profile Panel
  • If seekProfile.exists is false, do not render the link
A text link may be used to represent the profile link:
Barista (Part-time)
NameSourceProfileStatus
Actions
John SmithSEEKView SEEK ProfileNew
Sarah JohnsonCareers websiteView SEEK ProfileShortlisted
Michael BrownOtherOffered
Emma WilsonSEEKView SEEK ProfileNew
David LeeOtherView SEEK ProfileShortlisted
Rachel GreenSEEKView SEEK ProfileNew
James TaylorCareers websiteView SEEK ProfileShortlisted
Lisa AndersonOtherOffered
Peter WrightSEEKView SEEK ProfileNew
Amy ChenCareers websiteShortlisted
Alternatively, you may represent the SEEK Profile with an icon button.
  • Use a tooltip to explain the meaning of the icon
  • The tooltip copy should be: View SEEK Profile
  • Your software must not modify the icon
Barista (Part-time)

Assets

SEEK provides a bundle of SEEK Profile icon assets, if you are unable to retrieve them via the query. You can always find the latest version below.Last updated: 2026-01-20

Candidate details

Unconditionally display a link to the Candidate Profile Panel with prominent placement in the view. For example, a tabbed view may include a dedicated SEEK Profile tab.
Rachel Green
The Candidate Profile Panel will gracefully handle scenarios where the candidate does not have a SEEK Profile.