Cvent · Capability

Cvent REST APIs — Badge Print Job

Cvent REST APIs — Badge Print Job. 3 operations. Lead operation: List Badge Print Jobs. Self-contained Naftiko capability covering one business surface.

Cvent REST APIs — Badge Print Job is a Naftiko capability published by Cvent, one of 52 capabilities the APIs.io network indexes for this provider. It bundles 3 operations across the GET and POST methods rooted at /v1/events/{…}/badge-print-jobs.

The capability includes 2 read-only operations and 1 state-changing operation. Lead operation: Create Badge Print Job. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Cvent and Badge Print Job.

Run with Naftiko CventBadge Print Job

What You Can Do

POST
Createbadgeprintjob — Create Badge Print Job
/v1/events/{eventId}/badge-print-jobs
GET
Geteventbadgeprintjobs — List Badge Print Jobs
/v1/events/{eventId}/badge-print-jobs
GET
Getbadgeprintjob — Get Badge Print Job
/v1/events/{eventId}/badge-print-jobs/{jobId}

MCP Tools

cvent-createbadgeprintjob

Create Badge Print Job

cvent-geteventbadgeprintjobs

List Badge Print Jobs

read-only idempotent
cvent-getbadgeprintjob

Get Badge Print Job

read-only idempotent

Capability Spec

rest-badge-print-job.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Cvent REST APIs — Badge Print Job
  description: 'Cvent REST APIs — Badge Print Job. 3 operations. Lead operation: List Badge Print Jobs. Self-contained Naftiko capability covering one business surface.'
  tags:
  - Cvent
  - Badge Print Job
  created: '2026-05-20'
  modified: '2026-05-20'
binds:
- namespace: env
  keys:
    CVENT_API_KEY: CVENT_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-badge-print-job
    baseUri: https://api-platform.cvent.com/ea
    description: Cvent REST APIs — Badge Print Job business capability. Self-contained, no shared references.
    resources:
    - name: events-eventid-badge-print-jobs
      path: /events/{eventId}/badge-print-jobs
      operations:
      - name: createbadgeprintjob
        method: POST
        description: Create Badge Print Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: eventId
          in: path
          type: string
          description: Path parameter eventId.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: geteventbadgeprintjobs
        method: GET
        description: List Badge Print Jobs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: filter
          in: query
          type: string
          description: 'A filter query string narrows search results and supports the combination of logical and comparison operators.

            The filter adheres to the pattern filter=''field'' comparisonType ''value''.


            These are the c'
        - name: eventId
          in: path
          type: string
          description: Path parameter eventId.
          required: true
    - name: events-eventid-badge-print-jobs-jobid
      path: /events/{eventId}/badge-print-jobs/{jobId}
      operations:
      - name: getbadgeprintjob
        method: GET
        description: Get Badge Print Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: jobId
          in: path
          type: string
          description: Path parameter jobId.
          required: true
        - name: eventId
          in: path
          type: string
          description: Path parameter eventId.
          required: true
  exposes:
  - type: rest
    namespace: rest-badge-print-job-rest
    port: 8080
    description: REST adapter for Cvent REST APIs — Badge Print Job. One resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/events/{eventId}/badge-print-jobs
      name: events-eventid-badge-print-jobs
      description: REST surface for events-eventid-badge-print-jobs.
      operations:
      - method: POST
        name: createbadgeprintjob
        description: Create Badge Print Job
        call: rest-badge-print-job.createbadgeprintjob
        with:
          eventId: rest.eventId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: geteventbadgeprintjobs
        description: List Badge Print Jobs
        call: rest-badge-print-job.geteventbadgeprintjobs
        with:
          filter: rest.filter
          eventId: rest.eventId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/events/{eventId}/badge-print-jobs/{jobId}
      name: events-eventid-badge-print-jobs-jobid
      description: REST surface for events-eventid-badge-print-jobs-jobid.
      operations:
      - method: GET
        name: getbadgeprintjob
        description: Get Badge Print Job
        call: rest-badge-print-job.getbadgeprintjob
        with:
          jobId: rest.jobId
          eventId: rest.eventId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-badge-print-job-mcp
    port: 9090
    transport: http
    description: MCP adapter for Cvent REST APIs — Badge Print Job. One tool per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: cvent-createbadgeprintjob
      description: Create Badge Print Job
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-badge-print-job.createbadgeprintjob
      with:
        eventId: tools.eventId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: cvent-geteventbadgeprintjobs
      description: List Badge Print Jobs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-badge-print-job.geteventbadgeprintjobs
      with:
        filter: tools.filter
        eventId: tools.eventId
      outputParameters:
      - type: object
        mapping: $.
    - name: cvent-getbadgeprintjob
      description: Get Badge Print Job
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-badge-print-job.getbadgeprintjob
      with:
        jobId: tools.jobId
        eventId: tools.eventId
      outputParameters:
      - type: object
        mapping: $.