We launched the Accounting Sample!Manage invoices, payments, expenses, and more across multiple connectors.

Search docs

ATS API Reference

One single API to push and pull data from multiple connectors.

10.4.0

Introduction

Welcome to the ATS API.

You can use this API to access all ATS API endpoints.

Base URL

The base URL for all API requests is https://unify.apideck.com

Headers

Custom headers that are expected as part of the request. Note that RFC7230 states header names are case insensitive.

Name Type Required Description
x-apideck-consumer-id String Yes The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app.
x-apideck-service-id String No Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API.
x-apideck-raw Boolean No Include raw response. Mostly used for debugging purposes.
x-apideck-app-id String Yes The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys.
Authorization String Yes Bearer API KEY

Authorization

You can interact with the API through the authorization methods below.

apiKey

To use API you have to sign up and get your own API key. Unify API accounts have sandbox mode and live mode API keys. To change modes just use the appropriate key to get a live or test object. You can find your API keys on the unify settings of your Apideck app. Your Apideck application_id can also be found on the same page.

Authenticate your API requests by including your test or live secret API key in the request header.

  • Bearer authorization header: Authorization: Bearer <your-apideck-api-key>
  • Application id header: x-apideck-app-id: <your-apideck-app-id>

You should use the public keys on the SDKs and the secret keys to authenticate API requests.

Do not share or include your secret API keys on client side code. Your API keys carry significant privileges. Please ensure to keep them 100% secure and be sure to not share your secret API keys in areas that are publicly accessible like GitHub.

Learn how to set the Authorization header inside Postman https://learning.postman.com/docs/postman/sending-api-requests/authorization/#api-key

Go to Unify to grab your API KEY https://app.apideck.com/unify/api-keys

Security Scheme Type API Key
Header parameter name Authorization

Pagination

All API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional cursor and limit parameters.

To fetch the first page of results, call the list API without a cursor parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in meta.cursors.next. If meta.cursors.next is null you're at the end of the list.

In the REST API you can also use the links from the response for added convenience. Simply call the URL in links.next to get the next page of results.

Query Parameters

Name Type Required Description
cursor String No Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response.
limit Number No Number of results to return. Minimum 1, Maximum 200, Default 20

Response Body

Name Type Description
meta.cursors.previous String Cursor to navigate to the previous page of results through the API
meta.cursors.current String Cursor to navigate to the current page of results through the API
meta.cursors.next String Cursor to navigate to the next page of results through the API
meta.items_on_page Number Number of items returned in the data property of the response
links.previous String Link to navigate to the previous page of results through the API
links.current String Link to navigate to the current page of results through the API
links.next String Link to navigate to the next page of results through the API

⚠️ meta.cursors.previous/links.previous is not available for all connectors.

SDKs and API Clients

We currently offer a Node.js, PHP and .NET SDK. Need another SDK? Request the SDK of your choice.

Debugging

Because of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag ?raw=true in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.

Errors

The API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.

Code Title Description
200 OK The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data.
201 Created The request has been fulfilled and has resulted in one or more new resources being created.
204 No Content The server has successfully fulfilled the request and that there is no additional content to send in the response payload body.
400 Bad Request The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request.
401 Unauthorized The request has not been applied because it lacks valid authentication credentials for the target resource.
402 Payment Required Subscription data is incomplete or out of date. You'll need to provide payment details to continue.
403 Forbidden You do not have the appropriate user rights to access the request. Do not repeat the request.
404 Not Found The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
409 Conflict The request could not be completed due to a conflict with the current state of the target resource.
422 Unprocessable Entity The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions.
429 Too Many Requests You sent too many requests in a given amount of time ("rate limit"). Try again later
5xx Server Errors Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue.

Handling errors

The Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.

Error Types

RequestValidationError

Request is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.

UnsupportedFiltersError

Filters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.

UnsupportedSortFieldError

Sort field (sort[by]) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.

InvalidCursorError

Pagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.

ConnectorExecutionError

A Unified API request made via one of our downstream connectors returned an unexpected error. The status_code returned is proxied through to error response along with their original response via the error detail.

UnauthorizedError

We were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: Authorization: 'Bearer sk_live_***'

ConnectorCredentialsError

A request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.

ConnectorDisabledError

A request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.

ConnectorRateLimitError

You sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.

RequestLimitError

You have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.

EntityNotFoundError

You've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.

OAuthCredentialsNotFoundError

When adding a connector integration that implements OAuth, both a client_id and client_secret must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.

IntegrationNotFoundError

The requested connector integration could not be found associated to your application_id. Verify your application_id is correct, and that this connector has been added and configured for your application.

ConnectionNotFoundError

A valid connection could not be found associated to your application_id. Something may have interrupted the authorization flow. You may need to start the connector authorization process again.

ConnectionSettingsError

The connector has required settings that were not supplied. Verify connection.settings contains all required settings for the connector to be callable.

ConnectorNotFoundError

A request was made for an unknown connector. Verify your service_id is spelled correctly, and that this connector is enabled for your provided unified_api.

OAuthRedirectUriError

A request was made either in a connector authorization flow, or attempting to revoke connector access without a valid redirect_uri. This is the url the user should be returned to on completion of process.

OAuthInvalidStateError

The state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.

OAuthCodeExchangeError

When attempting to exchange the authorization code for an access_token during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.

OAuthConnectorError

It seems something went wrong on the connector side. It's possible this connector is in beta or still under development. We've been notified and are working to fix this issue.

MappingError

There was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.

ConnectorMappingNotFoundError

It seems the implementation for this connector is incomplete. It's possible this connector is in beta or still under development. We've been notified and are working to fix this issue.

ConnectorResponseMappingNotFoundError

We were unable to retrieve the response mapping for this connector. It's possible this connector is in beta or still under development. We've been notified and are working to fix this issue.

ConnectorOperationMappingNotFoundError

Connector mapping has not been implemented for the requested operation. It's possible this connector is in beta or still under development. We've been notified and are working to fix this issue.

ConnectorWorkflowMappingError

The composite api calls required for this operation have not been mapped entirely. It's possible this connector is in beta or still under development. We've been notified and are working to fix this issue.

ConnectorOperationUnsupportedError

You're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.

PaginationNotSupportedError

Pagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in beta or still under development. We've been notified and are working to fix this issue.

API Design

API Styles and data formats

REST API

The API is organized around REST, providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.

Available HTTP methods

The Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter _method.

POST /messages
GET /messages
GET /messages/{messageId}
PATCH /messages/{messageId}
DELETE /messages/{messageId}

Response bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.

Schema

All API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.

Meta

Meta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.

Request IDs

Each API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.

Fixed field types

Dates

The dates returned by the API are all represented in UTC (ISO8601 format).

This example 2019-11-14T00:55:31.820Z is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.

The ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.

Prices and Currencies

All prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).

For zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.

All currency codes conform to ISO 4217.

