How To Use SalesBlink API?
With APIs, your application can talk to other applications without requiring you to know how they get implemented. It is possible to save time and resources and make app development easier for businesses which is the need of the hour. π
If you wish to learn about API in detail, click here.
Like most other tools, SalesBlink also allows integration to other apps. Our API provides access to SalesBlink API endpoints that can relay information on campaigns and prospects. π
Now, you may be wondering how to use SalesBlink API. It is actually simple as we allow access to the API using API keys. You have to include the API key in all API requests to the server in a header as shown below, π
Authorization: your_salesblink_key
Instead of your_salesblink_key, enter your API key.
β‘οΈ Campaigns
π How to search for a campaign?
You can search for campaigns using an HTTP request
GET https://run.salesblink.io/api/campaign?term=campaign_name
Based on your search term, you will get the campaignID and other details of the campaign.
For the complete code, please click here
π How to retrieve all campaigns?
To retrieve all the campaigns you are allowed to access, you can use the following HTTP request,
GET https://run.salesblink.io/api/campaigns
You will get the campaignID of every campaign you can access. With the campaignID it is possible to carry out different API requests.
For the complete code, please click here
π How to retrieve a specific campaign?
You can retrieve a specific campaign with its campaignID using the following HTTP request,
GET https://run.salesblink.io/api/campaign/<campaignID>
For the complete code, please click here
π How to pause or unpause a campaign?
You can pause or unpause a specific campaign with the following HTTP request,
POST https://run.salesblink.io/api/campaign-status
For the complete code, please click here and here
β‘οΈ Prospects
π How to search for prospects?
You can search for prospects using their email address using the following HTTP request,
GET https://run.salesblink.io/api/prospect?term=email@company.com
For the complete code, please click here
π How to get the complete prospect list for a campaign?
You can get the complete list of prospects for a particular campaign using the following HTTP request,
GET https://run.salesblink.io/api/prospects/<campaignID>
For the complete code, please click here
π How to retrieve specific prospects of a campaign?
You can retrieve specific prospects of a specific campaign using the following HTTP request,
GET https://run.salesblink.io/api/prospect/<prospectID>
For the complete code, please click here
π How to add a prospect to a campaign?
You can add a prospect to a campaign using the following HTTP request,
POST https://run.salesblink.io/api/prospect-add
You can use the fields you add for the prospect as macros in email templates and call scripts.
For the complete code, please click here.
π How to update the fields of a prospect?
You can update the fields of a specific prospect using the following HTTP request,
POST https://run.salesblink.io/api/prospect
For the complete code, please click here.
π How to unsubscribe a prospect?
You can unsubscribe a prospect using the following HTTP request,
POST https://run.salesblink.io/api/prospect-unsubscribe
Upon doing so, all the upcoming emails, call and LinkedIn tasks get deleted.
For the complete code, please click here
β‘οΈTeam
π How to retrieve members of the current team?
You can retrieve members of your current team using the following HTTP request,
GET https://run.salesblink.io/api/my-team
For the complete code, please click here
β‘οΈErrors
Find the list of error codes used by SalesBlink here.