Unsubscribe Group List
To get the Unsubscribe Group list follow the example code and be careful with the parameters.
Base Urlhttps://quailmail.io/api/
                                    HTTP Method:
                                    GET
                                
API URL: https://quailmail.io/api/unsubscribes-groups
                                    API Key:
                                    Get YOUR_PUBLIC_KEY and YOUR_SECRET_KEY from the account page
                                
Response format: JSON
Body Params
                                                                
var request = require('request');
var options = {
  'method': 'GET',
  'url': 'BASE_URL/unsubscribes-groups',
  'headers': {
    'PublicKey': 'YOUR_PUBLIC_KEY',
    'SecretKey': 'YOUR_SECRET_KEY'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
});
                                                                
                                                            
                                                                123456789101112131415
                                                                16
                                                                17181920212223242526
                                                            
                                                        
import requests
url = "BASE_URL/unsubscribes-groups"
payload={}
headers = {
  'PublicKey': 'YOUR_PUBLIC_KEY',
  'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => 'BASE_URL/unsubscribes-groups',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'PublicKey: YOUR_PUBLIC_KEY',
    'SecretKey: YOUR_SECRET_KEY'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
                                                                
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
curl --location --request GET 'BASE_URL/unsubscribes-groups' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
require "uri"
require "net/http"
url = URI("BASE_URL/unsubscribes-groups")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
response = http.request(request)
puts response.read_body
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
{
    "status": "success",
    "message": {
        "unsubscribesGroups": [
            {
                "id": 5,
                "user_id": 6790,
                "rand_id": "54236",
                "group_name": "Betting Script",
                "description": "This is type of betting script you know what",
                "is_display": 1,
                "created_at": "2023-11-04T11:01:16.000000Z",
                "updated_at": "2023-11-04T12:03:09.000000Z",
                "unsubscribe_clients_count": 3
            },
            {
                "id": 4,
                "user_id": 6790,
                "rand_id": "65898",
                "group_name": "Investment",
                "description": "This is investment type script",
                "is_display": 0,
                "created_at": "2023-11-04T10:59:58.000000Z",
                "updated_at": "2023-11-04T10:59:58.000000Z",
                "unsubscribe_clients_count": 0
            },
            {
                "id": 3,
                "user_id": 6790,
                "rand_id": "17754",
                "group_name": "SASS Script",
                "description": "Ask AI any question you want and it will give an answer in seconds",
                "is_display": 1,
                "created_at": "2023-11-04T10:57:28.000000Z",
                "updated_at": "2023-11-04T10:57:28.000000Z",
                "unsubscribe_clients_count": 4
            }
        ]
    }
}
                                                        
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
                                                                
{
    "status": "failed",
    "errors": {
        "PublicKey": [
            "The public key field is required."
        ],
        "SecretKey": [
            "The secret key field is required."
        ]
    }
}
                                                            
                                                            
                                                            
                                                                1234567891011121314
                                                            
                                                        Unsubscribe Group Create
To create the Unsubscribe Group follow the example code and be careful with the parameters.
Base Urlhttps://quailmail.io/api/
                                    HTTP Method:
                                    POST
                                
API URL: https://quailmail.io/api/unsubscribes-groups/save
                                    API Key:
                                    Get YOUR_PUBLIC_KEY and YOUR_SECRET_KEY from the account page
                                
Response format: JSON
Body Params
group_name* string
The Group name what you want to name of the group.
description* textarea
The Group description help you to remember why group create.
is_display* boolean
If you want this group on your unsubscribe preferences page. e.g. not display = 0, display =1
                                                                
var request = require('request');
var options = {
  'method': 'POST',
  'url': 'BASE_URL/unsubscribes-groups/save',
  'headers': {
    'PublicKey': 'YOUR_PUBLIC_KEY',
    'SecretKey': 'YOUR_SECRET_KEY'
  },
  formData: {
    'group_name': 'Example Group',
    'description': 'Description here',
    'is_display': '1'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
});
                                                                
                                                            
                                                                123456789101112131415
                                                                16
                                                                17181920212223242526
                                                            
                                                        
import requests
url = "BASE_URL/unsubscribes-groups/save"
payload={'group_name': 'Example Group',
'description': 'Description here',
'is_display': '1'}
files=[
]
headers = {
  'PublicKey': 'YOUR_PUBLIC_KEY',
  'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => 'BASE_URL/unsubscribes-groups/save',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => array('group_name' => 'Example Group','description' => 'Description here','is_display' => '1'),
  CURLOPT_HTTPHEADER => array(
    'PublicKey: YOUR_PUBLIC_KEY',
    'SecretKey: YOUR_SECRET_KEY'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
                                                                
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
curl --location --request POST 'BASE_URL/unsubscribes-groups/save' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY' \
--form 'group_name="Example Group"' \
--form 'description="Description here"' \
--form 'is_display="1"'
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
require "uri"
require "net/http"
url = URI("BASE_URL/unsubscribes-groups/save")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
form_data = [['group_name', 'Example Group'],['description', 'Description here'],['is_display', '1']]
request.set_form form_data, 'multipart/form-data'
response = http.request(request)
puts response.read_body
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
{
    "status": "success",
    "message": "Saved Successfully"
}
                                                        
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
                                                                
{
    "status": "failed",
    "errors": {
        "group_name": [
            "The group name field is required."
        ],
        "description": [
            "The description field is required."
        ]
    }
}
                                                            
                                                            
                                                            
                                                                1234567891011121314
                                                            
                                                        Unsubscribe Group Details
To view the details of Unsubscribe group follow the example code and be careful with the parameters.
Base Urlhttps://quailmail.io/api/
                                    HTTP Method:
                                    GET
                                
API URL: https://quailmail.io/api/unsubscribes-groups/details?id={id}
                                    API Key:
                                    Get YOUR_PUBLIC_KEY and YOUR_SECRET_KEY from the account page
                                
Response format: JSON
Body Params
                                                                
var request = require('request');
var options = {
  'method': 'GET',
  'url': 'BASE_URL/unsubscribes-groups/details?id=5',
  'headers': {
    'PublicKey': 'YOUR_PUBLIC_KEY',
    'SecretKey': 'YOUR_SECRET_KEY'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
});
                                                                
                                                            
                                                                123456789101112131415
                                                                16
                                                                17181920212223242526
                                                            
                                                        
import requests
url = "BASE_URL/unsubscribes-groups/details?id=5"
payload={}
headers = {
  'PublicKey': 'YOUR_PUBLIC_KEY',
  'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => 'BASE_URL/unsubscribes-groups/details?id=5',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'PublicKey: YOUR_PUBLIC_KEY',
    'SecretKey: YOUR_SECRET_KEY'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
                                                                
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
curl --location --request GET 'BASE_URL/unsubscribes-groups/details?id=5' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
require "uri"
require "net/http"
url = URI("BASE_URL/unsubscribes-groups/details?id=5")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
response = http.request(request)
puts response.read_body
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
{
    "status": "success",
    "message": {
        "unsubscribesGroup": {
            "id": 5,
            "user_id": 6790,
            "rand_id": "54236",
            "group_name": "Betting Script",
            "description": "This is type of betting script you know what",
            "is_display": 1,
            "created_at": "2023-11-04T11:01:16.000000Z",
            "updated_at": "2023-11-04T12:03:09.000000Z"
        }
    }
}
                                                        
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
                                                                
{
    "status": "failed",
    "errors": "Record Not Found"
}
                                                            
                                                            
                                                            
                                                                1234567891011121314
                                                            
                                                        Unsubscribe Group Update
To update Unsubscribe Group follow the example code and be careful with the parameters.
Base Urlhttps://quailmail.io/api/
                                    HTTP Method:
                                    POST
                                
API URL: https://quailmail.io/api/unsubscribes-groups/update?id={id}
                                    API Key:
                                    Get YOUR_PUBLIC_KEY and YOUR_SECRET_KEY from the account page
                                
Response format: JSON
Body Params
group_name* string
The Group name what you want to name of the group.
description* textarea
The Group description help you to remember why group create.
is_display* boolean
If you want this group on your unsubscribe preferences page. e.g. not display = 0, display =1
                                                                
var request = require('request');
var options = {
  'method': 'POST',
  'url': 'BASE_URL/unsubscribes-groups/update?id=5',
  'headers': {
    'PublicKey': 'YOUR_PUBLIC_KEY',
    'SecretKey': 'YOUR_SECRET_KEY'
  },
  formData: {
    'group_name': 'Hyip Script',
    'description': 'This is investment type script',
    'is_display': '1'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
});
                                                                
                                                            
                                                                123456789101112131415
                                                                16
                                                                17181920212223242526
                                                            
                                                        
import requests
url = "BASE_URL/unsubscribes-groups/update?id=5"
payload={'group_name': 'Hyip Script',
'description': 'This is investment type script',
'is_display': '1'}
files=[
]
headers = {
  'PublicKey': 'YOUR_PUBLIC_KEY',
  'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => 'BASE_URL/unsubscribes-groups/update?id=5',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => array('group_name' => 'Hyip Script','description' => 'This is investment type script','is_display' => '1'),
  CURLOPT_HTTPHEADER => array(
    'PublicKey: YOUR_PUBLIC_KEY',
    'SecretKey: YOUR_SECRET_KEY'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
                                                                
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
curl --location --request POST 'BASE_URL/unsubscribes-groups/update?id=5' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY' \
--form 'group_name="Hyip Script"' \
--form 'description="This is investment type script"' \
--form 'is_display="1"'
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
require "uri"
require "net/http"
url = URI("BASE_URL/unsubscribes-groups/update?id=5")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
form_data = [['group_name', 'Hyip Script'],['description', 'This is investment type script'],['is_display', '1']]
request.set_form form_data, 'multipart/form-data'
response = http.request(request)
puts response.read_body
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
{
    "status": "success",
    "message": "Updated Successfully"
}
                                                        
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
                                                                
{
    "status": "failed",
    "errors": {
        "group_name": [
            "The group name field is required."
        ],
        "description": [
            "The description field is required."
        ]
    }
}
                                                            
                                                            
                                                            
                                                                1234567891011121314
                                                            
                                                        Recipient Add
To recipient add in Unsubscribe Group follow the example code and be careful with the parameters.
Base Urlhttps://quailmail.io/api/
                                    HTTP Method:
                                    POST
                                
API URL: https://quailmail.io/api/unsubscribes-groups/manually-add
                                    API Key:
                                    Get YOUR_PUBLIC_KEY and YOUR_SECRET_KEY from the account page
                                
Response format: JSON
Body Params
unsubscribe_groups_id* integer
The Unsubscribe Group Id which group you want to add recipients.
email_address* string
The list of email address must be comma separated. eg. abc@gmail,xyz@gmail.com
                                                                
var request = require('request');
var options = {
  'method': 'POST',
  'url': 'BASE_URL/unsubscribes-groups/manually-add',
  'headers': {
    'PublicKey': 'YOUR_PUBLIC_KEY',
    'SecretKey': 'YOUR_SECRET_KEY'
  },
  formData: {
    'unsubscribe_groups_id': '5',
    'email_address': 'abc@gmail.com,xyz@gmail.com'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
});
                                                                
                                                            
                                                                123456789101112131415
                                                                16
                                                                17181920212223242526
                                                            
                                                        
import requests
url = "BASE_URL/unsubscribes-groups/manually-add"
payload={'unsubscribe_groups_id': '5',
'email_address': 'abc@gmail.com,xyz@gmail.com'}
files=[
]
headers = {
  'PublicKey': 'YOUR_PUBLIC_KEY',
  'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => 'BASE_URL/unsubscribes-groups/manually-add',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => array('unsubscribe_groups_id' => '5','email_address' => 'abc@gmail.com,xyz@gmail.com'),
  CURLOPT_HTTPHEADER => array(
    'PublicKey: YOUR_PUBLIC_KEY',
    'SecretKey: YOUR_SECRET_KEY'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
                                                                
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
curl --location --request POST 'BASE_URL/unsubscribes-groups/manually-add' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY' \
--form 'unsubscribe_groups_id="5"' \
--form 'email_address="abc@gmail.com,xyz@gmail.com"'
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
require "uri"
require "net/http"
url = URI("BASE_URL/unsubscribes-groups/manually-add")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
form_data = [['unsubscribe_groups_id', '5'],['email_address', 'abc@gmail.com,xyz@gmail.com']]
request.set_form form_data, 'multipart/form-data'
response = http.request(request)
puts response.read_body
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
{
    "status": "success",
    "message": "Added Successfully"
}
                                                        
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
                                                                
{
    "status": "failed",
    "errors": {
        "email_address": [
            "The email address field is required."
        ]
    }
}
                                                            
                                                            
                                                            
                                                                1234567891011121314
                                                            
                                                        Recipients List
To get recipient list in Unsubscribe Group follow the example code and be careful with the parameters.
Base Urlhttps://quailmail.io/api/
                                    HTTP Method:
                                    GET
                                
API URL: https://quailmail.io/api/unsubscribes-groups/recipients-list?groupId={groupId}
                                    API Key:
                                    Get YOUR_PUBLIC_KEY and YOUR_SECRET_KEY from the account page
                                
Response format: JSON
Body Params
                                                                
var request = require('request');
var options = {
  'method': 'GET',
  'url': 'BASE_URL/unsubscribes-groups/recipients-list?groupId=5',
  'headers': {
    'PublicKey': 'YOUR_PUBLIC_KEY',
    'SecretKey': 'YOUR_SECRET_KEY'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
});
                                                                
                                                            
                                                                123456789101112131415
                                                                16
                                                                17181920212223242526
                                                            
                                                        
import requests
url = "BASE_URL/unsubscribes-groups/recipients-list?groupId=5"
payload={}
headers = {
  'PublicKey': 'YOUR_PUBLIC_KEY',
  'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => 'BASE_URL/unsubscribes-groups/recipients-list?groupId=5',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'PublicKey: YOUR_PUBLIC_KEY',
    'SecretKey: YOUR_SECRET_KEY'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
                                                                
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
curl --location --request GET 'BASE_URL/unsubscribes-groups/recipients-list?groupId=5' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
require "uri"
require "net/http"
url = URI("BASE_URL/unsubscribes-groups/recipients-list?groupId=5")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
response = http.request(request)
puts response.read_body
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
{
    "status": "success",
    "message": {
        "recipients": [
            {
                "id": 49,
                "user_id": 6790,
                "unsubscribe_groups_id": 5,
                "email_address": "xyz@gmail.com",
                "created_at": "2023-12-02T05:03:34.000000Z",
                "updated_at": "2023-12-02T05:03:34.000000Z"
            },
            {
                "id": 48,
                "user_id": 6790,
                "unsubscribe_groups_id": 5,
                "email_address": "abc@gmail.com",
                "created_at": "2023-12-02T05:03:34.000000Z",
                "updated_at": "2023-12-02T05:03:34.000000Z"
            },
            {
                "id": 17,
                "user_id": 6790,
                "unsubscribe_groups_id": 5,
                "email_address": "alex@gmail.com",
                "created_at": "2023-11-05T05:34:36.000000Z",
                "updated_at": "2023-11-05T05:34:36.000000Z"
            },
            {
                "id": 16,
                "user_id": 6790,
                "unsubscribe_groups_id": 5,
                "email_address": "hasan@gmail.com",
                "created_at": "2023-11-05T05:34:36.000000Z",
                "updated_at": "2023-11-05T05:34:36.000000Z"
            },
            {
                "id": 13,
                "user_id": 6790,
                "unsubscribe_groups_id": 5,
                "email_address": "sunu@gmail.com",
                "created_at": "2023-11-05T05:31:59.000000Z",
                "updated_at": "2023-11-05T05:31:59.000000Z"
            }
        ]
    }
}
                                                        
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
                                                                
{
    "status": "failed",
    "errors": "Record Not Found"
}
                                                            
                                                            
                                                            
                                                                1234567891011121314
                                                            
                                                        Recipients Delete
To delete recipient from Unsubscribe Group follow the example code and be careful with the parameters.
Base Urlhttps://quailmail.io/api/
                                    HTTP Method:
                                    DELETE
                                
API URL: https://quailmail.io/api/unsubscribes-groups/recipients-delete?id={id}
                                    API Key:
                                    Get YOUR_PUBLIC_KEY and YOUR_SECRET_KEY from the account page
                                
Response format: JSON
Body Params
                                                                
var request = require('request');
var options = {
  'method': 'DELETE',
  'url': 'BASE_URL/unsubscribes-groups/recipients-delete?id=10',
  'headers': {
    'PublicKey': 'YOUR_PUBLIC_KEY',
    'SecretKey': 'YOUR_SECRET_KEY'
  },
  formData: {
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
});
                                                                
                                                            
                                                                123456789101112131415
                                                                16
                                                                17181920212223242526
                                                            
                                                        
import requests
url = "BASE_URL/unsubscribes-groups/recipients-delete?id=10"
payload={}
files={}
headers = {
  'PublicKey': 'YOUR_PUBLIC_KEY',
  'SecretKey': 'YOUR_SECRET_KEY'
}
response = requests.request("DELETE", url, headers=headers, data=payload, files=files)
print(response.text)
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => 'BASE_URL/unsubscribes-groups/recipients-delete?id=10',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'DELETE',
  CURLOPT_HTTPHEADER => array(
    'PublicKey: YOUR_PUBLIC_KEY',
    'SecretKey: YOUR_SECRET_KEY'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
                                                                
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
curl --location --request DELETE 'BASE_URL/unsubscribes-groups/recipients-delete?id=10' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY'
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
require "uri"
require "net/http"
url = URI("BASE_URL/unsubscribes-groups/recipients-delete?id=10")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Delete.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
form_data = []
request.set_form form_data, 'multipart/form-data'
response = http.request(request)
puts response.read_body
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
{
    "status": "success",
    "message": "Deleted Successfully"
}
                                                        
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
                                                                
{
    "status": "failed",
    "errors": "Record Not Found"
}
                                                            
                                                            
                                                            
                                                                1234567891011121314
                                                            
                                                        Recipients Bulk Delete
To bulk delete recipient from Unsubscribe Group follow the example code and be careful with the parameters.
Base Urlhttps://quailmail.io/api/
                                    HTTP Method:
                                    POST
                                
API URL: https://quailmail.io/api/ unsubscribes-groups/recipients-bulk-delete
                                    API Key:
                                    Get YOUR_PUBLIC_KEY and YOUR_SECRET_KEY from the account page
                                
Response format: JSON
Body Params
strIds* array
strIds must be type array.
                                                                
var request = require('request');
var options = {
  'method': 'POST',
  'url': 'BASE_URL/unsubscribes-groups/recipients-bulk-delete',
  'headers': {
    'PublicKey': 'YOUR_PUBLIC_KEY',
    'SecretKey': 'YOUR_SECRET_KEY',
    'Content-Type': 'application/x-www-form-urlencoded'
  },
  form: {
    'strIds[0]': '8',
    'strIds[1]': '44'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
});
                                                                
                                                            
                                                                123456789101112131415
                                                                16
                                                                17181920212223242526
                                                            
                                                        
import requests
url = "BASE_URL/unsubscribes-groups/recipients-bulk-delete"
payload='strIds%5B0%5D=8&strIds%5B1%5D=44'
headers = {
  'PublicKey': 'YOUR_PUBLIC_KEY',
  'SecretKey': 'YOUR_SECRET_KEY',
  'Content-Type': 'application/x-www-form-urlencoded'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => 'BASE_URL/unsubscribes-groups/recipients-bulk-delete',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => 'strIds%5B0%5D=8&strIds%5B1%5D=44',
  CURLOPT_HTTPHEADER => array(
    'PublicKey: YOUR_PUBLIC_KEY',
    'SecretKey: YOUR_SECRET_KEY',
    'Content-Type: application/x-www-form-urlencoded'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
                                                                
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
curl --location --request POST 'BASE_URL/unsubscribes-groups/recipients-bulk-delete' \
--header 'PublicKey: YOUR_PUBLIC_KEY' \
--header 'SecretKey: YOUR_SECRET_KEY' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'strIds[0]=8' \
--data-urlencode 'strIds[1]=44'
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
require "uri"
require "net/http"
url = URI("BASE_URL/unsubscribes-groups/recipients-bulk-delete")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["PublicKey"] = "YOUR_PUBLIC_KEY"
request["SecretKey"] = "YOUR_SECRET_KEY"
request["Content-Type"] = "application/x-www-form-urlencoded"
request.body = "strIds%5B0%5D=8&strIds%5B1%5D=44"
response = http.request(request)
puts response.read_body
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
{
    "status": "success",
    "message": "Deleted Successfully"
}
                                                        
                                                            
                                                                123456789101112131415
                                                                1617181920212223242526
                                                            
                                                        
                                                                
{
    "status": "failed",
    "errors": "Record Not Found"
}
                                                            
                                                            
                                                            
                                                                1234567891011121314
                                                            
                                                        