Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • NewHires

Index

Methods

  • get(id: number, include: string[]): Promise<any>
  • Gets the details of a NewHire

    For valid values of include array, see REST API docs.

    // Get standalone record
    const hire = await ft.newHires.get(6000053372);

    // Include branch and team in response
    const hireIncludes = await ft.newHires.get(6000053372, ["branch", "team"]);

    Parameters

    • id: number

      Identifier of the NewHire

    • include: string[]

    Returns Promise<any>

    • Response with NewHire object in the response body

Generated using TypeDoc