<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.offerit.com/index.php?feed=atom&amp;namespace=0&amp;title=Special%3ANewPages</id>
		<title>Offerit - New pages [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.offerit.com/index.php?feed=atom&amp;namespace=0&amp;title=Special%3ANewPages"/>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Special:NewPages"/>
		<updated>2026-05-11T14:52:10Z</updated>
		<subtitle>From Offerit</subtitle>
		<generator>MediaWiki 1.27.5</generator>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_REST_API_Remove_Global_Post_Ip</id>
		<title>Offerit REST API Remove Global Post Ip</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_REST_API_Remove_Global_Post_Ip"/>
				<updated>2022-08-08T17:51:47Z</updated>
		
		<summary type="html">&lt;p&gt;Offeritnick: /* POST /config/remove_global_post_ip */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_rest_api_section = true&lt;br /&gt;
}}&lt;br /&gt;
== '''POST /config/remove_global_post_ip''' ==&lt;br /&gt;
'''Description''' &lt;br /&gt;
*The api/config/remove_global_post_ip action removes a provided ip from the Config -&amp;gt; Security, Global Postback Allowed IPs&lt;br /&gt;
&lt;br /&gt;
'''Resource URL'''&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;https://domain/api/config/remove_global_post_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Replace domain with the Offerit domain&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Allowed_HTTP_Request_Methods|Request Method''']]&lt;br /&gt;
*POST&lt;br /&gt;
&lt;br /&gt;
'''Response Format'''&lt;br /&gt;
*JSON&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Authentication|Authentication]]'''&lt;br /&gt;
*HTTP headers&lt;br /&gt;
&lt;br /&gt;
== '''Parameters''' ==&lt;br /&gt;
'''Parameters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded'''&lt;br /&gt;
&lt;br /&gt;
*ip&lt;br /&gt;
**'''''type: string'''''&lt;br /&gt;
**'''required'''&lt;br /&gt;
**ipv4 or ipv6 format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Example Request''' ==&lt;br /&gt;
&lt;br /&gt;
'''POST'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;https://domain/api/config/remove_global_post_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Response: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;success&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Ip removed /  not in list / list not set&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;error&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Invalid ip&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== '''Example Code''' ==&lt;br /&gt;
&lt;br /&gt;
'''PHP'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$curl = curl_init();&lt;br /&gt;
&lt;br /&gt;
$data = array(&lt;br /&gt;
    'ip' =&amp;gt; '73.279.112.30',&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
$url = 'https://domain/api/config/remove_global_post_ip';&lt;br /&gt;
&lt;br /&gt;
$headers = array(&lt;br /&gt;
    'api-key: 44b5498dbcb481a0d00b404c0169af62',&lt;br /&gt;
    'api-username: offerit_admin'&lt;br /&gt;
);&lt;br /&gt;
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, &amp;quot;POST&amp;quot;);&lt;br /&gt;
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);&lt;br /&gt;
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);&lt;br /&gt;
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));&lt;br /&gt;
curl_setopt($curl, CURLOPT_URL, $url);&lt;br /&gt;
&lt;br /&gt;
$resp = curl_exec($curl);&lt;br /&gt;
//dumps an associative array representation of the json&lt;br /&gt;
var_dump(json_decode($resp, true));&lt;br /&gt;
// Close request to clear up some resources&lt;br /&gt;
curl_close($curl);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit API Articles]]&lt;/div&gt;</summary>
		<author><name>OfferitRob</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_REST_API_Remove_Global_Host_and_Post_Ips</id>
		<title>Offerit REST API Remove Global Host and Post Ips</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_REST_API_Remove_Global_Host_and_Post_Ips"/>
				<updated>2022-08-08T17:18:34Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitRob: Created page with &amp;quot;{{Offerit Manual | show_rest_api_section = true }} == '''POST /config/remove_global_hostnpost_ip''' == '''Description'''  *The api/config/remove_global_hostnpost_ip action rem...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_rest_api_section = true&lt;br /&gt;
}}&lt;br /&gt;
== '''POST /config/remove_global_hostnpost_ip''' ==&lt;br /&gt;
'''Description''' &lt;br /&gt;
*The api/config/remove_global_hostnpost_ip action removes a provided ip from the Config -&amp;gt; Security, Global Host and Post Allowed IPs&lt;br /&gt;
&lt;br /&gt;
'''Resource URL'''&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;https://domain/api/config/remove_global_hostnpost_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Replace domain with the Offerit domain&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Allowed_HTTP_Request_Methods|Request Method''']]&lt;br /&gt;
*POST&lt;br /&gt;
&lt;br /&gt;
'''Response Format'''&lt;br /&gt;
*JSON&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Authentication|Authentication]]'''&lt;br /&gt;
*HTTP headers&lt;br /&gt;
&lt;br /&gt;
== '''Parameters''' ==&lt;br /&gt;
'''Parameters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded'''&lt;br /&gt;
&lt;br /&gt;
*ip&lt;br /&gt;
**'''''type: string'''''&lt;br /&gt;
**'''required'''&lt;br /&gt;
**ipv4 or ipv6 format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Example Request''' ==&lt;br /&gt;
&lt;br /&gt;
'''POST'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;https://domain/api/config/remove_global_hostnpost_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Response: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;success&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Ip removed /  not in list / list not set&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;error&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Invalid ip&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== '''Example Code''' ==&lt;br /&gt;
&lt;br /&gt;
'''PHP'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$curl = curl_init();&lt;br /&gt;
&lt;br /&gt;
$data = array(&lt;br /&gt;
    'ip' =&amp;gt; '73.279.112.30',&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
$url = 'https://domain/api/config/remove_global_hostnpost_ip';&lt;br /&gt;
&lt;br /&gt;
$headers = array(&lt;br /&gt;
    'api-key: 44b5498dbcb481a0d00b404c0169af62',&lt;br /&gt;
    'api-username: offerit_admin'&lt;br /&gt;
);&lt;br /&gt;
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, &amp;quot;POST&amp;quot;);&lt;br /&gt;
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);&lt;br /&gt;
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);&lt;br /&gt;
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));&lt;br /&gt;
curl_setopt($curl, CURLOPT_URL, $url);&lt;br /&gt;
&lt;br /&gt;
$resp = curl_exec($curl);&lt;br /&gt;
//dumps an associative array representation of the json&lt;br /&gt;
var_dump(json_decode($resp, true));&lt;br /&gt;
// Close request to clear up some resources&lt;br /&gt;
curl_close($curl);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit API Articles]]&lt;/div&gt;</summary>
		<author><name>OfferitRob</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_REST_API_Remove_Global_Void_Ip</id>
		<title>Offerit REST API Remove Global Void Ip</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_REST_API_Remove_Global_Void_Ip"/>
				<updated>2022-08-05T18:43:28Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitRob: /* POST /config/remove_global_void_ip */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_rest_api_section = true&lt;br /&gt;
}}&lt;br /&gt;
== '''POST /config/remove_global_void_ip''' ==&lt;br /&gt;
'''Description''' &lt;br /&gt;
*The api/config/remove_global_void_ip action removes a provided ip from the Config -&amp;gt; Security, Global Void Allowed IPs&lt;br /&gt;
&lt;br /&gt;
'''Resource URL'''&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;https://domain/api/config/remove_global_void_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Replace domain with the Offerit domain&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Allowed_HTTP_Request_Methods|Request Method''']]&lt;br /&gt;
*POST&lt;br /&gt;
&lt;br /&gt;
'''Response Format'''&lt;br /&gt;
*JSON&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Authentication|Authentication]]'''&lt;br /&gt;
*HTTP headers&lt;br /&gt;
&lt;br /&gt;
== '''Parameters''' ==&lt;br /&gt;
'''Parameters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded'''&lt;br /&gt;
&lt;br /&gt;
*ip&lt;br /&gt;
**'''''type: string'''''&lt;br /&gt;
**'''required'''&lt;br /&gt;
**ipv4 or ipv6 format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Example Request''' ==&lt;br /&gt;
&lt;br /&gt;
'''POST'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;https://domain/api/config/remove_global_void_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Response: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;success&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Ip removed /  not in list / list not set&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;error&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Invalid ip&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== '''Example Code''' ==&lt;br /&gt;
&lt;br /&gt;
'''PHP'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$curl = curl_init();&lt;br /&gt;
&lt;br /&gt;
$data = array(&lt;br /&gt;
    'ip' =&amp;gt; '73.279.112.30',&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
$url = 'https://domain/api/config/remove_global_void_ip';&lt;br /&gt;
&lt;br /&gt;
$headers = array(&lt;br /&gt;
    'api-key: 44b5498dbcb481a0d00b404c0169af62',&lt;br /&gt;
    'api-username: offerit_admin'&lt;br /&gt;
);&lt;br /&gt;
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, &amp;quot;POST&amp;quot;);&lt;br /&gt;
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);&lt;br /&gt;
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);&lt;br /&gt;
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));&lt;br /&gt;
curl_setopt($curl, CURLOPT_URL, $url);&lt;br /&gt;
&lt;br /&gt;
$resp = curl_exec($curl);&lt;br /&gt;
//dumps an associative array representation of the json&lt;br /&gt;
var_dump(json_decode($resp, true));&lt;br /&gt;
// Close request to clear up some resources&lt;br /&gt;
curl_close($curl);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit API Articles]]&lt;/div&gt;</summary>
		<author><name>OfferitRob</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_REST_API_Add_Global_Host_and_Post_Ips</id>
		<title>Offerit REST API Add Global Host and Post Ips</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_REST_API_Add_Global_Host_and_Post_Ips"/>
				<updated>2022-08-03T22:33:59Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitRob: /* POST /config/add_global_hostnpost_ip */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_rest_api_section = true&lt;br /&gt;
}}&lt;br /&gt;
== '''POST /config/add_global_hostnpost_ip''' ==&lt;br /&gt;
'''Description''' &lt;br /&gt;
*The api/config/add_global_hostnpost_ip action adds a valid ip to the Config-&amp;gt;Security-&amp;gt;Global Host and Post Allowed IPs&lt;br /&gt;
&lt;br /&gt;
'''Resource URL'''&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;https://domain/api/config/add_global_hostnpost_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Replace domain with the Offerit domain&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Allowed_HTTP_Request_Methods|Request Method''']]&lt;br /&gt;
*POST&lt;br /&gt;
&lt;br /&gt;
'''Response Format'''&lt;br /&gt;
*JSON&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Authentication|Authentication]]'''&lt;br /&gt;
*HTTP headers&lt;br /&gt;
&lt;br /&gt;
== '''Parameters''' ==&lt;br /&gt;
'''Parameters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded'''&lt;br /&gt;
&lt;br /&gt;
*ip&lt;br /&gt;
**'''''type: string'''''&lt;br /&gt;
**'''required'''&lt;br /&gt;
**ipv4 or ipv6 format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Example Request''' ==&lt;br /&gt;
&lt;br /&gt;
'''POST'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;https://domain/api/config/add_global_hostnpost_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Response: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;success&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Ip added / exists&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;error&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Invalid ip&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== '''Example Code''' ==&lt;br /&gt;
&lt;br /&gt;
'''PHP'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$curl = curl_init();&lt;br /&gt;
&lt;br /&gt;
$data = array(&lt;br /&gt;
    'ip' =&amp;gt; '73.279.112.30',&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
$url = 'https://domain/api/config/add_global_hostnpost_ip';&lt;br /&gt;
&lt;br /&gt;
$headers = array(&lt;br /&gt;
    'api-key: 44b5498dbcb481a0d00b404c0169af62',&lt;br /&gt;
    'api-username: offerit_admin'&lt;br /&gt;
);&lt;br /&gt;
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, &amp;quot;POST&amp;quot;);&lt;br /&gt;
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);&lt;br /&gt;
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);&lt;br /&gt;
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));&lt;br /&gt;
curl_setopt($curl, CURLOPT_URL, $url);&lt;br /&gt;
&lt;br /&gt;
$resp = curl_exec($curl);&lt;br /&gt;
//dumps an associative array representation of the json&lt;br /&gt;
var_dump(json_decode($resp, true));&lt;br /&gt;
// Close request to clear up some resources&lt;br /&gt;
curl_close($curl);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit API Articles]]&lt;/div&gt;</summary>
		<author><name>OfferitRob</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_REST_API_Add_Global_Post_Ip</id>
		<title>Offerit REST API Add Global Post Ip</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_REST_API_Add_Global_Post_Ip"/>
				<updated>2022-08-01T23:11:07Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitRob: Created page with &amp;quot;{{Offerit Manual | show_rest_api_section = true }} == '''POST /config/add_global_post_ip''' == '''Description'''  *The api/config/add_global_post_ip action adds a valid ip to...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_rest_api_section = true&lt;br /&gt;
}}&lt;br /&gt;
== '''POST /config/add_global_post_ip''' ==&lt;br /&gt;
'''Description''' &lt;br /&gt;
*The api/config/add_global_post_ip action adds a valid ip to the Config-&amp;gt;Security-&amp;gt;Global Postback Allowed IPs&lt;br /&gt;
&lt;br /&gt;
'''Resource URL'''&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;https://domain/api/config/add_global_post_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Replace domain with the Offerit domain&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Allowed_HTTP_Request_Methods|Request Method''']]&lt;br /&gt;
*POST&lt;br /&gt;
&lt;br /&gt;
'''Response Format'''&lt;br /&gt;
*JSON&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Authentication|Authentication]]'''&lt;br /&gt;
*HTTP headers&lt;br /&gt;
&lt;br /&gt;
== '''Parameters''' ==&lt;br /&gt;
'''Parameters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded'''&lt;br /&gt;
&lt;br /&gt;
*ip&lt;br /&gt;
**'''''type: string'''''&lt;br /&gt;
**'''required'''&lt;br /&gt;
**ipv4 or ipv6 format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Example Request''' ==&lt;br /&gt;
&lt;br /&gt;
'''POST'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;https://domain/api/config/add_global_post_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Response: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;success&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Ip added / exists&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;error&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Invalid ip&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== '''Example Code''' ==&lt;br /&gt;
&lt;br /&gt;
'''PHP'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$curl = curl_init();&lt;br /&gt;
&lt;br /&gt;
$data = array(&lt;br /&gt;
    'ip' =&amp;gt; '73.279.112.30',&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
$url = 'https://domain/api/config/add_global_post_ip';&lt;br /&gt;
&lt;br /&gt;
$headers = array(&lt;br /&gt;
    'api-key: 44b5498dbcb481a0d00b404c0169af62',&lt;br /&gt;
    'api-username: offerit_admin'&lt;br /&gt;
);&lt;br /&gt;
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, &amp;quot;POST&amp;quot;);&lt;br /&gt;
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);&lt;br /&gt;
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);&lt;br /&gt;
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));&lt;br /&gt;
curl_setopt($curl, CURLOPT_URL, $url);&lt;br /&gt;
&lt;br /&gt;
$resp = curl_exec($curl);&lt;br /&gt;
//dumps an associative array representation of the json&lt;br /&gt;
var_dump(json_decode($resp, true));&lt;br /&gt;
// Close request to clear up some resources&lt;br /&gt;
curl_close($curl);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit API Articles]]&lt;/div&gt;</summary>
		<author><name>OfferitRob</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_REST_API_Add_Global_Void_Ip</id>
		<title>Offerit REST API Add Global Void Ip</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_REST_API_Add_Global_Void_Ip"/>
				<updated>2022-08-01T21:57:23Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitRob: Created page with &amp;quot;{{Offerit Manual | show_rest_api_section = true }} == '''POST /config/add_global_void_ip''' == '''Description'''  *The  api/config/add_global_void_ip action adds a valid ip to...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_rest_api_section = true&lt;br /&gt;
}}&lt;br /&gt;
== '''POST /config/add_global_void_ip''' ==&lt;br /&gt;
'''Description''' &lt;br /&gt;
*The  api/config/add_global_void_ip action adds a valid ip to the Config-&amp;gt;Security-&amp;gt;Global Void Ip list&lt;br /&gt;
&lt;br /&gt;
'''Resource URL'''&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;https://domain/api/config/add_global_void_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Replace domain with the Offerit domain&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Allowed_HTTP_Request_Methods|Request Method''']]&lt;br /&gt;
*POST&lt;br /&gt;
&lt;br /&gt;
'''Response Format'''&lt;br /&gt;
*JSON&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Authentication|Authentication]]'''&lt;br /&gt;
*HTTP headers&lt;br /&gt;
&lt;br /&gt;
== '''Parameters''' ==&lt;br /&gt;
'''Parameters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded'''&lt;br /&gt;
&lt;br /&gt;
*ip&lt;br /&gt;
**'''''type: string'''''&lt;br /&gt;
**'''required'''&lt;br /&gt;
**ipv4 or ipv6 format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Example Request''' ==&lt;br /&gt;
&lt;br /&gt;
'''POST'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;https://domain/api/config/add_global_void_ip&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Response: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;success&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Ip added / Ip already in list&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;error&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Invalid ip&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== '''Example Code''' ==&lt;br /&gt;
&lt;br /&gt;
'''PHP'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$curl = curl_init();&lt;br /&gt;
&lt;br /&gt;
$data = array(&lt;br /&gt;
    'ip' =&amp;gt; '73.279.112.30',&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
$url = 'https://domain/api/config/add_global_void_ip';&lt;br /&gt;
&lt;br /&gt;
$headers = array(&lt;br /&gt;
    'api-key: 44b5498dbcb481a0d00b404c0169af62',&lt;br /&gt;
    'api-username: offerit_admin'&lt;br /&gt;
);&lt;br /&gt;
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, &amp;quot;POST&amp;quot;);&lt;br /&gt;
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);&lt;br /&gt;
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);&lt;br /&gt;
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));&lt;br /&gt;
curl_setopt($curl, CURLOPT_URL, $url);&lt;br /&gt;
&lt;br /&gt;
$resp = curl_exec($curl);&lt;br /&gt;
//dumps an associative array representation of the json&lt;br /&gt;
var_dump(json_decode($resp, true));&lt;br /&gt;
// Close request to clear up some resources&lt;br /&gt;
curl_close($curl);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit API Articles]]&lt;/div&gt;</summary>
		<author><name>OfferitRob</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_REST_API_Get_Global_Post_Ips</id>
		<title>Offerit REST API Get Global Post Ips</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_REST_API_Get_Global_Post_Ips"/>
				<updated>2022-07-26T21:13:08Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitRob: Created page with &amp;quot;{{Offerit Manual | show_rest_api_section = true }} == '''GET /config/get_global_post_ips''' == '''Description'''  *The  api/config/get_global_post_ips action is allows retriev...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_rest_api_section = true&lt;br /&gt;
}}&lt;br /&gt;
== '''GET /config/get_global_post_ips''' ==&lt;br /&gt;
'''Description''' &lt;br /&gt;
*The  api/config/get_global_post_ips action is allows retrieval of the Global Post Ip list (Config -&amp;gt; Security, Global Postback Allowed IPs)&lt;br /&gt;
&lt;br /&gt;
'''Resource URL'''&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;https://domain/api/config/get_global_post_ips&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Replace domain with the Offerit domain&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Allowed_HTTP_Request_Methods|Request Method''']]&lt;br /&gt;
*GET&lt;br /&gt;
&lt;br /&gt;
'''Response Format'''&lt;br /&gt;
*JSON&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Authentication|Authentication]]'''&lt;br /&gt;
*HTTP headers&lt;br /&gt;
&lt;br /&gt;
== '''Parameters''' ==&lt;br /&gt;
'''Parameters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Example Request''' ==&lt;br /&gt;
&lt;br /&gt;
'''GET'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;https://domain/api/config/get_global_post_ips&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Response: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;success&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: [&lt;br /&gt;
        &amp;quot;2001:1af8:4e00:a018:6::10&amp;quot;,&lt;br /&gt;
        &amp;quot;73.279.112.30&amp;quot;&lt;br /&gt;
    ]&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;error&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Invalid ip&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== '''Example Code''' ==&lt;br /&gt;
