POST push/delete
Delete a Push Notification. Notifications that have already been sent will just be removed from the the historical listing. Notifications that are scheduled in the future will also be removed from the queue and not sent.
URL:
http://mobileroadie.com/api/push/delete
Formats
XML, JSON, HTML
Requirements
SSL, API Secret, White-Listed IP Address
HTTP Method(s):
POST
URL Parameter(s):
-
key
-
Required
-
POST Parameters:
-
secret
-
Required.
-
-
id
-
Required. Id of existing entry from push/getAll or push/create
-
Usage Example
<?php $data = array( 'secret' => 'your_secret_key', 'id' => '12345', ); $handle = curl_init("https://mobileroadie.com/api/push/delete/key/4d4ba30d73b77f7"); 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); ?>
Success Response
<xml> <rowsdeleted>1</rowsdeleted> </xml>
Failure Response
<xml> <rowsdeleted>0</rowsdeleted> </xml>
Comments
0 comments
Please sign in to leave a comment.