Support

If you have problems or need help with your case, you can always reach out to our Support.

Offers

The Offers model

idstring

A unique identifier for an object.

application_idstring
custom_mappingsobject or null

When custom mappings are configured on the resource, the result is included here.

updated_bystring or null

The user who last updated the object.

created_bystring or null

The user who created the object.

updated_atstring or null

The date and time when the object was last updated.

Offers example
{}

Activities

The Activities model

idstring

A unique identifier for an object.

custom_mappingsobject or null

When custom mappings are configured on the resource, the result is included here.

updated_bystring or null

The user who last updated the object.

created_bystring or null

The user who created the object.

updated_atstring or null

The date and time when the object was last updated.

created_atstring or null

The date and time when the object was created.

Activities example
{}

Jobs

The Jobs model

idstring

A unique identifier for an object.

slugstring or null
titlestring or null

The job title of the person.

sequenceinteger

Sequence in relation to other jobs.

visibilitystring
Enum:draftpublicinternal

The visibility of the job

statusstring
Enum:draftinternalpublishedcompleted

The status of the job.

Jobs example
{}

List Jobs

get
https://unify.apideck.com/ats/jobs

List Jobs

Authorizations:

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

cursorstring or null

Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.

limitinteger[ 1 .. 200 ]
Default:20

Number of results to return. Minimum 1, Maximum 200, Default 20

pass_throughobjectpass_through[example_downstream_property]=example_downstream_property

Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads

fieldsstring or null

The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: fields=name,email,addresses.city

In the example above, the response will only include the fields "name", "email" and "addresses.city". If any other fields are available, they will be excluded.

Responses

200Jobs
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable

Mapping coverage per connector

Freshteam
Greenhouse
Lever
Recruitee
Sage HR
SAP SuccessFactors
Teamtailor
Workable
Workday

Request example

Node
import { Apideck } from '@apideck/node'

const apideck = new Apideck({
  apiKey: 'REPLACE_WITH_API_KEY',
  appId: 'REPLACE_WITH_APP_ID',
  consumerId: 'REPLACE_WITH_CONSUMER_ID'
})

try {
  const { data } = await apideck.ats.jobsAll({})
  console.log('API called successfully', data)
} catch (error) {
  console.error(error)
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "lever",
  "resource": "Jobs",
  "operation": "all",
  "data": [
    {
      "id": "12345",
      "slug": "ceo",
      "title": "CEO",
      "sequence": 3,
      "visibility": "internal",
      "status": "completed",
      "code": "123-OC",
      "language": "EN",
      "employment_terms": "full-time",
      "experience": "Director/ Vice President",
      "location": "San Francisco",
      "remote": true,
      "requisition_id": "abc123",
      "department": {
        "id": "12345",
        "parent_id": "22345",
        "name": "R&D",
        "code": "2",
        "description": "R&D",
        "custom_mappings": {},
        "updated_by": "12345",
        "created_by": "12345",
        "updated_at": "2020-09-30T07:43:32.000Z",
        "created_at": "2020-09-30T07:43:32.000Z"
      },
      "branch": {
        "id": "123",
        "name": "HQ NY"
      },
      "recruiters": [
        "a0d636c6-43b3-4bde-8c70-85b707d992f4"
      ],
      "hiring_managers": [
        "123456"
      ],
      "followers": [
        "a0d636c6-43b3-4bde-8c70-85b707d992f4",
        "a98lfd96-43b3-4bde-8c70-85b707d992e6"
      ],
      "description": "A description",
      "description_html": "string",
      "blocks": [
        {
          "title": "string",
          "content": "string"
        }
      ],
      "closing": "The closing section of the job description",
      "closing_html": "string",
      "closing_date": "2020-10-30",
      "salary": {
        "min": 8000,
        "max": 10000,
        "currency": "USD",
        "interval": "year"
      },
      "url": "string",
      "job_portal_url": "string",
      "record_url": "https://app.intercom.io/contacts/12345",
      "links": [
        {
          "type": "job_portal",
          "url": "https://app.intercom.io/contacts/12345"
        }
      ],
      "confidential": false,
      "available_to_employees": false,
      "tags": [
        "New"
      ],
      "addresses": [
        {
          "id": "123",
          "type": "primary",
          "string": "25 Spring Street, Blackburn, VIC 3130",
          "name": "HQ US",
          "line1": "Main street",
          "line2": "apt #",
          "line3": "Suite #",
          "line4": "delivery instructions",
          "street_number": "25",
          "city": "San Francisco",
          "state": "CA",
          "postal_code": "94104",
          "country": "US",
          "latitude": "40.759211",
          "longitude": "-73.984638",
          "county": "Santa Clara",
          "contact_name": "Elon Musk",
          "salutation": "Mr",
          "phone_number": "111-111-1111",
          "fax": "122-111-1111",
          "email": "elon@musk.com",
          "website": "https://elonmusk.com",
          "notes": "Address notes or delivery instructions.",
          "row_version": "1-12345"
        }
      ],
      "custom_fields": [
        {
          "id": "2389328923893298",
          "name": "employee_level",
          "description": "Employee Level",
          "value": "Uses Salesforce and Marketo"
        }
      ],
      "deleted": true,
      "owner_id": "54321",
      "published_at": "2020-09-30T07:43:32.000Z",
      "custom_mappings": {},
      "updated_by": "12345",
      "created_by": "12345",
      "updated_at": "2020-09-30T07:43:32.000Z",
      "created_at": "2020-09-30T07:43:32.000Z"
    }
  ],
  "meta": {
    "items_on_page": 50,
    "cursors": {
      "previous": "em9oby1jcm06OnBhZ2U6OjE=",
      "current": "em9oby1jcm06OnBhZ2U6OjI=",
      "next": "em9oby1jcm06OnBhZ2U6OjM="
    }
  },
  "links": {
    "previous": "https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D",
    "current": "https://unify.apideck.com/crm/companies",
    "next": "https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM"
  }
}

Get Job

get
https://unify.apideck.com/ats/jobs/{id}

Get Job

Authorizations:

Path parameters

idstring
required

ID of the record you are acting upon.

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

fieldsstring or null

The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: fields=name,email,addresses.city

In the example above, the response will only include the fields "name", "email" and "addresses.city". If any other fields are available, they will be excluded.

Responses

200Jobs
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable

Mapping coverage per connector

Freshteam
Greenhouse
Lever
Recruitee
Sage HR
SAP SuccessFactors
Teamtailor
Workable
Workday

Request example

Node
import { Apideck } from '@apideck/node'

const apideck = new Apideck({
  apiKey: 'REPLACE_WITH_API_KEY',
  appId: 'REPLACE_WITH_APP_ID',
  consumerId: 'REPLACE_WITH_CONSUMER_ID'
})

