External DocumentationTo learn more, visit the Oracle Netsuite documentation.
Actions
List Customers
Get a list of all customer records.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Limit | Specify the number of records retrieved in the response. |
| Offset | Specify the offset at which to start record retrieval. |
| Return All Pages | Automatically fetch all resources, page by page. |
| Search Query | The search query used to filter results. Note: For more information about the Search Query parameter format, visit Oracle Netsuite’s documentation. |
{
"links": [
{
"rel": "next",
"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/customer?limit=2&offset=2"
},
{
"rel": "last",
"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/customer?limit=2&offset=8"
},
{
"rel": "self",
"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/customer?limit=2&offset=0"
}
],
"count": 2,
"hasMore": true,
"items": [
{
"links": [
{
"rel": "self",
"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/customer/7"
}
],
"id": "7"
},
{
"links": [
{
"rel": "self",
"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/customer/2067"
}
],
"id": "2067"
}
],
"offset": 0,
"totalResults": 10
}
Was this page helpful?