Workleap · Example Payload

Workleap Create User Example

Example request body for creating a user in Workleap

Employee ExperienceHREngagementPulse SurveysPerformance ManagementOfficevibeUser ProvisioningHRISRecognitionOnboarding

Workleap Create User Example is an example object payload from Workleap, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

descriptionendpointheadersrequestresponse

Example Payload

Raw ↑
{
  "description": "Example request body for creating a user in Workleap",
  "endpoint": "POST /public/users",
  "headers": {
    "workleap-subscription-key": "your-api-key-here",
    "Content-Type": "application/json"
  },
  "request": {
    "email": "jane.smith@example.com",
    "firstName": "Jane",
    "lastName": "Smith",
    "jobTitle": "Product Manager",
    "department": "Product",
    "managerId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
  },
  "response": {
    "userId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "email": "jane.smith@example.com",
    "firstName": "Jane",
    "lastName": "Smith",
    "status": "active",
    "jobTitle": "Product Manager",
    "department": "Product",
    "managerId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "createdAt": "2026-06-13T10:00:00Z",
    "updatedAt": "2026-06-13T10:00:00Z"
  }
}