freshworks · Capability

Freshworks Freshteam API — Applicants

Freshworks Freshteam API — Applicants. 2 operations. Lead operation: List applicants for a job posting. Self-contained Naftiko capability covering one Freshworks business surface.

Run with Naftiko FreshworksApplicants

What You Can Do

GET
Listapplicants — List applicants for a job posting
/v1/job-postings/{job-posting-id}/applicants
POST
Createapplicant — Create an applicant for a job posting
/v1/job-postings/{job-posting-id}/applicants

MCP Tools

list-applicants-job-posting

List applicants for a job posting

read-only idempotent
create-applicant-job-posting

Create an applicant for a job posting

Capability Spec

freshteam-applicants.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Freshworks Freshteam API — Applicants
  description: 'Freshworks Freshteam API — Applicants. 2 operations. Lead operation: List applicants for a job posting. Self-contained
    Naftiko capability covering one Freshworks business surface.'
  tags:
  - Freshworks
  - Applicants
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FRESHWORKS_API_KEY: FRESHWORKS_API_KEY
capability:
  consumes:
  - type: http
    namespace: freshteam-applicants
    baseUri: https://{domain}.freshteam.com/api
    description: Freshworks Freshteam API — Applicants business capability. Self-contained, no shared references.
    resources:
    - name: job_postings-job_posting_id-applicants
      path: /job_postings/{job_posting_id}/applicants
      operations:
      - name: listapplicants
        method: GET
        description: List applicants for a job posting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createapplicant
        method: POST
        description: Create an applicant for a job posting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.FRESHWORKS_API_KEY}}'
  exposes:
  - type: rest
    namespace: freshteam-applicants-rest
    port: 8080
    description: REST adapter for Freshworks Freshteam API — Applicants. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/job-postings/{job-posting-id}/applicants
      name: job-postings-job-posting-id-applicants
      description: REST surface for job_postings-job_posting_id-applicants.
      operations:
      - method: GET
        name: listapplicants
        description: List applicants for a job posting
        call: freshteam-applicants.listapplicants
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapplicant
        description: Create an applicant for a job posting
        call: freshteam-applicants.createapplicant
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: freshteam-applicants-mcp
    port: 9090
    transport: http
    description: MCP adapter for Freshworks Freshteam API — Applicants. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-applicants-job-posting
      description: List applicants for a job posting
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: freshteam-applicants.listapplicants
      outputParameters:
      - type: object
        mapping: $.
    - name: create-applicant-job-posting
      description: Create an applicant for a job posting
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: freshteam-applicants.createapplicant
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.