list_streaming_profiles() public method

List all streaming profiles associated with the current customer
public list_streaming_profiles ( array $options = [] ) : Response
$options array options
return Cloudinary\Api\Response An array with a "data" key for results
Example #1
0
 function test_list_streaming_profile()
 {
     $result = $this->api->list_streaming_profiles();
     $names = array_map(function ($profile) {
         return $profile["name"];
     }, $result["data"]);
     $this->assertEmpty(array_diff(self::$predefined_profiles, $names));
 }