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

# Microsoft Dynamics 365 Finance and Operations (Client Credentials)

> Integrate your application with the Microsoft Dynamics 365 Finance and Operations API using Client Credentials

## 🚀 Quickstart

Connect to Microsoft Dynamics 365 Finance and Operations (Client Credentials) with Nango and see data flow in 2 minutes.

<Steps>
  <Step id="create-integration" title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *Microsoft Dynamics 365 Finance and Operations (Client Credentials)*.
  </Step>

  <Step id="authorize-dynamics-365-finance-and-operations-cc" title="Authorize Microsoft Dynamics 365 Finance and Operations (Client Credentials)">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then enter your **Tenant ID**, **Environment URL**, **Client ID**, and **Client Secret**. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step id="call-the-api" title="Call the Microsoft Dynamics 365 Finance and Operations API">
    Let's make your first request to the Microsoft Dynamics 365 Finance and Operations OData API (list the data entities available in the environment). Replace the placeholders below with your [secret key](https://app.nango.dev/dev/environment-settings), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        curl "https://api.nango.dev/proxy/data" \
          -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
          -H "Provider-Config-Key: <INTEGRATION-ID>" \
          -H "Connection-Id: <CONNECTION-ID>"
        ```
      </Tab>

      <Tab title="Node">
        Install Nango's backend SDK with `npm i @nangohq/node`. Then run:

        ```typescript theme={null}
        import { Nango } from '@nangohq/node';

        const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });

        const res = await nango.get({
            endpoint: '/data',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

        console.log(res.data);
        ```
      </Tab>
    </Tabs>

    Or fetch credentials with the [Node SDK](/docs/reference/sdks/node#get-a-connection-with-credentials) or [API](/docs/reference/api/connection/get).

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.
  </Step>

  <Step id="implement-in-app" title="Implement Nango in your app">
    Follow our [Auth implementation guide](/docs/guides/primitives/auth) to integrate Nango in your app.

    To obtain your own production credentials, follow the [connect guide](/docs/api-integrations/microsoft-dynamics-365-finance-and-operations-cc/connect) linked below.
  </Step>
</Steps>

## 📚 Microsoft Dynamics 365 Finance and Operations (Client Credentials) Integration Guides

Nango maintained guides for common use cases.

* [How do I link my account?](/docs/api-integrations/microsoft-dynamics-365-finance-and-operations-cc/connect)
  Find your Tenant ID, Environment URL, Client ID, and Client Secret to connect Microsoft Dynamics 365 Finance and Operations

Official docs: [Service endpoints overview](https://learn.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/services-home-page)

## 🧩 Pre-built syncs & actions for Microsoft Dynamics 365 Finance and Operations (Client Credentials)

Enable them in your dashboard. Extend and customize to fit your needs.

### Others

| Function name                         | Description                                                                 | Type                                           | Source code                                                                                                                                                                          |
| ------------------------------------- | --------------------------------------------------------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `create-customer`                     | Create a customer.                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/create-customer.ts)                     |
| `create-free-text-invoice`            | Create a free text invoice header                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/create-free-text-invoice.ts)            |
| `create-ledger-journal`               | Create a general ledger journal header.                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/create-ledger-journal.ts)               |
| `create-purchase-order`               | Create a purchase order header.                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/create-purchase-order.ts)               |
| `create-sales-order`                  | Create a sales order header.                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/create-sales-order.ts)                  |
| `create-sales-quotation`              | Create a sales quotation header.                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/create-sales-quotation.ts)              |
| `create-vendor`                       | Create a vendor.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/create-vendor.ts)                       |
| `delete-free-text-invoice`            | Delete a draft (unposted) free text invoice header.                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/delete-free-text-invoice.ts)            |
| `delete-ledger-journal`               | Delete a draft (unposted) general ledger journal header                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/delete-ledger-journal.ts)               |
| `delete-sales-quotation`              | Delete a draft sales quotation header.                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/delete-sales-quotation.ts)              |
| `get-customer-payment-journal`        | Retrieve a customer payment journal header.                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/get-customer-payment-journal.ts)        |
| `get-customer`                        | Retrieve a customer.                                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/get-customer.ts)                        |
| `get-free-text-invoice`               | Retrieve a free text invoice header.                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/get-free-text-invoice.ts)               |
| `get-ledger-journal`                  | Retrieve a general ledger journal header                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/get-ledger-journal.ts)                  |
| `get-purchase-order`                  | Retrieve a purchase order header.                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/get-purchase-order.ts)                  |
| `get-released-product`                | Retrieve a released product                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/get-released-product.ts)                |
| `get-sales-order`                     | Retrieve a sales order header                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/get-sales-order.ts)                     |
| `get-sales-quotation`                 | Retrieve a sales quotation header.                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/get-sales-quotation.ts)                 |
| `get-vendor-payment-journal`          | Retrieve a vendor payment journal header.                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/get-vendor-payment-journal.ts)          |
| `get-vendor`                          | Retrieve a vendor.                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/get-vendor.ts)                          |
| `list-chart-of-accounts`              | List charts of accounts.                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-chart-of-accounts.ts)              |
| `list-currencies`                     | List currencies configured for the tenant.                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-currencies.ts)                     |
| `list-customer-groups`                | List customer groups (used as CustomerGroupId on customers).                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-customer-groups.ts)                |
| `list-customer-payment-journal-lines` | List customer payment journal lines, optionally scoped to a parent journal. | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-customer-payment-journal-lines.ts) |
| `list-customer-payment-journals`      | List customer (AR) payment journal headers.                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-customer-payment-journals.ts)      |
| `list-customer-payment-methods`       | List customer payment methods.                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-customer-payment-methods.ts)       |
| `list-customers`                      | List customers.                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-customers.ts)                      |
| `list-free-text-invoice-lines`        | List free text invoice lines, optionally scoped to a parent invoice.        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-free-text-invoice-lines.ts)        |
| `list-free-text-invoices`             | List free text (miscellaneous) customer invoice headers.                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-free-text-invoices.ts)             |
| `list-ledger-journal-lines`           | List general ledger journal lines, optionally scoped to a parent journal.   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-ledger-journal-lines.ts)           |
| `list-ledger-journals`                | List general ledger journal headers                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-ledger-journals.ts)                |
| `list-legal-entities`                 | List legal entities (companies/data areas).                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-legal-entities.ts)                 |
| `list-main-accounts`                  | List general ledger main accounts.                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-main-accounts.ts)                  |
| `list-payment-terms`                  | List payment terms.                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-payment-terms.ts)                  |
| `list-purchase-order-lines`           | List purchase order lines, optionally scoped to a parent purchase order.    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-purchase-order-lines.ts)           |
| `list-purchase-orders`                | List purchase order headers.                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-purchase-orders.ts)                |
| `list-released-products`              | List released products (items).                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-released-products.ts)              |
| `list-sales-order-lines`              | List sales order lines, optionally scoped to a parent sales order.          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-sales-order-lines.ts)              |
| `list-sales-orders`                   | List sales order headers                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-sales-orders.ts)                   |
| `list-sales-quotation-lines`          | List sales quotation lines, optionally scoped to a parent quotation.        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-sales-quotation-lines.ts)          |
| `list-sales-quotations`               | List sales quotation headers                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-sales-quotations.ts)               |
| `list-tax-groups`                     | List sales tax groups.                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-tax-groups.ts)                     |
| `list-units-of-measure`               | List units of measure.                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-units-of-measure.ts)               |
| `list-vendor-groups`                  | List vendor groups (used as VendorGroupId on vendors).                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-vendor-groups.ts)                  |
| `list-vendor-payment-journal-lines`   | List vendor payment journal lines, optionally scoped to a parent journal.   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-vendor-payment-journal-lines.ts)   |
| `list-vendor-payment-journals`        | List vendor (AP) payment journal headers                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-vendor-payment-journals.ts)        |
| `list-vendors`                        | List vendors.                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-vendors.ts)                        |
| `list-warehouses`                     | List warehouses.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-warehouses.ts)                     |
| `list-workers`                        | List workers (employees).                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/list-workers.ts)                        |
| `update-customer`                     | Update a customer.                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/update-customer.ts)                     |
| `update-purchase-order`               | Update a purchase order header                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/update-purchase-order.ts)               |
| `update-sales-order`                  | Update a sales order header.                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/update-sales-order.ts)                  |
| `update-vendor`                       | Update a vendor.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/actions/update-vendor.ts)                       |
| `customer-payment-journals`           | Sync customer (AR) payment journal headers                                  | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/customer-payment-journals.ts)             |
| `customers`                           | Sync customers.                                                             | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/customers.ts)                             |
| `free-text-invoices`                  | Sync free text (miscellaneous) customer invoice headers                     | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/free-text-invoices.ts)                    |
| `ledger-journals`                     | Sync general ledger journal headers                                         | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/ledger-journals.ts)                       |
| `legal-entities`                      | Sync legal entities (companies/data areas).                                 | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/legal-entities.ts)                        |
| `main-accounts`                       | Sync general ledger main accounts.                                          | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/main-accounts.ts)                         |
| `purchase-order-lines`                | Sync purchase order lines.                                                  | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/purchase-order-lines.ts)                  |
| `purchase-orders`                     | Sync purchase order headers.                                                | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/purchase-orders.ts)                       |
| `released-products`                   | Sync released products (items) from ReleasedProductsV2.                     | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/released-products.ts)                     |
| `sales-order-lines`                   | Sync sales order lines.                                                     | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/sales-order-lines.ts)                     |
| `sales-orders`                        | Sync sales order headers                                                    | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/sales-orders.ts)                          |
| `sales-quotations`                    | Sync sales quotation headers                                                | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/sales-quotations.ts)                      |
| `vendor-payment-journals`             | Sync vendor (AP) payment journal headers                                    | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/vendor-payment-journals.ts)               |
| `vendors`                             | Sync vendors                                                                | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/vendors.ts)                               |
| `warehouses`                          | Sync warehouses.                                                            | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/warehouses.ts)                            |
| `workers`                             | Sync workers (employees)                                                    | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/microsoft-dynamics-365-finance-and-operations-cc/syncs/workers.ts)                               |

## API gotchas

* You don't need to set a `scope` yourself — Nango generates it from the **Environment URL** you provide when connecting, and uses that same URL as the API base URL.

***
