POST subscribers/export
Exports all app mailing list subscribers
URL:
http://us.mobileroadie.com/api/subscribers/export
Formats
XML, JSON, HTML, CSV
Requirements
SSL, API Secret, White-Listed IP Address
HTTP Method(s):
POST
URL Parameter(s):
-
key
-
Required
-
-
limit
-
Not required, returns amount of results based on number entered.
-
-
offset
-
Not required.
-
POST Parameters:
-
secret
-
Required.
-
Usage Example
<?php $data = array( 'secret' => 'your_secret_key' ); $handle = curl_init("https://mobileroadie.com/api/subscribers/export/key/4d4ba30d73b77f7/format/csv/limit/3/offset/0"); curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_ANY); curl_setopt($handle, CURLOPT_POST, true); curl_setopt($handle, CURLOPT_POSTFIELDS, $data); $response = curl_exec($handle); curl_close($handle); ?>
Comments
0 comments
Please sign in to leave a comment.