try {
  const { data } = await apideck.ats.jobsOne({
    id: 'id_example'
  })
  console.log('API called successfully', data)
} catch (error) {
  console.error(error)
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "lever",
  "resource": "Jobs",
  "operation": "one",
  "data": {
    "id": "12345",
    "slug": "ceo",
    "title": "CEO",
    "sequence": 3,
    "visibility": "internal",
    "status": "completed",
    "code": "123-OC",
    "language": "EN",
    "employment_terms": "full-time",
    "experience": "Director/ Vice President",
    "location": "San Francisco",
    "remote": true,
    "requisition_id": "abc123",
    "department": {
      "id": "12345",
      "parent_id": "22345",
      "name": "R&D",
      "code": "2",
      "description": "R&D",
      "custom_mappings": {},
      "updated_by": "12345",
      "created_by": "12345",
      "updated_at": "2020-09-30T07:43:32.000Z",
      "created_at": "2020-09-30T07:43:32.000Z"
    },
    "branch": {
      "id": "123",
      "name": "HQ NY"
    },
    "recruiters": [
      "a0d636c6-43b3-4bde-8c70-85b707d992f4"
    ],
    "hiring_managers": [
      "123456"
    ],
    "followers": [
      "a0d636c6-43b3-4bde-8c70-85b707d992f4",
      "a98lfd96-43b3-4bde-8c70-85b707d992e6"
    ],
    "description": "A description",
    "description_html": "string",
    "blocks": [
      {
        "title": "string",
        "content": "string"
      }
    ],
    "closing": "The closing section of the job description",
    "closing_html": "string",
    "closing_date": "2020-10-30",
    "salary": {
      "min": 8000,
      "max": 10000,
      "currency": "USD",
      "interval": "year"
    },
    "url": "string",
    "job_portal_url": "string",
    "record_url": "https://app.intercom.io/contacts/12345",
    "links": [
      {
        "type": "job_portal",
        "url": "https://app.intercom.io/contacts/12345"
      }
    ],
    "confidential": false,
    "available_to_employees": false,
    "tags": [
      "New"
    ],
    "addresses": [
      {
        "id": "123",
        "type": "primary",
        "string": "25 Spring Street, Blackburn, VIC 3130",
        "name": "HQ US",
        "line1": "Main street",
        "line2": "apt #",
        "line3": "Suite #",
        "line4": "delivery instructions",
        "street_number": "25",
        "city": "San Francisco",
        "state": "CA",
        "postal_code": "94104",
        "country": "US",
        "latitude": "40.759211",
        "longitude": "-73.984638",
        "county": "Santa Clara",
        "contact_name": "Elon Musk",
        "salutation": "Mr",
        "phone_number": "111-111-1111",
        "fax": "122-111-1111",
        "email": "elon@musk.com",
        "website": "https://elonmusk.com",
        "notes": "Address notes or delivery instructions.",
        "row_version": "1-12345"
      }
    ],
    "custom_fields": [
      {
        "id": "2389328923893298",
        "name": "employee_level",
        "description": "Employee Level",
        "value": "Uses Salesforce and Marketo"
      }
    ],
    "deleted": true,
    "owner_id": "54321",
    "published_at": "2020-09-30T07:43:32.000Z",
    "custom_mappings": {},
    "updated_by": "12345",
    "created_by": "12345",
    "updated_at": "2020-09-30T07:43:32.000Z",
    "created_at": "2020-09-30T07:43:32.000Z"
  }
}

Applicants

The Applicants model

idstring

A unique identifier for an object.

position_idstring

The PositionId the applicant applied for.

namestring

The name of an applicant.

first_namestring or null

The first name of the person.

last_namestring or null

The last name of the person.

middle_namestring or null

Middle name of the person.

Applicants example
{}

List Applicants

get
https://unify.apideck.com/ats/applicants

List Applicants

Authorizations:

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

cursorstring or null

Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.

limitinteger[ 1 .. 200 ]
Default:20

Number of results to return. Minimum 1, Maximum 200, Default 20

filterobjectfilter[job_id]=1234

Apply filters

pass_throughobjectpass_through[example_downstream_property]=example_downstream_property

Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads

fieldsstring or null

The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: fields=name,email,addresses.city

In the example above, the response will only include the fields "name", "email" and "addresses.city". If any other fields are available, they will be excluded.

Responses

200Applicants
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable

Mapping coverage per connector

Freshteam
Greenhouse
Lever
Recruitee
Sage HR
SAP SuccessFactors
Teamtailor
Workable
Workday

Request example

Node
import { Apideck } from '@apideck/node'

const apideck = new Apideck({
  apiKey: 'REPLACE_WITH_API_KEY',
  appId: 'REPLACE_WITH_APP_ID',
  consumerId: 'REPLACE_WITH_CONSUMER_ID'
})