&lt;br /&gt;
'''PHP'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$curl = curl_init();&lt;br /&gt;
&lt;br /&gt;
$data = array();&lt;br /&gt;
&lt;br /&gt;
$url = 'https://domain/api/config/get_global_post_ips';&lt;br /&gt;
&lt;br /&gt;
$headers = array(&lt;br /&gt;
    'api-key: 44b5498dbcb481a0d00b404c0169af62',&lt;br /&gt;
    'api-username: offerit_admin'&lt;br /&gt;
);&lt;br /&gt;
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, &amp;quot;GET&amp;quot;);&lt;br /&gt;
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);&lt;br /&gt;
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);&lt;br /&gt;
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));&lt;br /&gt;
curl_setopt($curl, CURLOPT_URL, $url);&lt;br /&gt;
&lt;br /&gt;
$resp = curl_exec($curl);&lt;br /&gt;
//dumps an associative array representation of the json&lt;br /&gt;
var_dump(json_decode($resp, true));&lt;br /&gt;
// Close request to clear up some resources&lt;br /&gt;
curl_close($curl);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit API Articles]]&lt;/div&gt;</summary>
		<author><name>OfferitRob</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_REST_API_Get_Global_Host_and_Post_Ips</id>
		<title>Offerit REST API Get Global Host and Post Ips</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_REST_API_Get_Global_Host_and_Post_Ips"/>
				<updated>2022-07-26T21:11:10Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitRob: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_rest_api_section = true&lt;br /&gt;
}}&lt;br /&gt;
== '''GET /config/get_global_hostnpost_ips''' ==&lt;br /&gt;
'''Description''' &lt;br /&gt;
*The  api/config/get_global_hostnpost_ips action is allows retrieval of the Global Post Ip list (Config -&amp;gt; Security, Global Host and Post Allowed IPs)&lt;br /&gt;
&lt;br /&gt;
'''Resource URL'''&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;https://domain/api/config/get_global_hostnpost_ips&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Replace domain with the Offerit domain&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Allowed_HTTP_Request_Methods|Request Method''']]&lt;br /&gt;
*GET&lt;br /&gt;
&lt;br /&gt;
'''Response Format'''&lt;br /&gt;
*JSON&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Authentication|Authentication]]'''&lt;br /&gt;
*HTTP headers&lt;br /&gt;
&lt;br /&gt;
== '''Parameters''' ==&lt;br /&gt;
'''Parameters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Example Request''' ==&lt;br /&gt;
&lt;br /&gt;
'''GET'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;https://domain/api/config/get_global_hostnpost_ips&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Response: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;success&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: [&lt;br /&gt;
        &amp;quot;2001:1af8:4e00:a018:6::10&amp;quot;,&lt;br /&gt;
        &amp;quot;73.279.112.30&amp;quot;&lt;br /&gt;
    ]&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;error&amp;quot;,&lt;br /&gt;
    &amp;quot;data&amp;quot;: &amp;quot;Invalid ip&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== '''Example Code''' ==&lt;br /&gt;
