Paradox · Capability

Paradox API — Candidate Attributes

Paradox API — Candidate Attributes. 3 operations. Lead operation: Paradox Patch candidate attributes. Self-contained Naftiko capability covering one Paradox business surface.

Run with Naftiko ParadoxCandidate Attributes

What You Can Do

PATCH
Patchcandidateattributes — Paradox Patch candidate attributes
/v1/candidate/attributes
PUT
Updatecandidateattributes — Paradox Update candidate attributes
/v1/candidate/attributes
GET
Getcandidateattributes — Paradox Get candidate attributes
/v1/candidate/attributes/{oid}

MCP Tools

paradox-patch-candidate-attributes

Paradox Patch candidate attributes

idempotent
paradox-update-candidate-attributes

Paradox Update candidate attributes

idempotent
paradox-get-candidate-attributes

Paradox Get candidate attributes

read-only idempotent

Capability Spec

paradox-candidate-attributes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Paradox API — Candidate Attributes
  description: 'Paradox API — Candidate Attributes. 3 operations. Lead operation: Paradox Patch candidate attributes. Self-contained
    Naftiko capability covering one Paradox business surface.'
  tags:
  - Paradox
  - Candidate Attributes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PARADOX_API_KEY: PARADOX_API_KEY
capability:
  consumes:
  - type: http
    namespace: paradox-candidate-attributes
    baseUri: https://api.paradox.ai/api/v1/public
    description: Paradox API — Candidate Attributes business capability. Self-contained, no shared references.
    resources:
    - name: candidate-attributes
      path: /candidate/attributes
      operations:
      - name: patchcandidateattributes
        method: PATCH
        description: Paradox Patch candidate attributes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updatecandidateattributes
        method: PUT
        description: Paradox Update candidate attributes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: candidate-attributes-oid
      path: /candidate/attributes/{oid}
      operations:
      - name: getcandidateattributes
        method: GET
        description: Paradox Get candidate attributes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: oid
          in: path
          type: string
          description: Candidate OID or external OID
          required: true
    authentication:
      type: bearer
      token: '{{env.PARADOX_API_KEY}}'
  exposes:
  - type: rest
    namespace: paradox-candidate-attributes-rest
    port: 8080
    description: REST adapter for Paradox API — Candidate Attributes. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/candidate/attributes
      name: candidate-attributes
      description: REST surface for candidate-attributes.
      operations:
      - method: PATCH
        name: patchcandidateattributes
        description: Paradox Patch candidate attributes
        call: paradox-candidate-attributes.patchcandidateattributes
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecandidateattributes
        description: Paradox Update candidate attributes
        call: paradox-candidate-attributes.updatecandidateattributes
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/candidate/attributes/{oid}
      name: candidate-attributes-oid
      description: REST surface for candidate-attributes-oid.
      operations:
      - method: GET
        name: getcandidateattributes
        description: Paradox Get candidate attributes
        call: paradox-candidate-attributes.getcandidateattributes
        with:
          oid: rest.oid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: paradox-candidate-attributes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Paradox API — Candidate Attributes. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: paradox-patch-candidate-attributes
      description: Paradox Patch candidate attributes
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: paradox-candidate-attributes.patchcandidateattributes
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: paradox-update-candidate-attributes
      description: Paradox Update candidate attributes
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: paradox-candidate-attributes.updatecandidateattributes
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: paradox-get-candidate-attributes
      description: Paradox Get candidate attributes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: paradox-candidate-attributes.getcandidateattributes
      with:
        oid: tools.oid
      outputParameters:
      - type: object
        mapping: $.