try {
  const { data } = await apideck.ats.applicantsAll({})
  console.log('API called successfully', data)
} catch (error) {
  console.error(error)
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "lever",
  "resource": "Applicants",
  "operation": "all",
  "data": [
    {
      "id": "12345",
      "position_id": "123",
      "name": "Elon Musk",
      "first_name": "Elon",
      "last_name": "Musk",
      "middle_name": "D.",
      "initials": "EM",
      "birthday": "2000-08-12",
      "cover_letter": "I submit this application to express my sincere interest in the API developer position. In the previous role, I was responsible for leadership and ...",
      "job_url": "https://democompany.recruitee.com/o/example-talent-pool",
      "photo_url": "https://unavatar.io/elon-musk",
      "headline": "PepsiCo, Inc, Central Perk",
      "title": "CEO",
      "emails": [
        {
          "id": "123",
          "email": "elon@musk.com",
          "type": "primary"
        }
      ],
      "custom_fields": [
        {
          "id": "2389328923893298",
          "name": "employee_level",
          "description": "Employee Level",
          "value": "Uses Salesforce and Marketo"
        }
      ],
      "phone_numbers": [
        {
          "id": "12345",
          "country_code": "1",
          "area_code": "323",
          "number": "111-111-1111",
          "extension": "105",
          "type": "primary"
        }
      ],
      "addresses": [
        {
          "id": "123",
          "type": "primary",
          "string": "25 Spring Street, Blackburn, VIC 3130",
          "name": "HQ US",
          "line1": "Main street",
          "line2": "apt #",
          "line3": "Suite #",
          "line4": "delivery instructions",
          "street_number": "25",
          "city": "San Francisco",
          "state": "CA",
          "postal_code": "94104",
          "country": "US",
          "latitude": "40.759211",
          "longitude": "-73.984638",
          "county": "Santa Clara",
          "contact_name": "Elon Musk",
          "salutation": "Mr",
          "phone_number": "111-111-1111",
          "fax": "122-111-1111",
          "email": "elon@musk.com",
          "website": "https://elonmusk.com",
          "notes": "Address notes or delivery instructions.",
          "row_version": "1-12345"
        }
      ],
      "websites": [
        {
          "id": "12345",
          "url": "http://example.com",
          "type": "primary"
        }
      ],
      "social_links": [
        {
          "id": "12345",
          "url": "https://www.twitter.com/apideck",
          "type": "twitter"
        }
      ],
      "stage_id": "12345",
      "recruiter_id": "12345",
      "coordinator_id": "12345",
      "application_ids": [
        "a0d636c6-43b3-4bde-8c70-85b707d992f4",
        "a98lfd96-43b3-4bde-8c70-85b707d992e6"
      ],
      "applications": [
        "a0d636c6-43b3-4bde-8c70-85b707d992f4",
        "a98lfd96-43b3-4bde-8c70-85b707d992e6"
      ],
      "followers": [
        "a0d636c6-43b3-4bde-8c70-85b707d992f4",
        "a98lfd96-43b3-4bde-8c70-85b707d992e6"
      ],
      "sources": [
        "Job site"
      ],
      "source_id": "12345",
      "confidential": false,
      "anonymized": true,
      "tags": [
        "New"
      ],
      "archived": false,
      "last_interaction_at": "2020-09-30T07:43:32.000Z",
      "owner_id": "54321",
      "sourced_by": "12345",
      "cv_url": "https://recruitee-main.s3.eu-central-1.amazonaws.com/candidates/36615291/pdf_cv_38swhu4w42k1.pdf?response-content-disposition=inline&response-content-type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQYHB7CA5RLR4Y3ON%2F20220514%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20220514T235654Z&X-Amz-Expires=36000&X-Amz-SignedHeaders=host&X-Amz-Signature=72c0621f5976db75b54de487eb821a8e73480d7f2a6a4a9713ab997944b0561f",
      "record_url": "https://app.intercom.io/contacts/12345",
      "rejected_at": "2020-09-30T07:43:32.000Z",
      "custom_mappings": {},
      "deleted": true,
      "deleted_by": "12345",
      "deleted_at": "2020-09-30T07:43:32.000Z",
      "updated_by": "12345",
      "created_by": "12345",
      "updated_at": "2020-09-30T07:43:32.000Z",
      "created_at": "2020-09-30T07:43:32.000Z"
    }
  ],
  "meta": {
    "items_on_page": 50,
    "cursors": {
      "previous": "em9oby1jcm06OnBhZ2U6OjE=",
      "current": "em9oby1jcm06OnBhZ2U6OjI=",
      "next": "em9oby1jcm06OnBhZ2U6OjM="
    }
  },
  "links": {
    "previous": "https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D",
    "current": "https://unify.apideck.com/crm/companies",
    "next": "https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM"
  }
}

Create Applicant

post
https://unify.apideck.com/ats/applicants

Create Applicant

Authorizations:

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

Request body schema

application/json
position_idstring

The PositionId the applicant applied for.

namestring

The name of an applicant.

first_namestring or null

The first name of the person.

last_namestring or null

The last name of the person.

middle_namestring or null

Middle name of the person.

initialsstring or null

The initials of the person, usually derived from their first, middle, and last names.

birthdaystring or null

The date of birth of the person.

cover_letterstring
photo_urlstring or null

The URL of the photo of a person.

headlinestring

Typically a list of previous companies where the contact has worked or schools that the contact has attended

titlestring or null

The job title of the person.

emailsobjects
custom_fieldsobjects
phone_numbersobjects
addressesobjects
websitesobjects
social_linksobjects
stage_idstring
recruiter_idstring
coordinator_idstring
application_idsstrings or null
applicationsstrings or null
followersstrings or null
sourcesstrings or null
confidentialboolean
anonymizedboolean
tagsstrings or null
archivedboolean or null
owner_idstring or null
record_urlstring or null
deletedboolean or null

Flag to indicate if the object is deleted.

Responses

201Applicants
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable

Mapping coverage per connector

Greenhouse
Lever
Sage HR
SAP SuccessFactors
Teamtailor
Freshteam
Request
Recruitee
Request
Workable
Request
Workday
Request

Request example

{
  "position_id": "123",
  "name": "Elon Musk",
  "first_name": "Elon",
  "last_name": "Musk",
  "middle_name": "D.",
  "initials": "EM",
  "birthday": "2000-08-12",
  "cover_letter": "I submit this application to express my sincere interest in the API developer position. In the previous role, I was responsible for leadership and ...",
  "photo_url": "https://unavatar.io/elon-musk",
  "headline": "PepsiCo, Inc, Central Perk",
  "title": "CEO",
  "emails": [
    {
      "id": "123",
      "email": "elon@musk.com",
      "type": "primary"
    }
  ],
  "custom_fields": [
    {
      "id": "2389328923893298",
      "name": "employee_level",
      "description": "Employee Level",
      "value": "Uses Salesforce and Marketo"
    }
  ],
  "phone_numbers": [
    {
      "id": "12345",
      "country_code": "1",
      "area_code": "323",
      "number": "111-111-1111",
      "extension": "105",
      "type": "primary"
    }
  ],
  "addresses": [
    {
      "id": "123",
      "type": "primary",
      "string": "25 Spring Street, Blackburn, VIC 3130",
      "name": "HQ US",
      "line1": "Main street",
      "line2": "apt #",
      "line3": "Suite #",
      "line4": "delivery instructions",
      "street_number": "25",
      "city": "San Francisco",
      "state": "CA",
      "postal_code": "94104",
      "country": "US",
      "latitude": "40.759211",
      "longitude": "-73.984638",
      "county": "Santa Clara",
      "contact_name": "Elon Musk",
      "salutation": "Mr",
      "phone_number": "111-111-1111",
      "fax": "122-111-1111",
      "email": "elon@musk.com",
      "website": "https://elonmusk.com",
      "notes": "Address notes or delivery instructions.",
      "row_version": "1-12345"
    }
  ],
  "websites": [
    {
      "id": "12345",
      "url": "http://example.com",
      "type": "primary"
    }
  ],
  "social_links": [
    {
      "id": "12345",
      "url": "https://www.twitter.com/apideck",
      "type": "twitter"
    }
  ],
  "stage_id": "12345",
  "recruiter_id": "12345",
  "coordinator_id": "12345",
  "application_ids": [
    "a0d636c6-43b3-4bde-8c70-85b707d992f4",
    "a98lfd96-43b3-4bde-8c70-85b707d992e6"
  ],
  "applications": [
    "a0d636c6-43b3-4bde-8c70-85b707d992f4",
    "a98lfd96-43b3-4bde-8c70-85b707d992e6"
  ],
  "followers": [
    "a0d636c6-43b3-4bde-8c70-85b707d992f4",
    "a98lfd96-43b3-4bde-8c70-85b707d992e6"
  ],
  "sources": [
    "Job site"
  ],
  "confidential": false,
  "anonymized": true,
  "tags": [
    "New"
  ],
  "archived": false,
  "owner_id": "54321",
  "record_url": "https://app.intercom.io/contacts/12345",
  "deleted": true
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "lever",
  "resource": "Applicants",
  "operation": "add",
  "data": {
    "id": "12345"
  }
}

