Exact Online

Provides integration with the Exact Online REST API to access and manage accounting, CRM, and other business data.

Revision History

1.0.0.0 Initial Release
1.0.0.1 Fixed validation issue when connection not set.

Properties

Connection

Type: Connection Input
The connection profile for accessing the Exact Online API.

BaseUrl
Type: String
The base URL of your Exact Online environment.

ClientId
Type: String
The OAuth 2.0 Client ID.

ClientSecret
Type: Password
The OAuth 2.0 Client Secret.

AccessToken
Type: Password Output
Token used to authenticate API requests.

RefreshToken
Type: Password Output
Token used internally to renew the access token.

Division

Type: Int32 Input
The Division ID for the Exact Online company.

Request

Type: JSON Input
The request body for the selected API operation. Leave empty for GET requests.

Response

Type: JSON Output
The response returned by the Exact Online API.

Setup

To use this node:

  1. Register an App in Exact Online

    • Go to the Exact Online App Center.
    • Create a new app and set your platform’s OAuth redirect URI.
    • Copy the Client ID and Client Secret.
  2. Configure the Connection

    • Set the BaseUrl (e.g., https://start.exactonline.nl).
    • Enter the ClientId and ClientSecret.
  3. Connect Your Account

  4. Choose a Sample

    • Select from the available Samples to generate a request structure.
  5. Set the Division ID

Division

To obtain the Division ID:

  • Log in to Exact Online.
  • Open the Companies listing from the top-left menu.
  • Use Export as CSV to download the list.
  • In the CSV file, the ID column contains the Division value for each company.

Remarks

  • The Division is required for every request and determines which company’s data is queried.
  • Only one access token is valid per client; generating a new token will revoke the previous one.

See Also