Coupontools Logo

API & Webhooks

Connect the Coupontools platform with your apps or web projects. The Coupontools REST API allows you to query meta-data about your account, campaigns, distribution, validations, and usage data.

Send single push notification

Send a push notification to a single registered wallet user.
Base URL
POST: https://api4coupons.com/v3/coupon/pushnotification/single
Parameters
# Parameter Input Description
1 client_id API client ID Can be found in your API documentation
Required
2 client_secret API client secret Can be found in your API documentation
Required
3 campaign ID from the campaign Can be found in the list of all campaigns. Example: cam_12345
Required
4 couponsession The unique session code (example: ac6s7u3g8a25ja7x9qg87 or ac6s7u) Can be found in the webhooks or API call to retrieve all data from a campaign.
Required
5 message Your push notification message
Required
<?php
	$ch = curl_init();
	$url = "https://api4coupons.com/v3/coupon/pushnotification/single";
	$client_id = "XXX"; // Your API client ID (required)
	$client_secret = "YYY"; // Your API client secret (required)
	$data = [
		'campaign' => "cam_123456",
		'couponsession' => "ac6s7u3g8a25ja7x9qg87",
		'message' => "Example"
	];
	curl_setopt($ch, CURLOPT_URL, "$url");
	curl_setopt($ch, CURLOPT_POST, true);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	curl_setopt($ch, CURLOPT_VERBOSE, true);
	curl_setopt($ch, CURLOPT_HTTPHEADER, [
		"X-Client-Id: $client_id",
		"X-Client-Secret: $client_secret",
		"Content-Type: application/json",
	]);
	curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
	$response = curl_exec($ch);
?>
Example response
				{
					"status": {
						"status": "OK"
					}
				}
				
Example error response
				{
					"status": {
						"status": "failed"
					},
					"errors": {
						"error_message": "HTTP/1.0 422 Unprocessable entity.",
						"error_message_description": [
							"Couponsession not found."
						],
						"error_code": [
							505
						]
					}
				}
				
Possible errors
  • 200: Missing parameter: campaign.
  • 200: Missing parameter: couponsession
  • 200: Missing parameter: message
  • 301: Invalid character in parameter: campaign.
  • 505: Couponsession not found.
  • 506: Campaign ID not found
  • 507: Error sending push notification
  • 507: 0 users have saved the Campaign.

  • Regístrate ahora para una cuenta de prueba por 7 días

    ¡Empieza a usar Coupontools hoy!

¡Genial, estás aquí! ¿Cookies? Lee nuestrasPolíticas de Privacidad. Yo acepto
x