Get Applicant

get
https://unify.apideck.com/ats/applicants/{id}

Get Applicant

Authorizations:

Path parameters

idstring
required

ID of the record you are acting upon.

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

fieldsstring or null

The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation.

Example: fields=name,email,addresses.city

In the example above, the response will only include the fields "name", "email" and "addresses.city". If any other fields are available, they will be excluded.

Responses

200Applicants
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable

Mapping coverage per connector

Freshteam
Greenhouse
Lever
Recruitee
Sage HR
SAP SuccessFactors
Teamtailor
Workable
Workday

Request example

Node
import { Apideck } from '@apideck/node'

const apideck = new Apideck({
  apiKey: 'REPLACE_WITH_API_KEY',
  appId: 'REPLACE_WITH_APP_ID',
  consumerId: 'REPLACE_WITH_CONSUMER_ID'
})

try {
  const { data } = await apideck.ats.applicantsOne({
    id: 'id_example'
  })
  console.log('API called successfully', data)
} catch (error) {
  console.error(error)
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "lever",
  "resource": "Applicants",
  "operation": "one",
  "data": {
    "id": "12345",
    "position_id": "123",
    "name": "Elon Musk",
    "first_name": "Elon",
    "last_name": "Musk",
    "middle_name": "D.",
    "initials": "EM",
    "birthday": "2000-08-12",
    "cover_letter": "I submit this application to express my sincere interest in the API developer position. In the previous role, I was responsible for leadership and ...",
    "job_url": "https://democompany.recruitee.com/o/example-talent-pool",
    "photo_url": "https://unavatar.io/elon-musk",
    "headline": "PepsiCo, Inc, Central Perk",
    "title": "CEO",
    "emails": [
      {
        "id": "123",
        "email": "elon@musk.com",
        "type": "primary"
      }
    ],
    "custom_fields": [
      {
        "id": "2389328923893298",
        "name": "employee_level",
        "description": "Employee Level",
        "value": "Uses Salesforce and Marketo"
      }
    ],
    "phone_numbers": [
      {
        "id": "12345",
        "country_code": "1",
        "area_code": "323",
        "number": "111-111-1111",
        "extension": "105",
        "type": "primary"
      }
    ],
    "addresses": [
      {
        "id": "123",
        "type": "primary",
        "string": "25 Spring Street, Blackburn, VIC 3130",
        "name": "HQ US",
        "line1": "Main street",
        "line2": "apt #",
        "line3": "Suite #",
        "line4": "delivery instructions",
        "street_number": "25",
        "city": "San Francisco",
        "state": "CA",
        "postal_code": "94104",
        "country": "US",
        "latitude": "40.759211",
        "longitude": "-73.984638",
        "county": "Santa Clara",
        "contact_name": "Elon Musk",
        "salutation": "Mr",
        "phone_number": "111-111-1111",
        "fax": "122-111-1111",
        "email": "elon@musk.com",
        "website": "https://elonmusk.com",
        "notes": "Address notes or delivery instructions.",
        "row_version": "1-12345"
      }
    ],
    "websites": [
      {
        "id": "12345",
        "url": "http://example.com",
        "type": "primary"
      }
    ],
    "social_links": [
      {
        "id": "12345",
        "url": "https://www.twitter.com/apideck",
        "type": "twitter"
      }
    ],
    "stage_id": "12345",
    "recruiter_id": "12345",
    "coordinator_id": "12345",
    "application_ids": [
      "a0d636c6-43b3-4bde-8c70-85b707d992f4",
      "a98lfd96-43b3-4bde-8c70-85b707d992e6"
    ],
    "applications": [
      "a0d636c6-43b3-4bde-8c70-85b707d992f4",
      "a98lfd96-43b3-4bde-8c70-85b707d992e6"
    ],
    "followers": [
      "a0d636c6-43b3-4bde-8c70-85b707d992f4",
      "a98lfd96-43b3-4bde-8c70-85b707d992e6"
    ],
    "sources": [
      "Job site"
    ],
    "source_id": "12345",
    "confidential": false,
    "anonymized": true,
    "tags": [
      "New"
    ],
    "archived": false,
    "last_interaction_at": "2020-09-30T07:43:32.000Z",
    "owner_id": "54321",
    "sourced_by": "12345",
    "cv_url": "https://recruitee-main.s3.eu-central-1.amazonaws.com/candidates/36615291/pdf_cv_38swhu4w42k1.pdf?response-content-disposition=inline&response-content-type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQYHB7CA5RLR4Y3ON%2F20220514%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20220514T235654Z&X-Amz-Expires=36000&X-Amz-SignedHeaders=host&X-Amz-Signature=72c0621f5976db75b54de487eb821a8e73480d7f2a6a4a9713ab997944b0561f",
    "record_url": "https://app.intercom.io/contacts/12345",
    "rejected_at": "2020-09-30T07:43:32.000Z",
    "custom_mappings": {},
    "deleted": true,
    "deleted_by": "12345",
    "deleted_at": "2020-09-30T07:43:32.000Z",
    "updated_by": "12345",
    "created_by": "12345",
    "updated_at": "2020-09-30T07:43:32.000Z",
    "created_at": "2020-09-30T07:43:32.000Z"
  }
}

Update Applicant

patch
https://unify.apideck.com/ats/applicants/{id}

Update Applicant

Authorizations:

Path parameters

idstring
required

ID of the record you are acting upon.

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

Request body schema

application/json
position_idstring

The PositionId the applicant applied for.

namestring

The name of an applicant.

first_namestring or null

The first name of the person.

last_namestring or null

The last name of the person.

middle_namestring or null

Middle name of the person.

initialsstring or null

The initials of the person, usually derived from their first, middle, and last names.

birthdaystring or null

The date of birth of the person.

cover_letterstring
photo_urlstring or null

The URL of the photo of a person.

headlinestring

Typically a list of previous companies where the contact has worked or schools that the contact has attended

titlestring or null

The job title of the person.

emailsobjects
custom_fieldsobjects
phone_numbersobjects
addressesobjects
websitesobjects
social_linksobjects
stage_idstring
recruiter_idstring
coordinator_idstring
application_idsstrings or null
applicationsstrings or null
followersstrings or null
sourcesstrings or null
confidentialboolean
anonymizedboolean
tagsstrings or null
archivedboolean or null
owner_idstring or null
record_urlstring or null
deletedboolean or null

Flag to indicate if the object is deleted.

Responses

200Applicants
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable

Mapping coverage per connector

Greenhouse
Sage HR
SAP SuccessFactors
Teamtailor
Freshteam
Request
Lever
Request
Recruitee
Request
Workable
Request
Workday
Request

