StackOne · Example Payload

Stackone List Employees Example

Retrieve employees from a connected HRIS system via StackOne Unified API

IntegrationsiPaaS

Stackone List Employees Example is an example object payload from StackOne, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "List Employees Example",
  "description": "Retrieve employees from a connected HRIS system via StackOne Unified API",
  "request": {
    "method": "GET",
    "url": "https://api.stackone.com/unified/hris/employees?page=1&page_size=25",
    "headers": {
      "Authorization": "Basic {{BASE64_ENCODED_API_KEY}}",
      "x-account-id": "account_bamboohr_12345"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": [
        {
          "id": "emp_unified_001",
          "remote_id": "bamboo_emp_456",
          "first_name": "Jane",
          "last_name": "Smith",
          "email": "jane.smith@acme.com",
          "job_title": "Senior Engineer",
          "department": "Engineering",
          "employment_type": "full_time",
          "start_date": "2022-03-15",
          "created_at": "2022-03-15T09:00:00Z",
          "updated_at": "2025-12-01T14:30:00Z"
        }
      ],
      "meta": {
        "total_count": 150,
        "page": 1,
        "page_size": 25
      }
    }
  }
}