14 lines
		
	
	
		
			302 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			302 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
 | 
						|
use Volc\Service\Notify;
 | 
						|
 | 
						|
require('../../../vendor/autoload.php');
 | 
						|
require('../../src/Service/Notify.php');
 | 
						|
 | 
						|
$client = Notify::getInstance();
 | 
						|
$client->setAccessKey("your ak");
 | 
						|
$client->setSecretKey("your sk");
 | 
						|
 | 
						|
$response = $client->PauseTask("0742e8123ada40cb9efa6b55e8fced7a");
 | 
						|
echo $response; |