Request example

{
  "position_id": "123",
  "name": "Elon Musk",
  "first_name": "Elon",
  "last_name": "Musk",
  "middle_name": "D.",
  "initials": "EM",
  "birthday": "2000-08-12",
  "cover_letter": "I submit this application to express my sincere interest in the API developer position. In the previous role, I was responsible for leadership and ...",
  "photo_url": "https://unavatar.io/elon-musk",
  "headline": "PepsiCo, Inc, Central Perk",
  "title": "CEO",
  "emails": [
    {
      "id": "123",
      "email": "elon@musk.com",
      "type": "primary"
    }
  ],
  "custom_fields": [
    {
      "id": "2389328923893298",
      "name": "employee_level",
      "description": "Employee Level",
      "value": "Uses Salesforce and Marketo"
    }
  ],
  "phone_numbers": [
    {
      "id": "12345",
      "country_code": "1",
      "area_code": "323",
      "number": "111-111-1111",
      "extension": "105",
      "type": "primary"
    }
  ],
  "addresses": [
    {
      "id": "123",
      "type": "primary",
      "string": "25 Spring Street, Blackburn, VIC 3130",
      "name": "HQ US",
      "line1": "Main street",
      "line2": "apt #",
      "line3": "Suite #",
      "line4": "delivery instructions",
      "street_number": "25",
      "city": "San Francisco",
      "state": "CA",
      "postal_code": "94104",
      "country": "US",
      "latitude": "40.759211",
      "longitude": "-73.984638",
      "county": "Santa Clara",
      "contact_name": "Elon Musk",
      "salutation": "Mr",
      "phone_number": "111-111-1111",
      "fax": "122-111-1111",
      "email": "elon@musk.com",
      "website": "https://elonmusk.com",
      "notes": "Address notes or delivery instructions.",
      "row_version": "1-12345"
    }
  ],
  "websites": [
    {
      "id": "12345",
      "url": "http://example.com",
      "type": "primary"
    }
  ],
  "social_links": [
    {
      "id": "12345",
      "url": "https://www.twitter.com/apideck",
      "type": "twitter"
    }
  ],
  "stage_id": "12345",
  "recruiter_id": "12345",
  "coordinator_id": "12345",
  "application_ids": [
    "a0d636c6-43b3-4bde-8c70-85b707d992f4",
    "a98lfd96-43b3-4bde-8c70-85b707d992e6"
  ],
  "applications": [
    "a0d636c6-43b3-4bde-8c70-85b707d992f4",
    "a98lfd96-43b3-4bde-8c70-85b707d992e6"
  ],
  "followers": [
    "a0d636c6-43b3-4bde-8c70-85b707d992f4",
    "a98lfd96-43b3-4bde-8c70-85b707d992e6"
  ],
  "sources": [
    "Job site"
  ],
  "confidential": false,
  "anonymized": true,
  "tags": [
    "New"
  ],
  "archived": false,
  "owner_id": "54321",
  "record_url": "https://app.intercom.io/contacts/12345",
  "deleted": true
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "lever",
  "resource": "Applicants",
  "operation": "update",
  "data": {
    "id": "12345"
  }
}

Delete Applicant

delete
https://unify.apideck.com/ats/applicants/{id}

Delete Applicant

Authorizations:

Path parameters

idstring
required

ID of the record you are acting upon.

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

Responses

200Applicants
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable

Mapping coverage per connector

Greenhouse
Sage HR
Freshteam
Request
Lever
Request
Recruitee
Request
SAP SuccessFactors
Request
Teamtailor
Request
Workable
Request
Workday
Request

Request example

Node
import { Apideck } from '@apideck/node'

const apideck = new Apideck({
  apiKey: 'REPLACE_WITH_API_KEY',
  appId: 'REPLACE_WITH_APP_ID',
  consumerId: 'REPLACE_WITH_CONSUMER_ID'
})

try {
  const { data } = await apideck.ats.applicantsDelete({
    id: 'id_example'
  })
  console.log('API called successfully', data)
} catch (error) {
  console.error(error)
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "lever",
  "resource": "Applicants",
  "operation": "delete",
  "data": {
    "id": "12345"
  }
}

Applications

The Applications model

idstring

A unique identifier for an object.

applicant_idstring or null
required
job_idstring or null
required
statusstring or null
Enum:openrejectedhiredconverted
stageobject
custom_mappingsobject or null

When custom mappings are configured on the resource, the result is included here.

Applications example
{}

List Applications

get
https://unify.apideck.com/ats/applications

List Applications

Authorizations:

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

cursorstring or null

Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response.

pass_throughobjectpass_through[example_downstream_property]=example_downstream_property

Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads

limitinteger[ 1 .. 200 ]
Default:20

Number of results to return. Minimum 1, Maximum 200, Default 20

Responses

200Applications
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable

Mapping coverage per connector

SAP SuccessFactors
Teamtailor
Freshteam
Request
Greenhouse
Request
Lever
Request
Recruitee
Request
Sage HR
Request
Workable
Request
Workday
Request

Request example

Node
import { Apideck } from '@apideck/node'

const apideck = new Apideck({
  apiKey: 'REPLACE_WITH_API_KEY',
  appId: 'REPLACE_WITH_APP_ID',
  consumerId: 'REPLACE_WITH_CONSUMER_ID'
})

try {
  const { data } = await apideck.ats.applicationsAll({})
  console.log('API called successfully', data)
} catch (error) {
  console.error(error)
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "sap-successfactors",
  "resource": "Applications",
  "operation": "all",
  "data": [
    {
      "id": "12345",
      "applicant_id": "12345",
      "job_id": "12345",
      "status": "open",
      "stage": {
        "id": "12345",
        "name": "12345"
      },
      "custom_mappings": {},
      "updated_by": "12345",
      "created_by": "12345",
      "updated_at": "2020-09-30T07:43:32.000Z",
      "created_at": "2020-09-30T07:43:32.000Z"
    }
  ],
  "meta": {
    "items_on_page": 50,
    "cursors": {
      "previous": "em9oby1jcm06OnBhZ2U6OjE=",
      "current": "em9oby1jcm06OnBhZ2U6OjI=",
      "next": "em9oby1jcm06OnBhZ2U6OjM="
    }
  },
  "links": {
    "previous": "https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjE%3D",
    "current": "https://unify.apideck.com/crm/companies",
    "next": "https://unify.apideck.com/crm/companies?cursor=em9oby1jcm06OnBhZ2U6OjM"
  }
}

Create Application

post
https://unify.apideck.com/ats/applications

Create Application

Authorizations:

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

Request body schema

application/json
applicant_idstring or null
required
job_idstring or null
required
statusstring or null
Enum:openrejectedhiredconverted
stageobject

Responses

201Applications
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable

Mapping coverage per connector

