Create an Applicant

Time Status User Agent
Make a request to see history.

URL Expired

The URL for this request expired after 30 days.

Create an applicant

To create an applicant, pass the required attributes and you are ready to go.

Note for Funnel ID

Although funnel_id is not required, applicants created without a specified funnel_id will be placed in the first opening ever created in the account. Use the funnel_id parameter to indicate which opening the applicant should be created within. Use the GET List All Openings method to retrieve the unique Funnel IDs in your account.

Duplicate Applicant Settings

By default, the create applicant action will honor the per-opening restrictions that are configured in your organizations' "Duplicate Applicant" settings. These include options such as limiting applicants to applying to an opening only once, for example. If you want to opt-in to additional duplicate filtering rules in your company settings (such as "Block application if rejection reason is Excess Capacity", for example), you must include the check_if_applicant_is_duplicate: true parameter in the body of your POST request.

Only the following specific types of secure data are supported. They can be sent to Fountain through a standard POST request if sent as 'secure_data[ethnicity]'.

Secure Fields

You can also add secure fields by passing in a secure_data array along with the standard data array. These fields are encrypted in our system, so you should use them for personally identifiable and sensitive information like SSN, driver's license numbers, etc. Supported fields include:

name

string

required

Applicants full name.

email

string

required

Applicants email.

phone_number

string

required

Applicants complete phone number.

check_if_applicant_is_duplicate

boolean

Applies additional duplicate applicant blocking rules specified in company duplicate settings.

truefalse

application_locale

string | null

Locale/language code for the applicant (e.g. "en", "es", "fr"). Only applied when the account has the polyglot feature enabled.

consent_sms_transactional

boolean

Applicant has consented to transactional SMS.

truefalse

consent_sms_marketing

boolean

Applicant has consented to marketing SMS.

truefalse

consent_calls_transactional

boolean

Applicant has consented to transactional voice calls.

truefalse

consent_calls_marketing

boolean

Applicant has consented to marketing voice calls.

truefalse

```201 OK

```403 Forbidden

Updated 3 months ago


ShellNodeRubyPHPPython


xxxxxxxxxx

curl --request POST \
     --url https://api.fountain.com/v2/applicants \
     --header 'accept: application/json' \
     --header 'content-type: application/json'

Click Try It! to start a request and see the response here! Or choose an example:

application/json

201403

Updated 3 months ago