All URIs are relative to https://api.meltwater.com
Method | HTTP request | Description |
---|---|---|
getEditorialStreamingJsonSchema | GET /v2/schemas/editorial_streaming.json | Editorial Streaming JSON schema |
getSocialStreamingJsonSchema | GET /v2/schemas/social_streaming.json | Social Streaming JSON schema |
getEditorialStreamingJsonSchema($user_key)
Editorial Streaming JSON schema
Get the JSON schema describing the layout of Editorial Streaming documents.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\SchemasApi();
$user_key = "user_key_example"; // string | The `user_key` from [developer.meltwater.com](https://developer.meltwater.com/admin/applications/).
try {
$api_instance->getEditorialStreamingJsonSchema($user_key);
} catch (Exception $e) {
echo 'Exception when calling SchemasApi->getEditorialStreamingJsonSchema: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_key | string | The `user_key` from developer.meltwater.com. |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getSocialStreamingJsonSchema($user_key)
Social Streaming JSON schema
Get the JSON schema describing the layout of Social Streaming documents.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\SchemasApi();
$user_key = "user_key_example"; // string | The `user_key` from [developer.meltwater.com](https://developer.meltwater.com/admin/applications/).
try {
$api_instance->getSocialStreamingJsonSchema($user_key);
} catch (Exception $e) {
echo 'Exception when calling SchemasApi->getSocialStreamingJsonSchema: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
user_key | string | The `user_key` from developer.meltwater.com. |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]