View as Markdown
FogBugz icon

FogBugz ACTION

Create Case

Creates a new case on FogBugz. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's FogBugz account once, then configure and run Create Case from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "fogbugz-create-case",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    fogbugz: { authProvisionId: "apn_xxxxxxx" },
    ixBugParent: "Ix Bug Parent Id",
    sTitle: "Case Title",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Create Case inputs
Property Type Description
ixBugParent Ix Bug Parent Id string
Make this case a subcase of another case.
Optional Dynamic
sTitle Case Title string
The title of the case to create.
Optional
sTags sTags string[]
A list of tags associated with the case.
Optional Dynamic
ixProject Ix Project Id string
The Id of the Project related with the case.
Optional Dynamic
ixArea Ix Area Id string
The Id of the Area related with the case.
Optional Dynamic
ixCategory Ix Category Id string
The Id of the Category related with the case.
Optional Dynamic
ixPersonId Ix Person Assigned To string
The Id of the Person assigned to the case.
Optional Dynamic
ixPriority Ix Priority Id string
The Id of the Priority related with the case.
Optional Dynamic

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
fogbugz-create-case
Version
0.0.2
App
FogBugz
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes