abstractById
Get a specific abstract post by its post id
/abstract/{post_id}
Usage and SDK Samples
curl -X GET\
-H "Accept: application/json"\
"/wp-json/schedule-builder/abstract/{post_id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;
import java.io.File;
import java.util.*;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
Integer postId = 56; // Integer | The WordPress® post id
try {
abstract result = apiInstance.abstractById(postId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#abstractById");
e.printStackTrace();
}
}
}
import io.swagger.client.api.DefaultApi;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
Integer postId = 56; // Integer | The WordPress® post id
try {
abstract result = apiInstance.abstractById(postId);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#abstractById");
e.printStackTrace();
}
}
}
Integer *postId = 56; // The WordPress® post id
DefaultApi *apiInstance = [[DefaultApi alloc] init];
[apiInstance abstractByIdWith:postId
completionHandler: ^(abstract output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var ScheduleBuilderOpenApi = require('schedule_builder_open_api');
var api = new ScheduleBuilderOpenApi.DefaultApi()
var postId = 56; // {{Integer}} The WordPress® post id
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.abstractById(postId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class abstractByIdExample
{
public void main()
{
var apiInstance = new DefaultApi();
var postId = 56; // Integer | The WordPress® post id
try
{
abstract result = apiInstance.abstractById(postId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DefaultApi.abstractById: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiDefaultApi();
$postId = 56; // Integer | The WordPress® post id
try {
$result = $api_instance->abstractById($postId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->abstractById: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;
my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $postId = 56; # Integer | The WordPress® post id
eval {
my $result = $api_instance->abstractById(postId => $postId);
print Dumper($result);
};
if ($@) {
warn "Exception when calling DefaultApi->abstractById: $@\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.DefaultApi()
postId = 56 # Integer | The WordPress® post id
try:
api_response = api_instance.abstract_by_id(postId)
pprint(api_response)
except ApiException as e:
print("Exception when calling DefaultApi->abstractById: %s\n" % e)
Parameters
| Name | Description |
|---|---|
| post_id* |
Integer
The WordPress® post id
Required
|