SAP SuccessFactors
Teamtailor
Freshteam
Request
Greenhouse
Request
Lever
Request
Recruitee
Request
Sage HR
Request
Workable
Request
Workday
Request

Request example

{
  "applicant_id": "12345",
  "job_id": "12345",
  "status": "open",
  "stage": {
    "id": "12345",
    "name": "12345"
  }
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "sap-successfactors",
  "resource": "Applications",
  "operation": "add",
  "data": {
    "id": "12345"
  }
}

Get Application

get
https://unify.apideck.com/ats/applications/{id}

Get Application

Authorizations:

Path parameters

idstring
required

ID of the record you are acting upon.

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

Responses

200Applications
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable

Mapping coverage per connector

SAP SuccessFactors
Teamtailor
Freshteam
Request
Greenhouse
Request
Lever
Request
Recruitee
Request
Sage HR
Request
Workable
Request
Workday
Request

Request example

Node
import { Apideck } from '@apideck/node'

const apideck = new Apideck({
  apiKey: 'REPLACE_WITH_API_KEY',
  appId: 'REPLACE_WITH_APP_ID',
  consumerId: 'REPLACE_WITH_CONSUMER_ID'
})

try {
  const { data } = await apideck.ats.applicationsOne({
    id: 'id_example'
  })
  console.log('API called successfully', data)
} catch (error) {
  console.error(error)
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "sap-successfactors",
  "resource": "Applications",
  "operation": "one",
  "data": {
    "id": "12345",
    "applicant_id": "12345",
    "job_id": "12345",
    "status": "open",
    "stage": {
      "id": "12345",
      "name": "12345"
    },
    "custom_mappings": {},
    "updated_by": "12345",
    "created_by": "12345",
    "updated_at": "2020-09-30T07:43:32.000Z",
    "created_at": "2020-09-30T07:43:32.000Z"
  }
}

Update Application

patch
https://unify.apideck.com/ats/applications/{id}

Update Application

Authorizations:

Path parameters

idstring
required

ID of the record you are acting upon.

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

Request body schema

application/json
applicant_idstring or null
required
job_idstring or null
required
statusstring or null
Enum:openrejectedhiredconverted
stageobject

Responses

200Applications
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable

Mapping coverage per connector

SAP SuccessFactors
Teamtailor
Freshteam
Request
Greenhouse
Request
Lever
Request
Recruitee
Request
Sage HR
Request
Workable
Request
Workday
Request

Request example

{
  "applicant_id": "12345",
  "job_id": "12345",
  "status": "open",
  "stage": {
    "id": "12345",
    "name": "12345"
  }
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "sap-successfactors",
  "resource": "Applications",
  "operation": "update",
  "data": {
    "id": "12345"
  }
}

Delete Application

delete
https://unify.apideck.com/ats/applications/{id}

Delete Application

Authorizations:

Path parameters

idstring
required

ID of the record you are acting upon.

Header parameters

x-apideck-consumer-idstring
required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring
required

The ID of your Unify application

x-apideck-service-idstring

Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API.

Query parameters

rawboolean
Default:false

Include raw response. Mostly used for debugging purposes

Responses

200Applications
400Bad Request
401Unauthorized
402Payment Required
404The specified resource was not found
422Unprocessable
Freshteam
Request
Greenhouse
Request
Lever
Request
Recruitee
Request
Sage HR
Request
SAP SuccessFactors
Request
Teamtailor
Request
Workable
Request
Workday
Request

Request example

Node
import { Apideck } from '@apideck/node'

const apideck = new Apideck({
  apiKey: 'REPLACE_WITH_API_KEY',
  appId: 'REPLACE_WITH_APP_ID',
  consumerId: 'REPLACE_WITH_CONSUMER_ID'
})

try {
  const { data } = await apideck.ats.applicationsDelete({
    id: 'id_example'
  })
  console.log('API called successfully', data)
} catch (error) {
  console.error(error)
}

Response example

{
  "status_code": 200,
  "status": "OK",
  "service": "sap-successfactors",
  "resource": "Applications",
  "operation": "delete",
  "data": {
    "id": "12345"
  }
}

Webhook Events

Job Created
Webhook

Event broadcast when a job has been created.

Header parameters

x-apideck-event-typestring
required
Enum:*ats.job.createdats.job.updatedats.job.deleted

The type of event that was triggered

x-apideck-idempotency-keystring
required

An idempotency key is a unique value generated to recognize subsequent retries/duplicates of the same request.

Request body schema

application/json
payloadobject

Responses

200Return a 200 status to indicate that the data was received successfully.

Mapping coverage per connector

Freshteam
virtual event
Greenhouse
virtual event
Lever
virtual event
Recruitee
virtual event
Sage HR
virtual event
SAP SuccessFactors
virtual event
Teamtailor
virtual event
Workable
virtual event
Workday
virtual event

Example Event

Payload
{
  "payload": {
    "event_type": "ats.job.created",
    "unified_api": "ats",
    "service_id": "lever",
    "consumer_id": "test_user_id",
    "event_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "entity_id": "123456ASDF",
    "entity_url": "https://unify.apideck.com/ats/jobs/123456ASDF",
    "entity_type": "job",
    "occurred_at": "2020-01-01T00:00:00.000Z"
  }
}

Job Updated
Webhook

Event broadcast when a job has been updated.

Header parameters

x-apideck-event-typestring
required
Enum:*ats.job.createdats.job.updatedats.job.deleted

The type of event that was triggered

x-apideck-idempotency-keystring
required

An idempotency key is a unique value generated to recognize subsequent retries/duplicates of the same request.

Request body schema

application/json
payloadobject

Responses

200Return a 200 status to indicate that the data was received successfully.

Mapping coverage per connector

Freshteam
virtual event
Greenhouse
virtual event
Lever
virtual event
Recruitee
virtual event
Sage HR
virtual event
SAP SuccessFactors
virtual event
Teamtailor
virtual event
Workable
virtual event
Workday
virtual event

Example Event

Payload
{
  "payload": {
    "event_type": "ats.job.updated",
    "unified_api": "ats",
    "service_id": "lever",
    "consumer_id": "test_user_id",
    "event_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "entity_id": "123456ASDF",
    "entity_url": "https://unify.apideck.com/ats/jobs/123456ASDF",
    "entity_type": "job",
    "occurred_at": "2020-01-01T00:00:00.000Z"
  }
}

Job Deleted
Webhook

Event broadcast when a job has been deleted.

Header parameters

x-apideck-event-typestring
required
Enum:*ats.job.createdats.job.updatedats.job.deleted

The type of event that was triggered

x-apideck-idempotency-keystring
required

An idempotency key is a unique value generated to recognize subsequent retries/duplicates of the same request.

Request body schema

application/json
payloadobject

Responses

200Return a 200 status to indicate that the data was received successfully.
Freshteam
Request
Greenhouse
Request
Lever
Request
Recruitee
Request
Sage HR
Request
SAP SuccessFactors
Request
Teamtailor
Request
Workable
Request
Workday
Request

