Fenerbahçe Working Summary API

Default

getWorkingSummary

Get the working summary for the specified organization

This endpoint retrieves the working summary for a specified organization, allowing for custom search filters and pagination.


/integration/{orgId}/working-summary

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"//integration/{orgId}/working-summary"
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();
        FenerbahçeWorkingSummaryBody body = ; // FenerbahçeWorkingSummaryBody | 
        String orgId = orgId_example; // String | The ID of the Fenerbahçe organization.
        try {
            FenerbahçeWorkingSummaryResponsePaginated result = apiInstance.getWorkingSummary(body, orgId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#getWorkingSummary");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        FenerbahçeWorkingSummaryBody body = ; // FenerbahçeWorkingSummaryBody | 
        String orgId = orgId_example; // String | The ID of the Fenerbahçe organization.
        try {
            FenerbahçeWorkingSummaryResponsePaginated result = apiInstance.getWorkingSummary(body, orgId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#getWorkingSummary");
            e.printStackTrace();
        }
    }
}
FenerbahçeWorkingSummaryBody *body = ; // 
String *orgId = orgId_example; // The ID of the Fenerbahçe organization.

DefaultApi *apiInstance = [[DefaultApi alloc] init];

// Get the working summary for the specified organization
[apiInstance getWorkingSummaryWith:body
    orgId:orgId
              completionHandler: ^(FenerbahçeWorkingSummaryResponsePaginated output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var FenerbahçeWorkingSummaryApi = require('fenerbahce_working_summary_api');

var api = new FenerbahçeWorkingSummaryApi.DefaultApi()
var body = ; // {{FenerbahçeWorkingSummaryBody}} 
var orgId = orgId_example; // {{String}} The ID of the Fenerbahçe organization.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getWorkingSummary(bodyorgId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getWorkingSummaryExample
    {
        public void main()
        {

            var apiInstance = new DefaultApi();
            var body = new FenerbahçeWorkingSummaryBody(); // FenerbahçeWorkingSummaryBody | 
            var orgId = orgId_example;  // String | The ID of the Fenerbahçe organization.

            try
            {
                // Get the working summary for the specified organization
                FenerbahçeWorkingSummaryResponsePaginated result = apiInstance.getWorkingSummary(body, orgId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.getWorkingSummary: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // FenerbahçeWorkingSummaryBody | 
$orgId = orgId_example; // String | The ID of the Fenerbahçe organization.

try {
    $result = $api_instance->getWorkingSummary($body, $orgId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->getWorkingSummary: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::FenerbahçeWorkingSummaryBody->new(); # FenerbahçeWorkingSummaryBody | 
my $orgId = orgId_example; # String | The ID of the Fenerbahçe organization.

eval { 
    my $result = $api_instance->getWorkingSummary(body => $body, orgId => $orgId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->getWorkingSummary: $@\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()
body =  # FenerbahçeWorkingSummaryBody | 
orgId = orgId_example # String | The ID of the Fenerbahçe organization.

try: 
    # Get the working summary for the specified organization
    api_response = api_instance.get_working_summary(body, orgId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->getWorkingSummary: %s\n" % e)

Parameters

Path parameters
Name Description
orgId*
String
The ID of the Fenerbahçe organization.
Required
Body parameters
Name Description
body *

Responses

Status: 200 - Successful retrieval of the working summary.

Status: 400 - Bad request, invalid parameters or missing required fields.

Status: 500 - Internal server error.