> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Customer

Get the properties of a customer by its ID.

<Note>
  External Documentation

  To learn more, visit the [Oracle Netsuite documentation](https://system.netsuite.com/help/helpcenter/en_US/APIs/REST_API_Browser/record/v1/2024.2/index.html#tag-customer).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter            | Description                                                                                                                    |
  | -------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
  | Customer ID          | The ID of the required customer.                                                                                               |
  | Expand Sub Resources | Select to automatically include all sublists, sublist lines, and subrecords on this record in the response.                    |
  | Fields               | A comma-separated list of fields and sublists to include in the response.<br /><br />For example: `companyName,email,entityId` |
  | Simple Enum Format   | Select to return enumeration values in a format that only shows the internal ID value.                                         |
</div>

## Example Output

```json theme={"dark"}
{
	"links": [
		{
			"rel": "self",
			"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/customer/7?expandSubResources=false&simpleEnumFormat=false"
		}
	],
	"addressBook": {
		"links": [
			{
				"rel": "self",
				"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/customer/7/addressBook"
			}
		]
	},
	"balance": 0,
	"creditHoldOverride": {
		"id": "AUTO",
		"refName": "Auto"
	},
	"currency": {
		"links": [
			{
				"rel": "self",
				"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currency/1"
			}
		],
		"id": "1",
		"refName": "USD"
	},
	"currencyList": {
		"links": [
			{
				"rel": "self",
				"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/customer/7/currencyList"
			}
		]
	},
	"dateCreated": "2025-01-19T13:10:00Z",
	"depositBalance": 0,
	"email": "aaaa@example.com",
	"emailPreference": {
		"id": "DEFAULT",
		"refName": "Default"
	},
	"emailTransactions": false,
	"entityId": "1",
	"entityStatus": {
		"links": [
			{
				"rel": "self",
				"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/customerstatus/6"
			}
		],
		"id": "6",
		"refName": "aaa"
	},
	"faxTransactions": false,
	"firstName": "aaa",
	"id": "7",
	"isAutogeneratedRepresentingEntity": false,
	"isInactive": false,
	"isPerson": true,
	"language": {
		"id": "en",
		"refName": "English (International)"
	},
	"lastModifiedDate": "2025-01-19T13:11:00Z",
	"lastName": "bbb",
	"overdueBalance": 0,
	"printTransactions": false,
	"receivablesAccount": {
		"links": [
			{
				"rel": "self",
				"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/account/-10"
			}
		],
		"id": "-10",
		"refName": "Use System Preference"
	},
	"shipComplete": false,
	"shippingCarrier": {
		"id": "aaa",
		"refName": "aaa"
	},
	"subsidiary": {
		"links": [
			{
				"rel": "self",
				"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/subsidiary/1"
			}
		],
		"id": "1",
		"refName": "aaa"
	},
	"unbilledOrders": 0
}
```

## Workflow Library Example

[Get Customer with Oracle Netsuite and Send Results Via Email](https://library.blinkops.com/workflows/get-customer-with-oracle-netsuite-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-customer-with-oracle-netsuite-and-send-results-via-email/canvas" />
</div>
