Get a list of employee records with optional filtering.
External DocumentationTo learn more, visit the Oracle Netsuite documentation.

Parameters

ParameterDescription
LimitSpecify the number of records in the result.
OffsetThe offset used for selecting a specific page of results.
Return All PagesAutomatically fetch all resources, page by page.
Search QueryThe search query used to filter results.

Example Output

{
	"count": 3,
	"hasMore": false,
	"items": [
		{
			"accountNumber": "EMP001",
			"adpid": "ADP12345",
			"alienNumber": "A12345678",
			"approvalLimit": 5000.00,
			"approver": {
				"id": "1234",
				"name": "Jane Smith"
			},
			"baseWage": 75000.00,
			"baseWageType": {
				"id": "annual",
				"refName": "Annual Salary"
			},
			"birthdate": "1985-06-15",
			"bonusTarget": 10000.00,
			"department": "engineering"
		},
		{
			"accountNumber": "EMP002",
			"adpid": "ADP23456",
			"approvalLimit": 2500.00,
			"approver": {
				"id": "5678",
				"name": "John Doe"
			},
			"baseWage": 85000.00,
			"baseWageType": {
				"id": "annual",
				"refName": "Annual Salary"
			},
			"birthdate": "1990-03-22",
			"bonusTarget": 8500.00,
			"department": "marketing"
		}
	],
	"links": [
		{
			"href": "/api/v1/employees?page=1",
			"rel": "self"
		},
		{
			"href": "/api/v1/employees?page=2",
			"rel": "next"
		}
	],
	"offset": 0,
	"totalResults": 256
}

Workflow Library Example

List Employees with Oracle Netsuite and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop