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

# OneDrive for Business

> Integrate your application with the OneDrive for Business API

## 🚀 Quickstart

Connect to OneDrive for Business with Nango and see data flow in 2 minutes.

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *OneDrive for Business*.
  </Step>

  <Step title="Authorize OneDrive for Business">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then log in to OneDrive for Business. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="Call the OneDrive for Business API">
    Let's make your first request to the OneDrive for Business API. 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/v1.0/me/drives" \
          -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: '/v1.0/me/drives',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

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

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

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

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

    To obtain your own production credentials, follow the setup guide linked below.
  </Step>
</Steps>

## 📚 OneDrive for Business Integration Guides

Nango maintained guides for common use cases.

* [How to register your own OneDrive for Business OAuth app](/api-integrations/one-drive/how-to-register-your-own-onedrive-for-business-api-oauth-app)\
  Register an OAuth app with Microsoft and obtain credentials to connect it to Nango

Official docs: [Microsoft Graph API documentation](https://learn.microsoft.com/en-us/graph/overview)

## 🧩 Pre-built syncs & actions for OneDrive for Business

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

### Others

| Function name           | Description                                                         | Type                                           | Source code                                                                                                                     |
| ----------------------- | ------------------------------------------------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
| `copy-item`             | Copy a file or folder to another location                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/copy-item.ts)             |
| `create-folder`         | Create a folder in OneDrive.                                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/create-folder.ts)         |
| `create-sharing-link`   | Create a share link for a file or folder.                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/create-sharing-link.ts)   |
| `create-upload-session` | Start a resumable upload for a large file.                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/create-upload-session.ts) |
| `delete-item`           | Delete a file or folder.                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/delete-item.ts)           |
| `delete-permission`     | Remove a sharing permission from an item                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/delete-permission.ts)     |
| `get-drive`             | Retrieve the user drive metadata.                                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/get-drive.ts)             |
| `get-item`              | Retrieve a file or folder by ID or path                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/get-item.ts)              |
| `get-permission`        | Retrieve a sharing permission on an item                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/get-permission.ts)        |
| `invite-recipients`     | Grant item access to recipients and optionally send invitations.    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/invite-recipients.ts)     |
| `list-children`         | List items under a folder                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/list-children.ts)         |
| `list-drives`           | List drives available to the authenticated user.                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/list-drives.ts)           |
| `list-permissions`      | List sharing permissions on an item                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/list-permissions.ts)      |
| `list-recent-items`     | List recently used items from the user drive.                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/list-recent-items.ts)     |
| `list-shared-items`     | List items shared with the user.                                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/list-shared-items.ts)     |
| `list-versions`         | List versions for a file.                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/list-versions.ts)         |
| `move-item`             | Move or rename a file or folder                                     | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/move-item.ts)             |
| `search-items`          | Search drive items by keyword                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/search-items.ts)          |
| `update-item`           | Update mutable file or folder metadata.                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/update-item.ts)           |
| `upload-small-file`     | Upload a small file in a single request.                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/actions/upload-small-file.ts)     |
| `drive-items`           | Sync the OneDrive file and folder hierarchy using drive root delta. | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/syncs/drive-items.ts)             |
| `folder-children`       | Sync children for selected folders                                  | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/syncs/folder-children.ts)         |
| `recent-items`          | Sync recently used drive items from OneDrive                        | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/syncs/recent-items.ts)            |
| `shared-items`          | Sync items shared with the user                                     | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/syncs/shared-items.ts)            |
| `user-files-selection`  | Sync selected OneDrive files from metadata                          | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/syncs/user-files-selection.ts)    |
| `user-files`            | Sync file metadata from the user OneDrive                           | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/one-drive/syncs/user-files.ts)              |

***
