View as Markdown
sevDesk icon

sevDesk ACTION

Send Invoice Email

Sends an invoice via email. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's sevDesk account once, then configure and run Send Invoice Email 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: "sevdesk-send-invoice-email",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    sevdesk: { authProvisionId: "apn_xxxxxxx" },
    invoiceId: 10,
    toEmail: "To Email",
  },
})

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.

Send Invoice Email inputs
Property Type Description
invoiceId Invoice Id integer
ID of invoice to be manipulated.
Required Dynamic
toEmail To Email string
The recipient of the email.
Required
subject Subject string
The subject of the email.
Required
text Text string
The text of the email. Can contain html.
Required
copy Copy boolean
Should a copy of this email be sent to you?
Optional
additionalAttachments Additional Attachments string[]
Additional attachments to the mail. List of IDs of existing documents in your * sevdesk account
Optional
ccEmail Cc Email string[]
List of mail addresses to be put as cc
Optional
bccEmail Bcc Email string[]
List of mail addresses to be put as bcc
Optional

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
sevdesk-send-invoice-email
Version
0.0.3
App
sevDesk
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes