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

# Plaid Configuration object

Layer uses Plaid to connect to pull information from your customers' external bank accounts and credit cards. The Plaid Configuration object allows you to manage the Plaid configuration associated with your Layer account.

### Attributes

<ParamField body="type" type="string">
  Resource type. Value will be: "Plaid\_Configuration"
</ParamField>

<ParamField body="client_id" type="string">
  Account-wide client id.
</ParamField>

<ParamField body="secret_last_4" type="string">
  Account-wide plaid secret. Only the last 4 characters will be displayed.
</ParamField>

<ParamField body="plaid_env_url_override" type="string">
  Plaid environment to use- either SANDBOX (which corresponds to [https://sandbox.plaid.com](https://sandbox.plaid.com)) or PRODUCTION (which corresponds to [https://production.plaid.com](https://production.plaid.com)).
</ParamField>

<ResponseExample>
  ```json Example theme={null}
  {
    "data":{
      "type":"Plaid_Configuration",
      "client_id":"6488fafd7a73ae00122004d6",
      "secret_last_4":"acae",
      "plaid_env_url_override": "SANDBOX"
    }
  }
  ```
</ResponseExample>
