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

# Getting the Client ID

> Understand how to retrieve client IDs for use in your API calls.

## What is a Client ID?

A client ID is a unique identifier assigned to each client in your workspace. It's required for making API requests that interact with specific clients, such as retrieving client details or updating client information.

The client ID appears in the URL when you view a client in your workspace. For example, in the URL:

```
https://spinkart.neetoinvoice.com/admin/clients/2cef2469d56b68282951
```

The client ID is: **2cef2469d56b68282951**

### Step-by-Step Instructions

<Steps>
  <Step title="Navigate to your client details">
    Log into your NeetoInvoice workspace and navigate to the client you want to work with.
  </Step>

  <Step title="Locate the client URL">
    Once you're viewing the client details, look at your browser's address bar. The URL will contain the client ID.
  </Step>

  <Step title="Extract the client ID">
    The client ID is typically found in the URL path. Look for a pattern like:

    ```
    https://your-subdomain.neetoinvoice.com/admin/clients/{client-id}
    ```

    The `{client-id}` part is what you need.
  </Step>
</Steps>

### URL Examples

Here are some examples of how client IDs appear in URLs:

| URL Example                                                             | Client ID              |
| ----------------------------------------------------------------------- | ---------------------- |
| `https://mycompany.neetoinvoice.com/admin/clients/2cef2469d56b68282951` | `2cef2469d56b68282951` |
| `https://marketing.neetoinvoice.com/admin/clients/ab3d789f1234cdef5678` | `ab3d789f1234cdef5678` |
| `https://events.neetoinvoice.com/admin/clients/f94ac346aa728da5f91b`    | `f94ac346aa728da5f91b` |
