All URIs are relative to https://api.meltwater.com
Method | HTTP request | Description |
---|---|---|
getAllSearches | GET /v2/searches | List your saved searches. |
\Swagger\Client\Model\SearchesCollection getAllSearches($user_key, $authorization)
List your saved searches.
List your saved searches.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\SearchesApi();
$user_key = "user_key_example"; // string | The `user_key` from [developer.meltwater.com](https://developer.meltwater.com/admin/applications/).
$authorization = "authorization_example"; // string | `Oauth Access Token` OAuth access token (RFC 6749). Must contain the access token type `Bearer` followed by an OAuth access token. #### Example: Bearer KKwmfHwxsEoeMDTMAfxOpO...
try {
$result = $api_instance->getAllSearches($user_key, $authorization);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling SearchesApi->getAllSearches: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_key | string | The `user_key` from developer.meltwater.com. | |
authorization | string | `Oauth Access Token` OAuth access token (RFC 6749). Must contain the access token type `Bearer` followed by an OAuth access token. #### Example: Bearer KKwmfHwxsEoeMDTMAfxOpO... |
\Swagger\Client\Model\SearchesCollection
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]