View as Markdown
Convenia icon

Convenia ACTION

Create Leave Of Absence For Employee

Creates a new leave of absence for an employee. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Convenia account once, then configure and run Create Leave Of Absence For Employee 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: "convenia-create-leave-of-absence-for-employee",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    convenia: { authProvisionId: "apn_xxxxxxx" },
    employeeId: "Employee ID",
    startDate: "Start Date",
  },
})

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 Leave Of Absence For Employee inputs
Property Type Description
employeeId Employee ID string
The ID of the employee
Required Dynamic
startDate Start Date string
The start date of the leave of absence (format: YYYY-MM-DD).
Required
endDate End Date string
The end date of the leave of absence (format: YYYY-MM-DD).
Required
justification Justification string
Justification of Absence.
Optional
absenceMotiveId Absence Motive ID string
Identifier of the reason for Absence.
Required Dynamic
absenceTypeId Absence Type ID string
Absence type identifier.
Required Dynamic
cid CID integer
Registration.
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
convenia-create-leave-of-absence-for-employee
Version
0.0.2
App
Convenia
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes