companyCompanyIdGet
企業設定を取得
/company/{companyId}/
                        
Usage and SDK Samples
curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/estimation/api/v4/company/{companyId}/"
                          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();
        headerParam headerParam = ; // headerParam | リクエストヘッダーから取得した情報
        UUID companyId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 企業設定
        try {
            inline_response_200 result = apiInstance.companyCompanyIdGet(headerParam, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#companyCompanyIdGet");
            e.printStackTrace();
        }
    }
}
                          import io.swagger.client.api.DefaultApi;
public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        headerParam headerParam = ; // headerParam | リクエストヘッダーから取得した情報
        UUID companyId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 企業設定
        try {
            inline_response_200 result = apiInstance.companyCompanyIdGet(headerParam, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#companyCompanyIdGet");
            e.printStackTrace();
        }
    }
}
                          headerParam *headerParam = ; // リクエストヘッダーから取得した情報
UUID *companyId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // 企業設定
DefaultApi *apiInstance = [[DefaultApi alloc] init];
// 企業設定を取得
[apiInstance companyCompanyIdGetWith:headerParam
    companyId:companyId
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
                            var EstimationApiV4 = require('estimation_api_v4');
var api = new EstimationApiV4.DefaultApi()
var headerParam = ; // {{headerParam}} リクエストヘッダーから取得した情報
var companyId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // {{UUID}} 企業設定
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.companyCompanyIdGet(headerParam, companyId, callback);
                            using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
    public class companyCompanyIdGetExample
    {
        public void main()
        {
            var apiInstance = new DefaultApi();
            var headerParam = new headerParam(); // headerParam | リクエストヘッダーから取得した情報
            var companyId = new UUID(); // UUID | 企業設定
            try
            {
                // 企業設定を取得
                inline_response_200 result = apiInstance.companyCompanyIdGet(headerParam, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.companyCompanyIdGet: " + e.Message );
            }
        }
    }
}
                            <?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiDefaultApi();
$headerParam = ; // headerParam | リクエストヘッダーから取得した情報
$companyId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 企業設定
try {
    $result = $api_instance->companyCompanyIdGet($headerParam, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->companyCompanyIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
                            use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;
my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $headerParam = ; # headerParam | リクエストヘッダーから取得した情報
my $companyId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; # UUID | 企業設定
eval { 
    my $result = $api_instance->companyCompanyIdGet(headerParam => $headerParam, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->companyCompanyIdGet: $@\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()
headerParam =  # headerParam | リクエストヘッダーから取得した情報
companyId = 38400000-8cf0-11bd-b23e-10b96e4ef00d # UUID | 企業設定
try: 
    # 企業設定を取得
    api_response = api_instance.company_company_id_get(headerParam, companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->companyCompanyIdGet: %s\n" % e)
                            Parameters
| Name | Description | 
|---|---|
| companyId* | 
                                  
                                  
                                       
                                                  
                                                      UUID
                                                  
                                                      
                                                          (uuid)
                                                      
                                  
                                                       
                                                  
                                                          企業設定
                                                       
                                              
                                                      Required
                                                   
                                           | 
                                  
| Name | Description | 
|---|---|
| headerParam* | 
                                  
                                  
                                       
                                                  
                                                      headerParam
                                                  
                                  
                                                       
                                                  
                                                          リクエストヘッダーから取得した情報
                                                       
                                              
                                                      Required
                                                   
                                           |