# Opensource Demo Orangehrmlive — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Manage your workforce directly by creating new employee profiles and updating existing employee information within OrangeHRM's HR management system. Authenticate securely and streamline your employee record administration through simple login, creation, and editing operations.

**Category:** Other | **Website:** [opensource-demo.orangehrmlive.com/](https://opensource-demo.orangehrmlive.com/) | **Docs:** [parse.bot/marketplace/9fc475cb-d007-4938-82bb-9a93e6a106b1/opensource-demo-orangehrmlive-com-api](https://parse.bot/marketplace/9fc475cb-d007-4938-82bb-9a93e6a106b1/opensource-demo-orangehrmlive-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-opensource-demo-orangehrmlive-com-api-9fc475cb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### create_employee

Create a new employee record in OrangeHRM. Requires a prior login session. Returns the newly created employee's details including the system-assigned emp_number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `employee_id` | string | No | Custom employee ID string (e.g. '0418'). If omitted, the system may auto-assign one. |
| `encryption_key` | string | Yes | Encryption key from login response |
| `first_name` | string | Yes | Employee's first name. |
| `last_name` | string | Yes | Employee's last name. |
| `middle_name` | string | No | Employee's middle name. |
| `session_id` | string | Yes | Session ID from login response |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-opensource-demo-orangehrmlive-com-api-9fc475cb/create_employee \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"employee_id":"<string>","encryption_key":"<string>","first_name":"<string>","last_name":"<string>","middle_name":"<string>","session_id":"<string>"}'
```

### edit_employee

Edit an existing employee's personal details in OrangeHRM. Requires a prior login session. Updates the employee identified by emp_number. If first_name or last_name are not provided, fetches current values before updating.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `birthday` | string | No | Date of birth in yyyy-mm-dd format. Empty string or omitted means no birthday. |
| `driving_license_expiry` | string | No | Driver's license expiry date in yyyy-mm-dd format. Empty string or omitted means no expiry date. |
| `driving_license_no` | string | No | Driver's license number. |
| `emp_number` | string | Yes | The system-assigned employee number (empNumber from create_employee response or employee listing). |
| `employee_id` | string | No | Custom employee ID string. |
| `encryption_key` | string | Yes | Encryption key from login response |
| `first_name` | string | No | Employee's first name. If omitted, current value is preserved. |
| `gender` | string | No | Gender code. |
| `last_name` | string | No | Employee's last name. If omitted, current value is preserved. |
| `marital_status` | string | No | Marital status (e.g. 'Single', 'Married'). |
| `middle_name` | string | No | Employee's middle name. |
| `nationality_id` | string | No | Nationality ID number from OrangeHRM nationality list. |
| `other_id` | string | No | Other ID field. |
| `session_id` | string | Yes | Session ID from login response |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-opensource-demo-orangehrmlive-com-api-9fc475cb/edit_employee \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"birthday":"<string>","driving_license_expiry":"<string>","driving_license_no":"<string>","emp_number":"<string>","employee_id":"<string>","encryption_key":"<string>","first_name":"<string>","gender":"<string>","last_name":"<string>","marital_status":"<string>","middle_name":"<string>","nationality_id":"<string>","other_id":"<string>","session_id":"<string>"}'
```

### login

Authenticate with the OrangeHRM demo site using the publicly available demo credentials. This must be called before create_employee or edit_employee. Establishes a session cookie used by subsequent API calls.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-opensource-demo-orangehrmlive-com-api-9fc475cb/login \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
