getArticleById
Get article by id
Get an article by it's id
/article/{id}
Usage and SDK Samples
curl -X GET "https://blog.swagger.io/v3/article/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ArticleApi;
import java.io.File;
import java.util.*;
public class ArticleApiExample {
public static void main(String[] args) {
ArticleApi apiInstance = new ArticleApi();
Integer id = 56; // Integer | The only Id of the article for the filter
try {
Article result = apiInstance.getArticleById(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ArticleApi#getArticleById");
e.printStackTrace();
}
}
}
import io.swagger.client.api.ArticleApi;
public class ArticleApiExample {
public static void main(String[] args) {
ArticleApi apiInstance = new ArticleApi();
Integer id = 56; // Integer | The only Id of the article for the filter
try {
Article result = apiInstance.getArticleById(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ArticleApi#getArticleById");
e.printStackTrace();
}
}
}
Integer *id = 56; // The only Id of the article for the filter
ArticleApi *apiInstance = [[ArticleApi alloc] init];
// Get article by id
[apiInstance getArticleByIdWith:id
completionHandler: ^(Article output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var SwaggerBlog = require('swagger_blog');
var api = new SwaggerBlog.ArticleApi()
var id = 56; // {Integer} The only Id of the article for the filter
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.getArticleById(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class getArticleByIdExample
{
public void main()
{
var apiInstance = new ArticleApi();
var id = 56; // Integer | The only Id of the article for the filter
try
{
// Get article by id
Article result = apiInstance.getArticleById(id);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling ArticleApi.getArticleById: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\ArticleApi();
$id = 56; // Integer | The only Id of the article for the filter
try {
$result = $api_instance->getArticleById($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ArticleApi->getArticleById: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ArticleApi;
my $api_instance = WWW::SwaggerClient::ArticleApi->new();
my $id = 56; # Integer | The only Id of the article for the filter
eval {
my $result = $api_instance->getArticleById(id => $id);
print Dumper($result);
};
if ($@) {
warn "Exception when calling ArticleApi->getArticleById: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.ArticleApi()
id = 56 # Integer | The only Id of the article for the filter
try:
# Get article by id
api_response = api_instance.get_article_by_id(id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ArticleApi->getArticleById: %s\n" % e)
Parameters
Path parameters
Name | Description |
---|---|
id* |
Integer
The only Id of the article for the filter
Required
|