E-conomic

E-conomic, by Visma, is an online accounting software application that promises a simplicity and level of intuitiveness suitable for use by small and medium-sized organizations of any kind.

Go to site
Explore
/
Apps
/
E-conomic

E-conomic API Integrations

Build and run workflows using the E-conomic API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The E-conomic API enables developers to access the vast majority of data and functions available through the E-conomic online accounting system. This includes accessing and manipulating customer, invoice, product, and journal data. The API also enables integration with third-party applications, such as online shopping carts and order management systems.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    e_conomic: {
      type: "app",
      app: "e_conomic",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://restapi.e-conomic.com/self`,
      headers: {
        "X-AppSecretToken": `${this.e_conomic.$auth.app_secret_token}`,
        "X-AgreementGrantToken": `${this.e_conomic.$auth.agreement_grant_token}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Choose an API to Connect with E-conomic API

1
-
12
of
1000+
apps by most popular

Authentication

E-conomic uses API keys for authentication. When you connect your E-conomic account, Pipedream securely stores the keys so you can easily authenticate to E-conomic APIs in both code and no-code steps.

To retrieve your API tokens,

  • Navigate to your E-conomic account and sign in
  • Create a app under “Apps” to get your AppSecretToken
  • Follow the installationURL to get your AgreementGrantToken
    To see more details, please see Connecting to the APIs using tokens.