&lt;br /&gt;
'''PHP'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$curl = curl_init();&lt;br /&gt;
&lt;br /&gt;
$data = array();&lt;br /&gt;
&lt;br /&gt;
$url = 'https://domain/api/config/get_global_hostnpost_ips';&lt;br /&gt;
&lt;br /&gt;
$headers = array(&lt;br /&gt;
    'api-key: 44b5498dbcb481a0d00b404c0169af62',&lt;br /&gt;
    'api-username: offerit_admin'&lt;br /&gt;
);&lt;br /&gt;
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, &amp;quot;GET&amp;quot;);&lt;br /&gt;
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);&lt;br /&gt;
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);&lt;br /&gt;
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));&lt;br /&gt;
curl_setopt($curl, CURLOPT_URL, $url);&lt;br /&gt;
&lt;br /&gt;
$resp = curl_exec($curl);&lt;br /&gt;
//dumps an associative array representation of the json&lt;br /&gt;
var_dump(json_decode($resp, true));&lt;br /&gt;
// Close request to clear up some resources&lt;br /&gt;
curl_close($curl);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit API Articles]]&lt;/div&gt;</summary>
		<author><name>OfferitRob</name></author>	</entry>

	<entry>
		<id>https://wiki.offerit.com/index.php?title=Offerit_REST_API_Get_Global_Void_Ips</id>
		<title>Offerit REST API Get Global Void Ips</title>
		<link rel="alternate" type="text/html" href="https://wiki.offerit.com/index.php?title=Offerit_REST_API_Get_Global_Void_Ips"/>
				<updated>2022-07-22T18:08:39Z</updated>
		
		<summary type="html">&lt;p&gt;OfferitRob: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Offerit Manual&lt;br /&gt;
| show_rest_api_section = true&lt;br /&gt;
}}&lt;br /&gt;
== '''GET /config/get_global_void_ips''' ==&lt;br /&gt;
'''Description''' &lt;br /&gt;
*The  api/config/get_global_void_ips action allows retrieval of the &amp;quot;Global Void Allowed IPs&amp;quot; list set in Config -&amp;gt; Security&lt;br /&gt;
&lt;br /&gt;
'''Resource URL'''&lt;br /&gt;
*&amp;lt;nowiki&amp;gt;https://domain/api/config/get_global_void_ips&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*Replace domain with the Offerit domain&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Allowed_HTTP_Request_Methods|Request Method''']]&lt;br /&gt;
*GET&lt;br /&gt;
&lt;br /&gt;
'''Response Format'''&lt;br /&gt;
*JSON&lt;br /&gt;
&lt;br /&gt;
'''[[Offerit_REST_API_Overview#Authentication|Authentication]]'''&lt;br /&gt;
*HTTP headers&lt;br /&gt;
&lt;br /&gt;
== '''Parameters''' ==&lt;br /&gt;
'''Parameters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Example Request''' ==&lt;br /&gt;
&lt;br /&gt;
'''GET'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;https://domain/api/config/get_global_void_ips&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Response: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
true&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== '''Example Code''' ==&lt;br /&gt;
&lt;br /&gt;
'''PHP'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$curl = curl_init();&lt;br /&gt;
&lt;br /&gt;
$data = array();&lt;br /&gt;
&lt;br /&gt;
$url = 'https://domain/api/config/get_global_void_ips';&lt;br /&gt;
&lt;br /&gt;
$headers = array(&lt;br /&gt;
    'api-key: 44b5498dbcb481a0d00b404c0169af62',&lt;br /&gt;
    'api-username: offerit_admin'&lt;br /&gt;
);&lt;br /&gt;
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, &amp;quot;GET&amp;quot;);&lt;br /&gt;
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);&lt;br /&gt;
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);&lt;br /&gt;
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));&lt;br /&gt;
curl_setopt($curl, CURLOPT_URL, $url);&lt;br /&gt;
&lt;br /&gt;
$resp = curl_exec($curl);&lt;br /&gt;
//dumps an associative array representation of the json&lt;br /&gt;
var_dump(json_decode($resp, true));&lt;br /&gt;
// Close request to clear up some resources&lt;br /&gt;
curl_close($curl);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Python'''&lt;br /&gt;
*This example requires pip and the request library which can be installed via pip by: 'pip install requests'&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
import requests&lt;br /&gt;
import json&lt;br /&gt;
&lt;br /&gt;
url = 'https://domain/api/config/get_global_void_ips'&lt;br /&gt;
&lt;br /&gt;
payload = {}&lt;br /&gt;
&lt;br /&gt;
headers = {&lt;br /&gt;
    'api-key': '44b5498dbcb481a0d00b404c0169af62',&lt;br /&gt;
    'api-username': 'offerit_admin'&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
res = requests.GET(url, data=payload, headers=headers)&lt;br /&gt;
print res.json()&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''node.js'''&lt;br /&gt;
*This example requires npm and the request module which can be installed via npm by: 'npm install request'&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
var request = require('request');&lt;br /&gt;
&lt;br /&gt;
data = {}&lt;br /&gt;
&lt;br /&gt;
var options = {&lt;br /&gt;
    url: 'https://domain/api/config/get_global_void_ips',&lt;br /&gt;
    method: 'GET',&lt;br /&gt;
    form: data,&lt;br /&gt;
    json: true,&lt;br /&gt;
    headers: {&lt;br /&gt;
        'api-key': '44b5498dbcb481a0d00b404c0169af62',&lt;br /&gt;
        'api-username': 'offerit_admin'&lt;br /&gt;
    }&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
function callback(error, response, body) {&lt;br /&gt;
    if (!error &amp;amp;&amp;amp; response.statusCode == 200) {&lt;br /&gt;
        console.log(body);&lt;br /&gt;
    }&lt;br /&gt;
    else{&lt;br /&gt;
        console.log(body);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
request(options, callback);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Curl'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
curl -X GET 'https://domain/api/config/get_global_void_ips' -H &amp;quot;api-key: 44b5498dbcb481a0d00b404c0169af62&amp;quot; -H &amp;quot;api-username: offerit_admin&amp;quot; -H &amp;quot;Content-Type: application/x-www-form-urlencoded&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Offerit API Articles]]&lt;/div&gt;</summary>
		<author><name>OfferitRob</name></author>	</entry>

	</feed>