Example Event

Payload
{
  "payload": {
    "event_type": "ats.job.deleted",
    "unified_api": "ats",
    "service_id": "lever",
    "consumer_id": "test_user_id",
    "event_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "entity_id": "123456ASDF",
    "entity_url": "https://unify.apideck.com/ats/jobs/123456ASDF",
    "entity_type": "job",
    "occurred_at": "2020-01-01T00:00:00.000Z"
  }
}

Applicant Created
WebhookUpcoming

Event broadcast when an applicant has been created.

Header parameters

x-apideck-event-typestring
required
Enum:*ats.job.createdats.job.updatedats.job.deleted

The type of event that was triggered

x-apideck-idempotency-keystring
required

An idempotency key is a unique value generated to recognize subsequent retries/duplicates of the same request.

Request body schema

application/json
payloadobject

Responses

200Return a 200 status to indicate that the data was received successfully.

Mapping coverage per connector

Freshteam
virtual event
Greenhouse
virtual event
Lever
native event
Recruitee
virtual event
Sage HR
virtual event
SAP SuccessFactors
virtual event
Teamtailor
virtual event
Workable
virtual event
Workday
virtual event

Example Event

Payload
{
  "payload": {
    "event_type": "ats.applicant.created",
    "unified_api": "ats",
    "service_id": "lever",
    "consumer_id": "test_user_id",
    "event_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "entity_id": "123456ASDF",
    "entity_url": "https://unify.apideck.com/ats/applicants/123456ASDF",
    "entity_type": "applicant",
    "occurred_at": "2020-01-01T00:00:00.000Z"
  }
}

Applicant Updated
WebhookUpcoming

Event broadcast when an applicant has been updated.

Header parameters

x-apideck-event-typestring
required
Enum:*ats.job.createdats.job.updatedats.job.deleted

The type of event that was triggered

x-apideck-idempotency-keystring
required

An idempotency key is a unique value generated to recognize subsequent retries/duplicates of the same request.

Request body schema

application/json
payloadobject

Responses

200Return a 200 status to indicate that the data was received successfully.

Mapping coverage per connector

Freshteam
virtual event
Greenhouse
virtual event
Lever
native event
Recruitee
virtual event
Sage HR
virtual event
SAP SuccessFactors
virtual event
Teamtailor
virtual event
Workable
virtual event
Workday
virtual event

Example Event

Payload
{
  "payload": {
    "event_type": "ats.applicant.updated",
    "unified_api": "ats",
    "service_id": "lever",
    "consumer_id": "test_user_id",
    "event_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "entity_id": "123456ASDF",
    "entity_url": "https://unify.apideck.com/ats/applicants/123456ASDF",
    "entity_type": "applicant",
    "occurred_at": "2020-01-01T00:00:00.000Z"
  }
}

Applicant Deleted
WebhookUpcoming

Event broadcast when an applicant has been deleted.

Header parameters

x-apideck-event-typestring
required
Enum:*ats.job.createdats.job.updatedats.job.deleted

The type of event that was triggered

x-apideck-idempotency-keystring
required

An idempotency key is a unique value generated to recognize subsequent retries/duplicates of the same request.

Request body schema

application/json
payloadobject

Responses

200Return a 200 status to indicate that the data was received successfully.

Mapping coverage per connector

Lever
native event
Freshteam
Request
Greenhouse
Request
Recruitee
Request
Sage HR
Request
SAP SuccessFactors
Request
Teamtailor
Request
Workable
Request
Workday
Request

Example Event

Payload
{
  "payload": {
    "event_type": "ats.applicant.deleted",
    "unified_api": "ats",
    "service_id": "lever",
    "consumer_id": "test_user_id",
    "event_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "entity_id": "123456ASDF",
    "entity_url": "https://unify.apideck.com/ats/applicants/123456ASDF",
    "entity_type": "applicant",
    "occurred_at": "2020-01-01T00:00:00.000Z"
  }
}

Application Updated
Webhook

Event broadcast when an application has been updated.

Header parameters

x-apideck-idempotency-keystring
required

An idempotency key is a unique value generated to recognize subsequent retries/duplicates of the same request.

Request body schema

application/json
payloadobject

Responses

200Return a 200 status to indicate that the data was received successfully

Mapping coverage per connector

SAP SuccessFactors
virtual event
Teamtailor
virtual event
Freshteam
Request
Greenhouse
Request
Lever
Request
Recruitee
Request
Sage HR
Request
Workable
Request
Workday
Request

Example Event

Payload
{
  "payload": {
    "event_type": "ats.application.updated",
    "unified_api": "ats",
    "service_id": "lever",
    "consumer_id": "test_user_id",
    "event_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "entity_id": "123456ASDF",
    "entity_url": "https://unify.apideck.com/ats/applications/123456ASDF",
    "entity_type": "application",
    "occurred_at": "2020-01-01T00:00:00.000Z"
  }
}

Application Deleted
Webhook

Event broadcast when an application has been deleted.

Header parameters

x-apideck-idempotency-keystring
required

An idempotency key is a unique value generated to recognize subsequent retries/duplicates of the same request.

Request body schema

application/json
payloadobject

Responses

200Return a 200 status to indicate that the data was received successfully
Freshteam
Request
Greenhouse
Request
Lever
Request
Recruitee
Request
Sage HR
Request
SAP SuccessFactors
Request
Teamtailor
Request
Workable
Request
Workday
Request

Example Event

Payload
{
  "payload": {
    "event_type": "ats.application.deleted",
    "unified_api": "ats",
    "service_id": "lever",
    "consumer_id": "test_user_id",
    "event_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "entity_id": "123456ASDF",
    "entity_url": "https://unify.apideck.com/ats/applications/123456ASDF",
    "entity_type": "application",
    "occurred_at": "2020-01-01T00:00:00.000Z"
  }
}

Application Created
Webhook

Event broadcast when an application has been created.

Header parameters

x-apideck-idempotency-keystring
required

An idempotency key is a unique value generated to recognize subsequent retries/duplicates of the same request.

Request body schema

application/json
payloadobject

Responses

200Return a 200 status to indicate that the data was received successfully

Mapping coverage per connector

SAP SuccessFactors
virtual event
Teamtailor
virtual event
Freshteam
Request
Greenhouse
Request
Lever
Request
Recruitee
Request
Sage HR
Request
Workable
Request
Workday
Request

Example Event

Payload
{
  "payload": {
    "event_type": "ats.application.created",
    "unified_api": "ats",
    "service_id": "lever",
    "consumer_id": "test_user_id",
    "event_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "entity_id": "123456ASDF",
    "entity_url": "https://unify.apideck.com/ats/applications/123456ASDF",
    "entity_type": "application",
    "occurred_at": "2020-01-01T00:00:00.000Z"
  }
}