Purlin.LeadKit.Integration.Model 1.0.5

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Purlin.LeadKit.Integration.Model --version 1.0.5
NuGet\Install-Package Purlin.LeadKit.Integration.Model -Version 1.0.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Purlin.LeadKit.Integration.Model" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Purlin.LeadKit.Integration.Model --version 1.0.5
#r "nuget: Purlin.LeadKit.Integration.Model, 1.0.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Purlin.LeadKit.Integration.Model as a Cake Addin
#addin nuget:?package=Purlin.LeadKit.Integration.Model&version=1.0.5

// Install Purlin.LeadKit.Integration.Model as a Cake Tool
#tool nuget:?package=Purlin.LeadKit.Integration.Model&version=1.0.5

Leads API Integration

Overview

The Leads API provides a robust solution for managing lead information, enabling seamless integration with your sales, marketing, or CRM systems. This API allows you to create, update, and retrieve lead data, ensuring your applications are always synced with the latest information.

Features

  • Create Leads: Add new leads into the system using the POST /v1/integration/Lead endpoint with detailed attributes.
  • Update Leads: Modify the details of existing leads using the PUT /v1/integration/Lead endpoint.
  • Filter Leads: Retrieve a list of leads based on specified criteria using the POST /v1/integration/Lead/filter endpoint.

Getting Started

Before you can start using the API, you'll need to set up an account and obtain your unique API key. This key is required to authenticate your requests.

Prerequisites

  • An active account with access to the Leads API.
  • API key, obtained after registration.

Installation

No installation is required. You can directly call the API endpoints over HTTP/S protocol.

Usage

Here are basic examples of how to make requests to the API:

Create a New Lead

POST /v1/integration/Lead
Host: leads-api.purlin.com
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "email": "example@email.com",
  "externalId": "12345",
  "fullName": "John Doe",
  "userAction": "interested"
}

Update an Existing Lead

PUT /v1/integration/Lead
Host: leads-api.purlin.com
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "id":123
  "email": "updated@example.com",
  "externalId": "12345",
  "fullName": "Jane Doe",
  "userAction": "contacted"
}

Filter Leads

POST /v1/integration/Lead/filter
Host: leads-api.purlin.com
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "conditions": [
    {
      "property": "email",
      "operator": "eq",
      "value": "query@example.com"
    }
  ]
}

API Endpoints

  • POST /v1/integration/Lead: Creates a new lead with the provided details.
  • PUT /v1/integration/Lead: Updates the lead details for the specified ID.
  • POST /v1/integration/Lead/filter: Filters leads based on the provided query conditions.

Security

The API uses OAuth2 for authentication, ensuring secure access and data integrity. Ensure to use HTTPS to encrypt data in transit.

Support

For any issues or questions regarding the API, please contact our support team or refer to the online documentation and FAQs.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Purlin.LeadKit.Integration.Model:

Package Downloads
Purlin.LeadKit.Integration The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Purlin Lead.Kit api implementations.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.5 135 3/20/2024
1.0.4 144 3/6/2024
1.0.3 116 3/4/2024
1.0.2 99 3/4/2024
1.0.1 93 3/1/2024
1.0.0 106 3/1/2024