Quick Start

Set up your environment and make your first REST API call by performing the following tasks.

Prerequisites

Prerequisite More Information
Install cURL Use cURL (any REST client like Postman can also be used)
Set up authentication Authenticate

Task 1: Obtain Account Information

From your account administrator, obtain the appropriate account credentials to enable you to work with Fluid Recruiting. Specifically, you will need the "access_token" from the "Authenticate" section.

Task 2: Send a Sample Request

After you set up your REST client, you can send a sample request to ensure that your connection works. For example, suppose you want to get an account with the Identity Domain <domain>. You can use the following request:

GET
    https://<host>:<port>/fluidapi/enterprise/fluid/api/v1/ui/requisitions
    <host>:<port>: your_organization.com:<port>
    Authorization: Bearer uLOOogmZfqAJBO16SYIpjJ8P2qS+gnb8PAoWgcVF4oE=

If the request is successful, then you should receive a 200 response with a body such as the following:

HTTP/1.1: 200 OK
{

    "contextId": 4008,
    "listFormats": [
        {
            "formatId": 11489,
            "listFormatColumnInfo": [
                {
                    "columnNo": 4026,
                    "fieldsInfo": [
                        {
                            "fieldNo": 4026,
                            "alias": "F_4026",
                            "dataPath": "additionalProperties.requisitionAIF",
                            "sortingSequence": 1,
                            "displayerNo": 6,
                            "fieldName": "",
                            "fieldType": "",
                            "displaySequence": 2
                        },
   ...