The Exact Online Client SDK provides a rich application framework and simplifies the interconnection with the Exact Online RESTful API. The Exact Online API can help you to quickly integrate with Exact Online and build innovative apps within the .NET environment. This document describes how to get started using the Exact Online Client SDK. The sample code in this document is in C#
You can open sample console application solution that recommends you how to use ExactOnline.Client.Sdk
ConsoleApplication.sln
Include following references in your web project:
- ExactOnline.Client.Models.dll
- ExactOnline.Client.Sdk
Add following namespaces in your code file:
using ExactOnline.Client.Models;
using ExactOnline.Client.Sdk;
ExactOnline Client only supports the OAuth authentication for the API calls. To know more about OAuth please refer to Getting started - OAuth. To initialize the ExactOnlineClient object you need to provide the “apiEndPoint” & “AccessTokenDelegate”:
ExactOnlineClient client = new ExactOnlineClient (apiEndPoint, AccessTokenDelegate);
For multiple administrations you can also specify the division
ExactOnlineClient client =
new ExactOnlineClient (apiEndPoint, division, AccessTokenDelegate);
apiEndPoint: Exact Online URL for your country. For Netherlands: “https://start.exactonline.nl”
AccessTokenDelegate: Delegate that will be responsible to retrieve and refresh the OAuth access token. See the example application to see how it is used Example OAuth.
To insert a record using the ExactOnlineClient instance for a specific entity, you first need to initialize the object for that entity and provide all the required values.E-g: To insert a new “Document” record, first create a new object for “Document”:
Document document = new Document
{
Subject = "User Acceptance Test Document",
Body = "User Acceptance Test Document",
Category = GetCategoryId (client),
Type = 55, //Miscellaneous
DocumentDate = DateTime.Now.Date
};
Use the ExactOnlineClient instance to insert the record:
bool created = client.For<Document>().Insert(ref document);
“Insert” method takes entity object as reference and returns “true” if the insertion is successful. After successful insertion, the document ID can be retrieved as:
document.ID
To retrieve the entity based on ID you can use the “GetEntity” function. E-g: Retrieve document by ID:
client.For<Document>().GetEntity(documentID);
To retrieve specific fields of the entity based on filter use “select” and “where” functions. E-g: Retrieve document with specific fields for subject “User Acceptance Test Document”
var fields = new[] { "ID, Subject, Type, Category" };
var documents = client.For<Document>().Select(fields).Top(5).Where("Subject+eq+'User Acceptance Test Document'").Get();
If “Select(fields)” is not specified you will get an exception. You always need to specify which fields you need, to limit the data traffic. Paging: For paging use “Skip” and “Top” functions
var documents = client.For<Document>().Select(fields).Skip(2).Top(5)
.Where("Subject+eq+'User Acceptance Test Document'").Get();
Update the fields in the entity object and pass this object to “Update” function of the ExactOnlineClient instance, which will return “true” if update is successful.
document.Subject = "User Acceptance Test Document Updated";
document.DocumentDate = DateTime.Now.Date;
var updated = client.For<Document>().Update(document);
Exception | Description |
UnauthorizedException | When access token is null or invalid while making a request |
BadRequestException | When composed request is not in a correct format |
ForbiddenException | When some specific operation is not allowed to be performed. |
NotFoundException | When trying to retrieve a record which does not exist in the database. |
InternalServerError | Please find the validation errors in the error message. |