Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Latest commit

 

History

History
98 lines (64 loc) · 3.01 KB

SchemasApi.md

File metadata and controls

98 lines (64 loc) · 3.01 KB

Swagger\Client\SchemasApi

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

getEditorialStreamingJsonSchema($user_key)

Editorial Streaming JSON schema

Get the JSON schema describing the layout of Editorial Streaming documents.

Example

<?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;
}
?>

Parameters

Name Type Description Notes
user_key string The `user_key` from developer.meltwater.com.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

getSocialStreamingJsonSchema

getSocialStreamingJsonSchema($user_key)

Social Streaming JSON schema

Get the JSON schema describing the layout of Social Streaming documents.

Example

<?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;
}
?>

Parameters

Name Type Description Notes
user_key string The `user_key` from developer.meltwater.com.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]