Purlin.LeadKit.Integration.Model
1.0.4
Prefix Reserved
See the version list below for details.
dotnet add package Purlin.LeadKit.Integration.Model --version 1.0.4
NuGet\Install-Package Purlin.LeadKit.Integration.Model -Version 1.0.4
<PackageReference Include="Purlin.LeadKit.Integration.Model" Version="1.0.4" />
paket add Purlin.LeadKit.Integration.Model --version 1.0.4
#r "nuget: Purlin.LeadKit.Integration.Model, 1.0.4"
// Install Purlin.LeadKit.Integration.Model as a Cake Addin #addin nuget:?package=Purlin.LeadKit.Integration.Model&version=1.0.4 // Install Purlin.LeadKit.Integration.Model as a Cake Tool #tool nuget:?package=Purlin.LeadKit.Integration.Model&version=1.0.4
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 | Versions 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. |
-
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
Purlin Lead.Kit api implementations. |
GitHub repositories
This package is not used by any popular GitHub repositories.