MVN

com.tryfinch.api : finch-java-core

Maven & Gradle

Aug 26, 2023
5 stars

ATS API Reference · The Finch ATS (Applicant Tracking System) API provides a unified way to connect to a multitude of ATS providers. The API requires an access token issued by Finch. To enable access to the ATS API, please reach out to your Finch representative. ATS products are specified by the product parameter, a space-separated list of products that your application requests from an employer authenticating through Finch Connect. Valid product names are— - `candidates`: Read candidate data - `applications`: Read detailed application data for candidates - `jobs`: Read job posting data, as well as existing stages of the job pipeline - `offers`: Read details about offers managed through the ATS

<dependency>
    <groupId>com.tryfinch.api</groupId>
    <artifactId>finch-java-core</artifactId>
    <version>0.2.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.tryfinch.api : finch-java-core to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.2.4

All Versions

Choose a version of com.tryfinch.api : finch-java-core to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.2.x
finch-java-core-0.2.4
finch-java-core-0.2.3
finch-java-core-0.2.2
finch-java-core-0.2.1
finch-java-core-0.2.0
0.1.x
finch-java-core-0.1.0

How to add a dependency to Maven

Add the following com.tryfinch.api : finch-java-core maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.tryfinch.api</groupId>
    <artifactId>finch-java-core</artifactId>
    <version>0.2.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.tryfinch.api : finch-java-core gradle dependency to your build.gradle file:

implementation 'com.tryfinch.api:finch-java-core:0.2.4'

Gradle Kotlin DSL: Add the following com.tryfinch.api : finch-java-core gradle kotlin dependency to your build.gradle.kts file:

implementation("com.tryfinch.api:finch-java-core:0.2.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.tryfinch.api : finch-java-core sbt scala dependency to your build.sbt file:

libraryDependencies += "com.tryfinch.api" % "finch-java-core" % "0.2.4"

Advertisement