C# SDK for developing integrations towards the Fortnox API.
This is a guide to help developers to get started with the .NET SDK by developing a simple console application which creates, retrives, deletes and search for a customer.
For a full API reference please visit developer.fortnox.se/documentation/
- Start Visual Studio and select the option to create a new project.
- Select Console Application.
- Name the project FortnoxAPILibraryDemo
- Click OK to create the Project
- In the Solution Explorer right-click References and select Add Reference…
- Locate the file FortnoxAPILibrary.dll file on your computer and add the reference
To be able to use Fortnox API you need to add the two namespaces FortnoxAPILibrary
and
FortnoxAPILibrary.Connectors
Before we can send and receive any data to/from Fortnox we need to provide an access-token
and a
client-secret
. This is done by using the static class ConnectionCredentials
and the properties
AccessToken
and ClientSecret
.
static void Main(string[] args)
{
ConnectionCredentials.AccessToken = "{Generated GUID}";
ConnectionCredentials.ClientSecret = "{Generated alphanumeric string}";
}
To capture all error messages it is recommended to always use try - catch statements.
static void Main(string[] args)
{
ConnectionCredentials.AccessToken = "{Generated GUID}";
ConnectionCredentials.ClientSecret = "{Generated alphanumeric string}";
try
{
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
To create a customer we start by creating an instance of the Customer object. With an instance in place we populate it with data.
NOTE! All fields in the SDK are of type string.
static void Main(string[] args)
{
ConnectionCredentials.AccessToken = "{Generated GUID}";
ConnectionCredentials.ClientSecret = "{Generated alphanumeric string}";
try
{
Customer customer = new Customer();
customer.CustomerNumber = "1";
customer.Name = "Stefan Andersson";
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
To be able to create, update, delete a customer in Fortnox we have to create an instance of
CustomerConnector
which is the class that handles the communication with Fortnox.
static void Main(string[] args)
{
ConnectionCredentials.AccessToken = "{Generated GUID}";
ConnectionCredentials.ClientSecret = "{Generated alphanumeric string}";
try
{
Customer customer = new Customer();
customer.CustomerNumber = "1";
customer.Name = "Stefan Andersson";
CustomerConnector customerConnector = new CustomerConnector();
customerConnector.Create(customer);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
To check if there was a problem when creating the customer we check if the property HasError
on the
CustomerConnector
object is true.
if (customerConnector.HasError)
{
Console.WriteLine(customerConnector.Error.Message);
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FortnoxAPILibrary;
using FortnoxAPILibrary.Connectors;
namespace FortnoxAPILibraryDemo
{
class Program
{
static void Main(string[] args)
{
ConnectionCredentials.AccessToken = "{Generated GUID}";
ConnectionCredentials.ClientSecret = "{Generated alphanumeric string}";
try
{
Customer customer = new Customer();
customer.CustomerNumber = "123"; customer.Name = "Customer 123";
CustomerConnector customerConnector = new CustomerConnector();
Customer createdCustomer = customerConnector.Create(customer);
if (customerConnector.HasError)
{
Console.WriteLine(customerConnector.Error.Message);
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
}
To get a specific customer from Fortnox we use the method Get
on the CustomerConnector
object.
The Get
method takes a customer number as parameter and returns the customer that was found. If
no customer is found we get an error message in the property CustomerConnector.Error.Message
.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FortnoxAPILibrary;
using FortnoxAPILibrary.Connectors;
namespace FortnoxAPILibraryDemo
{
class Program
{
static void Main(string[] args)
{
ConnectionCredentials.AccessToken = "{Generated GUID}";
ConnectionCredentials.ClientSecret = "{Generated alphanumeric string}";
try
{
CustomerConnector customerConnector = new CustomerConnector();
Customer customer = customerConnector.Get("123");
if (customerConnector.HasError)
{
Console.WriteLine(customerConnector.Error.Message);
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
}
If you want to search for customers you use the method Find
on the CustomerConnector
object. The
method Find
takes no parameters and returns a list of customers.
To be able to limit the search results you use the properties of the CustomerConnector
object. See
the code example below where the customer name is the parameter to search for. It is possible to
combine as many search parameters as you want.
Please refer to the API documentation for more information on which fields that are searchable.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FortnoxAPILibrary;
using FortnoxAPILibrary.Connectors;
namespace FortnoxAPILibraryDemo
{
class Program
{
static void Main(string[] args)
{
ConnectionCredentials.AccessToken = "{Generated GUID}";
ConnectionCredentials.ClientSecret = "{Generated alphanumeric string}";
try
{
CustomerConnector customerConnector = new CustomerConnector();
customerConnector.Name = "Stefan";
Customers customers = customerConnector.Find();
if (customerConnector.HasError)
{
Console.WriteLine(customerConnector.Error.Message);
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
}
NOTE! There is a difference between the objects
Customer
andCustomers
.Customer
is used when a single customer is returned andCustomers
is returned when a list of customers is returned.
To delete a customer the method Delete
on the CustomerConnector
object is used. The method takes
a customer number as parameter and returns nothing.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FortnoxAPILibrary;
using FortnoxAPILibrary.Connectors;
namespace FortnoxAPILibraryDemo
{
class Program
{
static void Main(string[] args)
{
ConnectionCredentials.AccessToken = "{Generated GUID}";
ConnectionCredentials.ClientSecret = "{Generated alphanumeric string}";
try
{
CustomerConnector customerConnector = new CustomerConnector();
customerConnector.Delete("123");
if (customerConnector.HasError)
{
Console.WriteLine(customerConnector.Error.Message);
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
}
The MIT License (MIT)
Copyright (c) 2015 Fortnox AB, Jesper Svensson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.