> For the complete documentation index, see [llms.txt](https://docs.allmcp.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.allmcp.co/documentation/providers/salesdrive.md).

# SalesDrive

SalesDrive is the dominant e-commerce CRM in Ukraine. AllMCP provides 18 tools for order management, product catalog, payments, and reference data.

<a href="/pages/QJVxDLqxIz5KMCH5afbE" class="button primary" data-icon="table-cells">All providers</a> <a href="/pages/LCxjCVwlclt0MOQcPwvP" class="button secondary" data-icon="arrows-split-up-and-left">How connecting works</a>

***

## Connect

SalesDrive uses **three fields** for authentication: subdomain + two API keys.

{% hint style="info" icon="key" %}
**Two keys, two scopes.** The `form_key` covers orders, products, and categories; the `account_key` covers payments. You need both.
{% endhint %}

{% stepper %}
{% step %}

#### Get your Form key

Generate the Form key here:

`https://{domain}.salesdrive.me/ru/index.html?formId=1#/web-form/new-api-key-form`

This key is used for orders, products, and categories.
{% endstep %}

{% step %}

#### Get your Account key

Generate the Account key here:

`https://{domain}.salesdrive.me/ru/index.html?formId=1#/web-form/new-api-key-account`

This key is used for payments.
{% endstep %}

{% step %}

#### Connect

Ask your agent to connect SalesDrive. You'll be asked for three values:

* **domain** — your bare subdomain, e.g. `your-shop` from `your-shop.salesdrive.me`
* **form\_key** — the Form key from the first step (orders, products, categories)
* **account\_key** — the Account key from the second step (payments)

AllMCP stores these securely so your agent can call SalesDrive on your behalf.
{% endstep %}
{% endstepper %}

***

## Tools by category

{% tabs %}
{% tab title="Orders" %}

| Tool                      | Description                                                    |
| ------------------------- | -------------------------------------------------------------- |
| `salesdrive_list_orders`  | Find orders by date, status, customer, and many other filters. |
| `salesdrive_get_order`    | Retrieve the full details of a single order by its ID.         |
| `salesdrive_create_order` | Add a new order to your shop.                                  |
| `salesdrive_update_order` | Change an existing order's fields or move it to a new status.  |
| {% endtab %}              |                                                                |

{% tab title="Products" %}

| Tool                         | Description                                                      |
| ---------------------------- | ---------------------------------------------------------------- |
| `salesdrive_get_product`     | Retrieve the details of a single product by its ID.              |
| `salesdrive_create_product`  | Add a new product to your catalog.                               |
| `salesdrive_update_product`  | Change the price, name, or other details of an existing product. |
| `salesdrive_delete_product`  | Remove a single product from your catalog.                       |
| `salesdrive_delete_products` | Remove several products from your catalog in one go.             |
| `salesdrive_upsert_products` | Create or update up to 100 products at once from a single list.  |
| {% endtab %}                 |                                                                  |

{% tab title="Categories" %}

| Tool                           | Description                                          |
| ------------------------------ | ---------------------------------------------------- |
| `salesdrive_upsert_categories` | Create or update several product categories at once. |
| `salesdrive_delete_categories` | Remove product categories from your catalog.         |
| {% endtab %}                   |                                                      |

{% tab title="Reference" %}
Read-only reference data: order statuses, payment methods, delivery methods.
{% endtab %}

{% tab title="Payments" %}

| Tool                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `salesdrive_list_payments`  | Browse payment records across your account.         |
| `salesdrive_get_payment`    | Retrieve the details of a single payment by its ID. |
| `salesdrive_create_payment` | Record a new payment against an order.              |
| {% endtab %}                |                                                     |
| {% endtabs %}               |                                                     |

***

## Common workflows

{% tabs %}
{% tab title="New orders today" %}

```
List all orders created today with their status and total amount
```

{% endtab %}

{% tab title="Product update" %}

```
Update the price of product ID 456 to 1200 UAH
```

{% endtab %}

{% tab title="Batch product sync" %}

```
Create or update these 50 products from the provided data
```

{% endtab %}
{% endtabs %}

***

## Notes

{% hint style="warning" %}

* `domain` is the bare subdomain (e.g., `shop-name` from `shop-name.salesdrive.me`)
* The `form_key` is used for orders, products, and categories; the `account_key` for payments
* Order list supports 31 filter parameters — use natural language and let the agent pick the right ones
  {% endhint %}

***

<table data-view="cards"><thead><tr><th></th><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><h4><i class="fa-table-cells" style="color:$primary;">:table-cells:</i></h4></td><td><strong>All providers</strong></td><td>Browse every connected provider.</td><td><a href="/pages/QJVxDLqxIz5KMCH5afbE">/pages/QJVxDLqxIz5KMCH5afbE</a></td></tr><tr><td><h4><i class="fa-bolt" style="color:$primary;">:bolt:</i></h4></td><td><strong>System tools</strong></td><td>The five always-on tools every connection ships with.</td><td><a href="https://docs.allmcp.co/documentation/api-reference/system-tools">https://docs.allmcp.co/documentation/api-reference/system-tools</a></td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.allmcp.co/documentation/providers/salesdrive.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
