---
title: "Get a specific customer"
method: GET
path: "/api/customers/{customerId}"
tags: ["Customer"]
---

# Get a specific customer

`GET /api/customers/{customerId}`

## Path parameters

- `customerId` string, required

## Response `200`

The customer for the given id

- CustomerDto — A customer
  - `id` string, required — Id
  - `name` string, required — The name to give the customer. Must be unique to all active customers.
  - `customerCode` string, nullable — Unique identifier for this customer
  - `currencyCode` string, nullable — Currency code/denomination associated to this customer. If not provided, default to the primary currency code for the organization.
  - `url` string, uri, nullable — The Customer's website
  - `creditLimit` number, double, nullable — Credit limit
  - `paymentTermsId` string, nullable — Payment terms identifier. Please reference /api/payment-terms endpoint.
  - `paymentTerms` CommonReferenceDto — Represents a reference to a document in a DB collection
    - `id` string, nullable — Unique Id associated to the referenced object
    - `name` string, nullable — Descriptive name associated to the object
  - `salesPersonId` string, nullable — Sales person identifier. Please reference /api/users endpoint.
  - `isTaxable` boolean — Whether or not this customer is taxable on Sales Orders and Quotes
  - `taxRateIds` string[], nullable — A list of tax codes to be automatically added to new SalesOrders for the customer when AutoAddTaxLineItems process setting is enabled.
  - `externalReferences` object, nullable — External references associated with this entity.
  - `customFields` object, nullable — Custom fields that have been defined on this entity.
  - `notes` string, nullable — Notes associated to the customer.
  - `hasCustomerPortal` boolean, required — Indicates if this customer is set up to use the customer portal.
  - `customerTierId` string, nullable — Customer tier identifier. Please reference /api/customer-tiers endpoint.
  - `customerTierName` string, nullable — Customer tier name.

## Other responses

- `404` — Customer did not exist

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
