things that

we do

Frends has more features than any other integration software out there. Explore, ideate, and if anything is unclear - hit us up at any time. This library is bound to grow over time.

Custom Connectors

The basic building blocks of your integrations are called Tasks or Activities and they act as the "connectors" enabling the technical connectivity towards your systems and data.

You can also easily use .NET and C# to create your own custom frends connectors.

  • No SDK's or boilerplate required
  • Pure C#
  • All standard .NET functionality is available
  • Use any third party libraries and manage dependencies using NuGet

Example of a hello world custom Frends task:

using System;

namespace FRENDS.Task
{
  public class MyConnector
  {
      public static String HelloWorld(String Name)
      {
          return "Hello " + Name + "!";
      }
  }
}

For full documentation on how to create custom tasks or connectors head over to: Custom Tasks.


Custom Connectors

The basic building blocks of your integrations are called Tasks or Activities and they act as the "connectors" enabling the technical connectivity towards your systems and data.

You can also easily use .NET and C# to create your own custom frends connectors.

  • No SDK's or boilerplate required
  • Pure C#
  • All standard .NET functionality is available
  • Use any third party libraries and manage dependencies using NuGet

Example of a hello world custom Frends task:

using System;

namespace FRENDS.Task
{
  public class MyConnector
  {
      public static String HelloWorld(String Name)
      {
          return "Hello " + Name + "!";
      }
  }
}

For full documentation on how to create custom tasks or connectors head over to: Custom Tasks.