Breezy HR Data Source

Breezy HR
Create a New Data Flow
-
To create a new data flow, navigate to the Integrate section, and click the New Data Flow button. Then, select the desired flow type from the list, and click the Create button.
-
Select the Breezy HR connector tile from the list of available connectors. Then, select the credential that will be used to connect to the Breezy HR instance, and click Next; or, create a new Breezy HR credential for use in this flow.
-
In Nexla, Breezy HR data sources can be created using pre-built endpoint templates, which expedite source setup for common Breezy HR endpoints. Each template is designed specifically for the corresponding Breezy HR endpoint, making source configuration easy and efficient.
• To configure this source using a template, follow the instructions in Configure Using a Template.Breezy HR sources can also be configured manually, allowing you to ingest data from Breezy HR endpoints not included in the pre-built templates or apply further customizations to exactly suit your needs.
• To configure this source manually, follow the instructions in Configure Manually.
Configure Using a Template
Nexla provides pre-built templates that can be used to rapidly configure data sources to ingest data from common Breezy HR endpoints. Each template is designed specifically for the corresponding Breezy HR endpoint, making data source setup easy and efficient.
Endpoint Settings
-
Select the endpoint from which this source will fetch data from the Endpoint pulldown menu. Available endpoint templates are listed in the expandable boxes below. Click on an endpoint to see more information about it and how to configure your data source for this endpoint.
Endpoint Testing
Once the selected endpoint template has been configured, Nexla can retrieve a sample of the data that will be fetched according to the current settings. This allows users to verify that the source is configured correctly before saving.
-
To test the current endpoint configuration, click the Test button to the right of the endpoint selection menu. Sample data will be fetched & displayed in the Endpoint Test Result panel on the right.
-
If the sample data is not as expected, review the selected endpoint and associated settings, and make any necessary adjustments. Then, click the Test button again, and check the sample data to ensure that the correct information is displayed.
Configure Manually
Breezy HR data sources can be manually configured to ingest data from any valid Breezy HR API endpoint. Manual configuration provides maximum flexibility for endpoints not covered by pre-built templates or when you need custom URL parameters, response paths, or chained API calls (for example, fanning out from a list of positions to candidates on each position).
API Method
-
To manually configure this source, select the Advanced tab at the top of the configuration screen.
-
Select the API method that will be used for calls to the Breezy HR API from the Method pulldown menu. Breezy HR source endpoints are read-only, so GET is the appropriate choice for every data source configuration.
API Endpoint URL
- Enter the URL of the Breezy HR API endpoint from which this source will fetch data in the Set API URL field. All Breezy HR API URLs use the base
https://api.breezy.hr/v3/followed by the resource path. Most endpoints are scoped to a company, in which case the URL also includes the/company/<COMPANY_ID>/...segment.
Nexla automatically substitutes the credential's Company ID into the URL where the path expects it. For example, an endpoint URL like {'https://api.breezy.hr/v3/company/{company_id}/positions'} will be rewritten with the credential's company ID at request time.
Lookup-Based Macros (API URL)
Column values from existing lookups can also be included as macros in the API URL. Lookup-based macros are especially useful for Breezy HR because most endpoints are scoped to a position ID (or to a position and a candidate ID), so a downstream source can fan out across every position or candidate produced by an upstream source.
A common pattern is to chain a List Positions source into a candidates source: use the position _id from the upstream Nexset as a lookup-based macro for the <POSITION_ID> segment in the candidates URL.
-
To include a lookup column value macro, select the relevant lookup from the Add Lookups to Supported Macros pulldown menu.
-
Type
{at the appropriate position in the API URL, and select the lookup column-based macro from the dropdown list. Lookup-based macros are automatically populated into the macro list when a lookup is selected in the Add Lookups to Supported Macros pulldown menu.
Path to Data
If only a subset of the data that will be returned by the API endpoint is needed, you can designate the part(s) of the response that should be included in the Nexset(s) produced from this source by specifying the path to the relevant data within the response.
For Breezy HR, most list endpoints return a top-level array (use a path of $[*] to treat each element as a record), and single-resource endpoints (such as Get Position or Get Candidate) return a single object (use a path of $ to treat the response as the record). The Get Pipeline endpoint is a special case: the response is an object with a stages array, and the path $.stages[*] is used so each stage is treated as a record.
Path to Data is essential when API responses have nested structures. Without specifying the correct path, Nexla might not be able to properly parse and organize your data into usable records.
-
To specify which data should be treated as relevant in responses from this source, enter the path to the relevant data in the Set Path to Data in Response field. Breezy HR responses are always in JSON format, so the path uses JSON dot notation (for example,
$.stages[*]for the pipeline stages array).Path to Data Example (Breezy HR):For the List Candidates endpoint, the response is a top-level array of candidate objects, so the path is entered as
$[*]. For the Get Pipeline endpoint, the relevant data is a nested array of stages, so the path is entered as$.stages[*].
Autogenerate Path Suggestions
Nexla can also autogenerate data path suggestions based on the response from the API endpoint. These suggested paths can be used as-is or modified to exactly suit your needs.
-
To use this feature, click the Test button next to the Set API URL field to fetch a sample response from the API endpoint. Suggested data paths generated based on the content & format of the response will be displayed in the Suggestions box below the Set Path to Data in Response field.
-
Click on a suggestion to automatically populate the Set Path to Data in Response field with the corresponding path. The populated path can be modified directly within the field if further customization is needed.

Pagination
Several Breezy HR list endpoints (most notably List Candidates) return paged results — Breezy HR returns up to 50 records per page and exposes a page query parameter starting at 1. For manually configured sources that use a paginated endpoint, configure the pagination settings to advance pages automatically.
- In the iteration settings, select page-based pagination (
paging.incrementing), set the Start Page to1, the Page Size parameter name topage_sizeand the expected page size to50. Enable Stop on No Data so Nexla stops advancing pages once Breezy HR returns an empty page.
Source endpoints that return single objects (such as Get Position or Get Candidate) and small-fixed-cap streams (such as Get Position Activity Stream and Get Candidate Discussion Stream) are not paginated and should be configured with the static.url iteration type.
Metadata
If metadata is included in the response but is located outside of the defined path to relevant data, you can configure Nexla to include this data as common metadata in each record. This is useful when you want to preserve important contextual information that applies to all records but isn't part of the main data array.
-
To specify the location of metadata that should be included with each record, enter the path to the relevant metadata in the Path to Metadata in Response field.
- For Breezy HR (JSON-only) responses, enter the JSON path to the object or array that contains the metadata.
Request Headers
-
If Nexla should include any additional request headers in API calls to this source, enter the headers & corresponding values as comma-separated pairs in the Request Headers field (for example,
header1:value1,header2:value2).You do not need to include any headers already present in the credentials. The
Authorizationheader carrying the Breezy HR API key is added automatically based on your credential, andContent-Type: application/jsonis added based on the response format.
Endpoint Testing
After configuring all settings for the selected endpoint, Nexla can retrieve a sample of the data that will be fetched according to the current configuration. This allows users to verify that the source is configured correctly before saving.
-
To test the current endpoint configuration, click the Test button to the right of the endpoint selection menu. Sample data will be fetched & displayed in the Endpoint Test Result panel on the right.
-
If the sample data is not as expected, review the selected endpoint and associated settings, and make any necessary adjustments. Then, click the Test button again, and check the sample data to ensure that the correct information is displayed.
Save & Activate the Source
- Once all of the relevant steps in the above sections have been completed, click the Create button in the upper right corner of the screen to save and create the new Breezy HR data source. Nexla will now begin ingesting data from the configured endpoint and will organize any data that it finds into one or more Nexsets.