認証認可・マスタ管理API

認証認可・マスタ管理

APIs

addImage1

【未メンテ】画像アップロード

画像アップロードできるAPIです


/api/v1/upload/file

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: multipart/form-data"\
"http://HOSTNAME/api/v1/upload/file"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        byte[] file = file_example; // byte[] | 
        try {
            StorageDtoSwaggerResponseDto result = apiInstance.addImage1(file);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#addImage1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        byte[] file = file_example; // byte[] | 
        try {
            StorageDtoSwaggerResponseDto result = apiInstance.addImage1(file);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#addImage1");
            e.printStackTrace();
        }
    }
}
byte[] *file = file_example; //  (optional)

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

// 【未メンテ】画像アップロード
[apiInstance addImage1With:file
              completionHandler: ^(StorageDtoSwaggerResponseDto output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var opts = { 
  'file': file_example // {{byte[]}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.addImage1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var file = file_example;  // byte[] |  (optional) 

            try
            {
                // 【未メンテ】画像アップロード
                StorageDtoSwaggerResponseDto result = apiInstance.addImage1(file);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.addImage1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$file = file_example; // byte[] | 

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $file = file_example; # byte[] | 

eval { 
    my $result = $api_instance->addImage1(file => $file);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->addImage1: $@\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.APIsApi()
file = file_example # byte[] |  (optional)

try: 
    # 【未メンテ】画像アップロード
    api_response = api_instance.add_image1(file=file)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->addImage1: %s\n" % e)

Parameters

Form parameters
Name Description
file
byte[] (binary)

Responses

Status: 200 - 成功


addUser1

ユーザー作成

ユーザー作成できるAPIです。リクエストボディにPRO_SIGN_ADMINとPRO_SIGN_CONSULTANT以外は user_type:ブランクにします。PRO_SIGN_CONSULTANT以外は該当会社ブランクにします。


/api/v1/create/user/company/{companyId}

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/create/user/company/{companyId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | ユーザー作成する企業のID
        UserTo body = ; // UserTo | 
        String userId = userId_example; // String | ログインユーザーID
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        try {
            StatusResponseDTO result = apiInstance.addUser1(companyId, body, userId, companyId2, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#addUser1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | ユーザー作成する企業のID
        UserTo body = ; // UserTo | 
        String userId = userId_example; // String | ログインユーザーID
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        try {
            StatusResponseDTO result = apiInstance.addUser1(companyId, body, userId, companyId2, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#addUser1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // ユーザー作成する企業のID
UserTo *body = ; //  (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId2 = companyId_example; // ログインユーザーの会社ID (optional)
String *userType = userType_example; // ログインユーザーType (optional)

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

// ユーザー作成
[apiInstance addUser1With:companyId
    body:body
    userId:userId
    companyId2:companyId2
    userType:userType
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} ユーザー作成する企業のID
var opts = { 
  'body':  // {{UserTo}} 
  'userId': userId_example // {{String}} ログインユーザーID
  'companyId2': companyId_example // {{String}} ログインユーザーの会社ID
  'userType': userType_example // {{String}} ログインユーザーType
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.addUser1(companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | ユーザー作成する企業のID
            var body = new UserTo(); // UserTo |  (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId2 = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 

            try
            {
                // ユーザー作成
                StatusResponseDTO result = apiInstance.addUser1(companyId, body, userId, companyId2, userType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.addUser1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | ユーザー作成する企業のID
$body = ; // UserTo | 
$userId = userId_example; // String | ログインユーザーID
$companyId2 = companyId_example; // String | ログインユーザーの会社ID
$userType = userType_example; // String | ログインユーザーType

try {
    $result = $api_instance->addUser1($companyId, $body, $userId, $companyId2, $userType);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->addUser1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | ユーザー作成する企業のID
my $body = WWW::SwaggerClient::Object::UserTo->new(); # UserTo | 
my $userId = userId_example; # String | ログインユーザーID
my $companyId2 = companyId_example; # String | ログインユーザーの会社ID
my $userType = userType_example; # String | ログインユーザーType

eval { 
    my $result = $api_instance->addUser1(companyId => $companyId, body => $body, userId => $userId, companyId2 => $companyId2, userType => $userType);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->addUser1: $@\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.APIsApi()
companyId = companyId_example # String | ユーザー作成する企業のID
body =  # UserTo |  (optional)
userId = userId_example # String | ログインユーザーID (optional)
companyId2 = companyId_example # String | ログインユーザーの会社ID (optional)
userType = userType_example # String | ログインユーザーType (optional)

try: 
    # ユーザー作成
    api_response = api_instance.add_user1(companyId, body=body, userId=userId, companyId2=companyId2, userType=userType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->addUser1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
ユーザー作成する企業のID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
userType
String
ログインユーザーType
Body parameters
Name Description
body

Responses

Status: 200 - 成功

Status: 400 - 無効なリクエスト

Status: 404 - 見つかりません

Status: 409 - Conflict


apiV1AuditLogDownloadGet

監査ログURL取得

ダウンロードURL取得API S3にあるファイルのダウンロードURLを発行して返します


/api/v1/audit-log/download

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/audit-log/download?object_path=&charset="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 会社ID
        String userType = userType_example; // String | ログインユーザーType
        String objectPath = objectPath_example; // String | object_path
        String charset = charset_example; // String | 
        try {
            AuditLogDownloadListDTO result = apiInstance.apiV1AuditLogDownloadGet(companyId, userType, objectPath, charset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1AuditLogDownloadGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 会社ID
        String userType = userType_example; // String | ログインユーザーType
        String objectPath = objectPath_example; // String | object_path
        String charset = charset_example; // String | 
        try {
            AuditLogDownloadListDTO result = apiInstance.apiV1AuditLogDownloadGet(companyId, userType, objectPath, charset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1AuditLogDownloadGet");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 会社ID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *objectPath = objectPath_example; // object_path (optional)
String *charset = charset_example; //  (optional)

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

// 監査ログURL取得
[apiInstance apiV1AuditLogDownloadGetWith:companyId
    userType:userType
    objectPath:objectPath
    charset:charset
              completionHandler: ^(AuditLogDownloadListDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var opts = { 
  'companyId': companyId_example, // {{String}} 会社ID
  'userType': userType_example, // {{String}} ログインユーザーType
  'objectPath': objectPath_example, // {{String}} object_path
  'charset': charset_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.apiV1AuditLogDownloadGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 会社ID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var objectPath = objectPath_example;  // String | object_path (optional) 
            var charset = charset_example;  // String |  (optional) 

            try
            {
                // 監査ログURL取得
                AuditLogDownloadListDTO result = apiInstance.apiV1AuditLogDownloadGet(companyId, userType, objectPath, charset);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.apiV1AuditLogDownloadGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 会社ID
$userType = userType_example; // String | ログインユーザーType
$objectPath = objectPath_example; // String | object_path
$charset = charset_example; // String | 

try {
    $result = $api_instance->apiV1AuditLogDownloadGet($companyId, $userType, $objectPath, $charset);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->apiV1AuditLogDownloadGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 会社ID
my $userType = userType_example; # String | ログインユーザーType
my $objectPath = objectPath_example; # String | object_path
my $charset = charset_example; # String | 

eval { 
    my $result = $api_instance->apiV1AuditLogDownloadGet(companyId => $companyId, userType => $userType, objectPath => $objectPath, charset => $charset);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->apiV1AuditLogDownloadGet: $@\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.APIsApi()
companyId = companyId_example # String | 会社ID (optional)
userType = userType_example # String | ログインユーザーType (optional)
objectPath = objectPath_example # String | object_path (optional)
charset = charset_example # String |  (optional)

try: 
    # 監査ログURL取得
    api_response = api_instance.api_v1_audit_log_download_get(companyId=companyId, userType=userType, objectPath=objectPath, charset=charset)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->apiV1AuditLogDownloadGet: %s\n" % e)

Parameters

Header parameters
Name Description
companyId
String
会社ID
userType
String
ログインユーザーType
Query parameters
Name Description
object_path
String
object_path
charset
String

Responses

Status: 200 - 成功

Status: 500 - 内部サーバエラー


apiV1AuditLogDownloadListGet

監査ログURL取得

ダウンロードURL取得API S3にあるファイルのダウンロードURLを発行して返します


/api/v1/audit-log/download-list

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/audit-log/download-list?selected_company_id=&date_start_range=&date_end_range="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 会社ID(ADMIN、コンサルでは代わりにselectedCompanyIdを利用する)
        String userType(ユーザーは弾く) = userType(ユーザーは弾く)_example; // String | ログインユーザーType
        String selectedCompanyId = selectedCompanyId_example; // String | ADMIN、コンサルで利用。企業担当では使用しない
        String dateStartRange = dateStartRange_example; // String | 
        String dateEndRange = dateEndRange_example; // String | 
        try {
            AuditLogDownLoadListDTO result = apiInstance.apiV1AuditLogDownloadListGet(companyId, userType(ユーザーは弾く), selectedCompanyId, dateStartRange, dateEndRange);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1AuditLogDownloadListGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 会社ID(ADMIN、コンサルでは代わりにselectedCompanyIdを利用する)
        String userType(ユーザーは弾く) = userType(ユーザーは弾く)_example; // String | ログインユーザーType
        String selectedCompanyId = selectedCompanyId_example; // String | ADMIN、コンサルで利用。企業担当では使用しない
        String dateStartRange = dateStartRange_example; // String | 
        String dateEndRange = dateEndRange_example; // String | 
        try {
            AuditLogDownLoadListDTO result = apiInstance.apiV1AuditLogDownloadListGet(companyId, userType(ユーザーは弾く), selectedCompanyId, dateStartRange, dateEndRange);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1AuditLogDownloadListGet");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 会社ID(ADMIN、コンサルでは代わりにselectedCompanyIdを利用する) (optional)
String *userType(ユーザーは弾く) = userType(ユーザーは弾く)_example; // ログインユーザーType (optional)
String *selectedCompanyId = selectedCompanyId_example; // ADMIN、コンサルで利用。企業担当では使用しない (optional)
String *dateStartRange = dateStartRange_example; //  (optional)
String *dateEndRange = dateEndRange_example; //  (optional)

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

// 監査ログURL取得
[apiInstance apiV1AuditLogDownloadListGetWith:companyId
    userType(ユーザーは弾く):userType(ユーザーは弾く)
    selectedCompanyId:selectedCompanyId
    dateStartRange:dateStartRange
    dateEndRange:dateEndRange
              completionHandler: ^(AuditLogDownLoadListDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var opts = { 
  'companyId': companyId_example, // {{String}} 会社ID(ADMIN、コンサルでは代わりにselectedCompanyIdを利用する)
  'userType(ユーザーは弾く)': userType(ユーザーは弾く)_example, // {{String}} ログインユーザーType
  'selectedCompanyId': selectedCompanyId_example, // {{String}} ADMIN、コンサルで利用。企業担当では使用しない
  'dateStartRange': dateStartRange_example, // {{String}} 
  'dateEndRange': dateEndRange_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.apiV1AuditLogDownloadListGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 会社ID(ADMIN、コンサルでは代わりにselectedCompanyIdを利用する) (optional) 
            var userType(ユーザーは弾く) = userType(ユーザーは弾く)_example;  // String | ログインユーザーType (optional) 
            var selectedCompanyId = selectedCompanyId_example;  // String | ADMIN、コンサルで利用。企業担当では使用しない (optional) 
            var dateStartRange = dateStartRange_example;  // String |  (optional) 
            var dateEndRange = dateEndRange_example;  // String |  (optional) 

            try
            {
                // 監査ログURL取得
                AuditLogDownLoadListDTO result = apiInstance.apiV1AuditLogDownloadListGet(companyId, userType(ユーザーは弾く), selectedCompanyId, dateStartRange, dateEndRange);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.apiV1AuditLogDownloadListGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 会社ID(ADMIN、コンサルでは代わりにselectedCompanyIdを利用する)
$userType(ユーザーは弾く) = userType(ユーザーは弾く)_example; // String | ログインユーザーType
$selectedCompanyId = selectedCompanyId_example; // String | ADMIN、コンサルで利用。企業担当では使用しない
$dateStartRange = dateStartRange_example; // String | 
$dateEndRange = dateEndRange_example; // String | 

try {
    $result = $api_instance->apiV1AuditLogDownloadListGet($companyId, $userType(ユーザーは弾く), $selectedCompanyId, $dateStartRange, $dateEndRange);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->apiV1AuditLogDownloadListGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 会社ID(ADMIN、コンサルでは代わりにselectedCompanyIdを利用する)
my $userType(ユーザーは弾く) = userType(ユーザーは弾く)_example; # String | ログインユーザーType
my $selectedCompanyId = selectedCompanyId_example; # String | ADMIN、コンサルで利用。企業担当では使用しない
my $dateStartRange = dateStartRange_example; # String | 
my $dateEndRange = dateEndRange_example; # String | 

eval { 
    my $result = $api_instance->apiV1AuditLogDownloadListGet(companyId => $companyId, userType(ユーザーは弾く) => $userType(ユーザーは弾く), selectedCompanyId => $selectedCompanyId, dateStartRange => $dateStartRange, dateEndRange => $dateEndRange);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->apiV1AuditLogDownloadListGet: $@\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.APIsApi()
companyId = companyId_example # String | 会社ID(ADMIN、コンサルでは代わりにselectedCompanyIdを利用する) (optional)
userType(ユーザーは弾く) = userType(ユーザーは弾く)_example # String | ログインユーザーType (optional)
selectedCompanyId = selectedCompanyId_example # String | ADMIN、コンサルで利用。企業担当では使用しない (optional)
dateStartRange = dateStartRange_example # String |  (optional)
dateEndRange = dateEndRange_example # String |  (optional)

try: 
    # 監査ログURL取得
    api_response = api_instance.api_v1_audit_log_download_list_get(companyId=companyId, userType(ユーザーは弾く)=userType(ユーザーは弾く), selectedCompanyId=selectedCompanyId, dateStartRange=dateStartRange, dateEndRange=dateEndRange)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->apiV1AuditLogDownloadListGet: %s\n" % e)

Parameters

Header parameters
Name Description
companyId
String
会社ID(ADMIN、コンサルでは代わりにselectedCompanyIdを利用する)
userType(ユーザーは弾く)
String
ログインユーザーType
Query parameters
Name Description
selected_company_id
String
ADMIN、コンサルで利用。企業担当では使用しない
date_start_range
String
date_end_range
String

Responses

Status: 200 - 成功

Status: 500 - 内部サーバエラー


apiV1AuditLogDownloadUrlGet

監査ログURL取得

ダウンロードURL取得API S3にあるファイルのダウンロードURLを発行して返します


/api/v1/audit-log/download-url

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/audit-log/download-url?object_path=&charset="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 会社ID
        String userType = userType_example; // String | ログインユーザーType
        String objectPath = objectPath_example; // String | object_path
        String charset = charset_example; // String | 
        try {
            inline_response_200_1 result = apiInstance.apiV1AuditLogDownloadUrlGet(companyId, userType, objectPath, charset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1AuditLogDownloadUrlGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 会社ID
        String userType = userType_example; // String | ログインユーザーType
        String objectPath = objectPath_example; // String | object_path
        String charset = charset_example; // String | 
        try {
            inline_response_200_1 result = apiInstance.apiV1AuditLogDownloadUrlGet(companyId, userType, objectPath, charset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1AuditLogDownloadUrlGet");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 会社ID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *objectPath = objectPath_example; // object_path (optional)
String *charset = charset_example; //  (optional)

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

// 監査ログURL取得
[apiInstance apiV1AuditLogDownloadUrlGetWith:companyId
    userType:userType
    objectPath:objectPath
    charset:charset
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var opts = { 
  'companyId': companyId_example, // {{String}} 会社ID
  'userType': userType_example, // {{String}} ログインユーザーType
  'objectPath': objectPath_example, // {{String}} object_path
  'charset': charset_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.apiV1AuditLogDownloadUrlGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 会社ID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var objectPath = objectPath_example;  // String | object_path (optional) 
            var charset = charset_example;  // String |  (optional) 

            try
            {
                // 監査ログURL取得
                inline_response_200_1 result = apiInstance.apiV1AuditLogDownloadUrlGet(companyId, userType, objectPath, charset);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.apiV1AuditLogDownloadUrlGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 会社ID
$userType = userType_example; // String | ログインユーザーType
$objectPath = objectPath_example; // String | object_path
$charset = charset_example; // String | 

try {
    $result = $api_instance->apiV1AuditLogDownloadUrlGet($companyId, $userType, $objectPath, $charset);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->apiV1AuditLogDownloadUrlGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 会社ID
my $userType = userType_example; # String | ログインユーザーType
my $objectPath = objectPath_example; # String | object_path
my $charset = charset_example; # String | 

eval { 
    my $result = $api_instance->apiV1AuditLogDownloadUrlGet(companyId => $companyId, userType => $userType, objectPath => $objectPath, charset => $charset);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->apiV1AuditLogDownloadUrlGet: $@\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.APIsApi()
companyId = companyId_example # String | 会社ID (optional)
userType = userType_example # String | ログインユーザーType (optional)
objectPath = objectPath_example # String | object_path (optional)
charset = charset_example # String |  (optional)

try: 
    # 監査ログURL取得
    api_response = api_instance.api_v1_audit_log_download_url_get(companyId=companyId, userType=userType, objectPath=objectPath, charset=charset)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->apiV1AuditLogDownloadUrlGet: %s\n" % e)

Parameters

Header parameters
Name Description
companyId
String
会社ID
userType
String
ログインユーザーType
Query parameters
Name Description
object_path
String
object_path
charset
String

Responses

Status: 200 - 成功

Status: 500 - 内部サーバエラー


apiV1AuditLogPost

監査ログ登録


/api/v1/audit-log

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/audit-log"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        AuditLogRequest body = ; // AuditLogRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.apiV1AuditLogPost(body, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1AuditLogPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        AuditLogRequest body = ; // AuditLogRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.apiV1AuditLogPost(body, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1AuditLogPost");
            e.printStackTrace();
        }
    }
}
AuditLogRequest *body = ; //  (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)

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

// 監査ログ登録
[apiInstance apiV1AuditLogPostWith:body
    userId:userId
    userType:userType
    companyId:companyId
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var opts = { 
  'body':  // {{AuditLogRequest}} 
  'userId': userId_example // {{String}} ログインユーザーID
  'userType': userType_example // {{String}} ログインユーザーType
  'companyId': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.apiV1AuditLogPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var body = new AuditLogRequest(); // AuditLogRequest |  (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 監査ログ登録
                StatusResponseDTO result = apiInstance.apiV1AuditLogPost(body, userId, userType, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.apiV1AuditLogPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$body = ; // AuditLogRequest | 
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId = companyId_example; // String | ログインユーザーの会社ID

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $body = WWW::SwaggerClient::Object::AuditLogRequest->new(); # AuditLogRequest | 
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->apiV1AuditLogPost(body => $body, userId => $userId, userType => $userType, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->apiV1AuditLogPost: $@\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.APIsApi()
body =  # AuditLogRequest |  (optional)
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザーType (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 監査ログ登録
    api_response = api_instance.api_v1_audit_log_post(body=body, userId=userId, userType=userType, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->apiV1AuditLogPost: %s\n" % e)

Parameters

Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID
Body parameters
Name Description
body

Responses

Status: 200 - 成功

Status: 400 - 無効なリクエスト

Status: 404 - 見つかりません


apiV1DepartmentCompanyCompanyIdGet

全部署階層取得

対象企業の全部署階層を取得します(ツリー構造)


/api/v1/department/company/{companyId}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/department/company/{companyId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 対象企業ID
        try {
            DepartmentDtoListAllHierarchies result = apiInstance.apiV1DepartmentCompanyCompanyIdGet(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1DepartmentCompanyCompanyIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 対象企業ID
        try {
            DepartmentDtoListAllHierarchies result = apiInstance.apiV1DepartmentCompanyCompanyIdGet(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1DepartmentCompanyCompanyIdGet");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 対象企業ID

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

// 全部署階層取得
[apiInstance apiV1DepartmentCompanyCompanyIdGetWith:companyId
              completionHandler: ^(DepartmentDtoListAllHierarchies output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 対象企業ID

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

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 対象企業ID

            try
            {
                // 全部署階層取得
                DepartmentDtoListAllHierarchies result = apiInstance.apiV1DepartmentCompanyCompanyIdGet(companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.apiV1DepartmentCompanyCompanyIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 対象企業ID

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 対象企業ID

eval { 
    my $result = $api_instance->apiV1DepartmentCompanyCompanyIdGet(companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->apiV1DepartmentCompanyCompanyIdGet: $@\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.APIsApi()
companyId = companyId_example # String | 対象企業ID

try: 
    # 全部署階層取得
    api_response = api_instance.api_v1_department_company_company_id_get(companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->apiV1DepartmentCompanyCompanyIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
対象企業ID
Required

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


apiV1DepartmentsDepartmentIdCompanyCompanyIdGet

部署階層取得(所属ユーザー付)

対象企業の対象部署階層を取得します(ツリー構造)


/api/v1/departments/{departmentId}/company/{companyId}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/departments/{departmentId}/company/{companyId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 対象企業ID
        String departmentId = departmentId_example; // String | 対象部署ID
        try {
            DepartmentDtoListAllHierarchies result = apiInstance.apiV1DepartmentsDepartmentIdCompanyCompanyIdGet(companyId, departmentId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1DepartmentsDepartmentIdCompanyCompanyIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 対象企業ID
        String departmentId = departmentId_example; // String | 対象部署ID
        try {
            DepartmentDtoListAllHierarchies result = apiInstance.apiV1DepartmentsDepartmentIdCompanyCompanyIdGet(companyId, departmentId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1DepartmentsDepartmentIdCompanyCompanyIdGet");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 対象企業ID
String *departmentId = departmentId_example; // 対象部署ID

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

// 部署階層取得(所属ユーザー付)
[apiInstance apiV1DepartmentsDepartmentIdCompanyCompanyIdGetWith:companyId
    departmentId:departmentId
              completionHandler: ^(DepartmentDtoListAllHierarchies output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 対象企業ID
var departmentId = departmentId_example; // {{String}} 対象部署ID

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

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 対象企業ID
            var departmentId = departmentId_example;  // String | 対象部署ID

            try
            {
                // 部署階層取得(所属ユーザー付)
                DepartmentDtoListAllHierarchies result = apiInstance.apiV1DepartmentsDepartmentIdCompanyCompanyIdGet(companyId, departmentId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.apiV1DepartmentsDepartmentIdCompanyCompanyIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 対象企業ID
$departmentId = departmentId_example; // String | 対象部署ID

try {
    $result = $api_instance->apiV1DepartmentsDepartmentIdCompanyCompanyIdGet($companyId, $departmentId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->apiV1DepartmentsDepartmentIdCompanyCompanyIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 対象企業ID
my $departmentId = departmentId_example; # String | 対象部署ID

eval { 
    my $result = $api_instance->apiV1DepartmentsDepartmentIdCompanyCompanyIdGet(companyId => $companyId, departmentId => $departmentId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->apiV1DepartmentsDepartmentIdCompanyCompanyIdGet: $@\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.APIsApi()
companyId = companyId_example # String | 対象企業ID
departmentId = departmentId_example # String | 対象部署ID

try: 
    # 部署階層取得(所属ユーザー付)
    api_response = api_instance.api_v1_departments_department_id_company_company_id_get(companyId, departmentId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->apiV1DepartmentsDepartmentIdCompanyCompanyIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
対象企業ID
Required
departmentId*
String
対象部署ID
Required

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


apiV1ItemExpensesCompanyIdGet

費目一覧取得

企業IDに紐づく費目の一覧を取得する


/api/v1/item_expenses/{companyId}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/item_expenses/{companyId}?companyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | 企業ID
        String companyId = companyId_example; // String | 企業ID(パスパラメーター)
        try {
            ItemExpenseResponse result = apiInstance.apiV1ItemExpensesCompanyIdGet(userType, companyId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1ItemExpensesCompanyIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | 企業ID
        String companyId = companyId_example; // String | 企業ID(パスパラメーター)
        try {
            ItemExpenseResponse result = apiInstance.apiV1ItemExpensesCompanyIdGet(userType, companyId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#apiV1ItemExpensesCompanyIdGet");
            e.printStackTrace();
        }
    }
}
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId = companyId_example; // 企業ID (optional)
String *companyId = companyId_example; // 企業ID(パスパラメーター) (optional)

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

// 費目一覧取得
[apiInstance apiV1ItemExpensesCompanyIdGetWith:userType
    companyId:companyId
    companyId:companyId
              completionHandler: ^(ItemExpenseResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var opts = { 
  'userType': userType_example, // {{String}} ログインユーザーType
  'companyId': companyId_example, // {{String}} 企業ID
  'companyId': companyId_example // {{String}} 企業ID(パスパラメーター)
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.apiV1ItemExpensesCompanyIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId = companyId_example;  // String | 企業ID (optional) 
            var companyId = companyId_example;  // String | 企業ID(パスパラメーター) (optional) 

            try
            {
                // 費目一覧取得
                ItemExpenseResponse result = apiInstance.apiV1ItemExpensesCompanyIdGet(userType, companyId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.apiV1ItemExpensesCompanyIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$userType = userType_example; // String | ログインユーザーType
$companyId = companyId_example; // String | 企業ID
$companyId = companyId_example; // String | 企業ID(パスパラメーター)

try {
    $result = $api_instance->apiV1ItemExpensesCompanyIdGet($userType, $companyId, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->apiV1ItemExpensesCompanyIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | 企業ID
my $companyId = companyId_example; # String | 企業ID(パスパラメーター)

eval { 
    my $result = $api_instance->apiV1ItemExpensesCompanyIdGet(userType => $userType, companyId => $companyId, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->apiV1ItemExpensesCompanyIdGet: $@\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.APIsApi()
userType = userType_example # String | ログインユーザーType (optional)
companyId = companyId_example # String | 企業ID (optional)
companyId = companyId_example # String | 企業ID(パスパラメーター) (optional)

try: 
    # 費目一覧取得
    api_response = api_instance.api_v1_item_expenses_company_id_get(userType=userType, companyId=companyId, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->apiV1ItemExpensesCompanyIdGet: %s\n" % e)

Parameters

Header parameters
Name Description
userType
String
ログインユーザーType
companyId
String
企業ID
Query parameters
Name Description
companyId
String
企業ID(パスパラメーター)

Responses

Status: 200 - 成功

Status: 500 - 内部サーバエラー


associateUserwithDepartmentAndPosition1

【未メンテ】ユーザーを役職および部署に関連付ける

ユーザーを役職および部署に関連できます


/api/v1/user/company/{companyId}/associate

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/user/company/{companyId}/associate"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 
        UserDepartmentPositionBulkDto body = ; // UserDepartmentPositionBulkDto | 
        String userType = userType_example; // String | ログインユーザーType
        String userId = userId_example; // String | ログインユーザーID
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.associateUserwithDepartmentAndPosition1(companyId, body, userType, userId, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#associateUserwithDepartmentAndPosition1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 
        UserDepartmentPositionBulkDto body = ; // UserDepartmentPositionBulkDto | 
        String userType = userType_example; // String | ログインユーザーType
        String userId = userId_example; // String | ログインユーザーID
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.associateUserwithDepartmentAndPosition1(companyId, body, userType, userId, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#associateUserwithDepartmentAndPosition1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 
UserDepartmentPositionBulkDto *body = ; //  (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId2 = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】ユーザーを役職および部署に関連付ける
[apiInstance associateUserwithDepartmentAndPosition1With:companyId
    body:body
    userType:userType
    userId:userId
    companyId2:companyId2
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 
var opts = { 
  'body':  // {{UserDepartmentPositionBulkDto}} 
  'userType': userType_example // {{String}} ログインユーザーType
  'userId': userId_example // {{String}} ログインユーザーID
  'companyId2': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.associateUserwithDepartmentAndPosition1(companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 
            var body = new UserDepartmentPositionBulkDto(); // UserDepartmentPositionBulkDto |  (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId2 = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】ユーザーを役職および部署に関連付ける
                StatusResponseDTO result = apiInstance.associateUserwithDepartmentAndPosition1(companyId, body, userType, userId, companyId2);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.associateUserwithDepartmentAndPosition1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 
$body = ; // UserDepartmentPositionBulkDto | 
$userType = userType_example; // String | ログインユーザーType
$userId = userId_example; // String | ログインユーザーID
$companyId2 = companyId_example; // String | ログインユーザーの会社ID

try {
    $result = $api_instance->associateUserwithDepartmentAndPosition1($companyId, $body, $userType, $userId, $companyId2);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->associateUserwithDepartmentAndPosition1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 
my $body = WWW::SwaggerClient::Object::UserDepartmentPositionBulkDto->new(); # UserDepartmentPositionBulkDto | 
my $userType = userType_example; # String | ログインユーザーType
my $userId = userId_example; # String | ログインユーザーID
my $companyId2 = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->associateUserwithDepartmentAndPosition1(companyId => $companyId, body => $body, userType => $userType, userId => $userId, companyId2 => $companyId2);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->associateUserwithDepartmentAndPosition1: $@\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.APIsApi()
companyId = companyId_example # String | 
body =  # UserDepartmentPositionBulkDto |  (optional)
userType = userType_example # String | ログインユーザーType (optional)
userId = userId_example # String | ログインユーザーID (optional)
companyId2 = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 【未メンテ】ユーザーを役職および部署に関連付ける
    api_response = api_instance.associate_userwith_department_and_position1(companyId, body=body, userType=userType, userId=userId, companyId2=companyId2)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->associateUserwithDepartmentAndPosition1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
Required
Header parameters
Name Description
userType
String
ログインユーザーType
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
Body parameters
Name Description
body

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


companyIsTrusted1

企業がIPC推奨企業か否かを取得

指定したIDの企業が、企業がIPC推奨企業かをbooleanで取得する


/api/v1/company/{companyId}/is-trusted

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/company/{companyId}/is-trusted"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | IPC推奨企業か判定したい企業のID
        try {
            IsTrustedCompany result = apiInstance.companyIsTrusted1(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#companyIsTrusted1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | IPC推奨企業か判定したい企業のID
        try {
            IsTrustedCompany result = apiInstance.companyIsTrusted1(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#companyIsTrusted1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // IPC推奨企業か判定したい企業のID

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

// 企業がIPC推奨企業か否かを取得
[apiInstance companyIsTrusted1With:companyId
              completionHandler: ^(IsTrustedCompany output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} IPC推奨企業か判定したい企業のID

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

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | IPC推奨企業か判定したい企業のID

            try
            {
                // 企業がIPC推奨企業か否かを取得
                IsTrustedCompany result = apiInstance.companyIsTrusted1(companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.companyIsTrusted1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | IPC推奨企業か判定したい企業のID

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | IPC推奨企業か判定したい企業のID

eval { 
    my $result = $api_instance->companyIsTrusted1(companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->companyIsTrusted1: $@\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.APIsApi()
companyId = companyId_example # String | IPC推奨企業か判定したい企業のID

try: 
    # 企業がIPC推奨企業か否かを取得
    api_response = api_instance.company_is_trusted1(companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->companyIsTrusted1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
IPC推奨企業か判定したい企業のID
Required

Responses

Status: 200 - 成功

Status: 400 - 無効なリクエスト

Status: 404 - 見つかりません


createBankAccount1

【未メンテ】口座登録

口座を登録します


/api/v1/company/{companyId}/bankaccount

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/company/{companyId}/bankaccount"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 企業ID
        BankAccountRequest body = ; // BankAccountRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザータイプ
        String companyId2 = companyId_example; // String | ログインユーザー所属企業ID
        try {
            StatusResponseDTO result = apiInstance.createBankAccount1(companyId, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#createBankAccount1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 企業ID
        BankAccountRequest body = ; // BankAccountRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザータイプ
        String companyId2 = companyId_example; // String | ログインユーザー所属企業ID
        try {
            StatusResponseDTO result = apiInstance.createBankAccount1(companyId, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#createBankAccount1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 企業ID
BankAccountRequest *body = ; //  (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザータイプ (optional)
String *companyId2 = companyId_example; // ログインユーザー所属企業ID (optional)

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

// 【未メンテ】口座登録
[apiInstance createBankAccount1With:companyId
    body:body
    userId:userId
    userType:userType
    companyId2:companyId2
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 企業ID
var opts = { 
  'body':  // {{BankAccountRequest}} 
  'userId': userId_example // {{String}} ログインユーザーID
  'userType': userType_example // {{String}} ログインユーザータイプ
  'companyId2': companyId_example // {{String}} ログインユーザー所属企業ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createBankAccount1(companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 企業ID
            var body = new BankAccountRequest(); // BankAccountRequest |  (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザータイプ (optional) 
            var companyId2 = companyId_example;  // String | ログインユーザー所属企業ID (optional) 

            try
            {
                // 【未メンテ】口座登録
                StatusResponseDTO result = apiInstance.createBankAccount1(companyId, body, userId, userType, companyId2);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.createBankAccount1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 企業ID
$body = ; // BankAccountRequest | 
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザータイプ
$companyId2 = companyId_example; // String | ログインユーザー所属企業ID

try {
    $result = $api_instance->createBankAccount1($companyId, $body, $userId, $userType, $companyId2);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->createBankAccount1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 企業ID
my $body = WWW::SwaggerClient::Object::BankAccountRequest->new(); # BankAccountRequest | 
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザータイプ
my $companyId2 = companyId_example; # String | ログインユーザー所属企業ID

eval { 
    my $result = $api_instance->createBankAccount1(companyId => $companyId, body => $body, userId => $userId, userType => $userType, companyId2 => $companyId2);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->createBankAccount1: $@\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.APIsApi()
companyId = companyId_example # String | 企業ID
body =  # BankAccountRequest |  (optional)
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザータイプ (optional)
companyId2 = companyId_example # String | ログインユーザー所属企業ID (optional)

try: 
    # 【未メンテ】口座登録
    api_response = api_instance.create_bank_account1(companyId, body=body, userId=userId, userType=userType, companyId2=companyId2)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->createBankAccount1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
企業ID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザータイプ
companyId
String
ログインユーザー所属企業ID
Body parameters
Name Description
body

Responses

Status: 200 -


createCompany1

【未メンテ】企業作成

企業作成APIです


/api/v1/create/company

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/create/company"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        CompanyTo body = ; // CompanyTo | 
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.createCompany1(body, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#createCompany1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        CompanyTo body = ; // CompanyTo | 
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.createCompany1(body, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#createCompany1");
            e.printStackTrace();
        }
    }
}
CompanyTo *body = ; //  (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】企業作成
[apiInstance createCompany1With:body
    userId:userId
    companyId:companyId
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var opts = { 
  'body':  // {{CompanyTo}} 
  'userId': userId_example // {{String}} ログインユーザーID
  'companyId': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createCompany1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var body = new CompanyTo(); // CompanyTo |  (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】企業作成
                StatusResponseDTO result = apiInstance.createCompany1(body, userId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.createCompany1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$body = ; // CompanyTo | 
$userId = userId_example; // String | ログインユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $body = WWW::SwaggerClient::Object::CompanyTo->new(); # CompanyTo | 
my $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->createCompany1(body => $body, userId => $userId, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->createCompany1: $@\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.APIsApi()
body =  # CompanyTo |  (optional)
userId = userId_example # String | ログインユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 【未メンテ】企業作成
    api_response = api_instance.create_company1(body=body, userId=userId, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->createCompany1: %s\n" % e)

Parameters

Header parameters
Name Description
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
Body parameters
Name Description
body

Responses

Status: 200 - 成功

Status: 400 - 無効なリクエスト

Status: 404 - 見つかりません


createDepartment1

【未メンテ】部署作成

部署作成APIです


/api/v1/create/department/company/{companyId}

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/create/department/company/{companyId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 部署作成する企業のID
        DepartmentTo body = ; // DepartmentTo | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.createDepartment1(companyId, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#createDepartment1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 部署作成する企業のID
        DepartmentTo body = ; // DepartmentTo | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.createDepartment1(companyId, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#createDepartment1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 部署作成する企業のID
DepartmentTo *body = ; //  (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId2 = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】部署作成
[apiInstance createDepartment1With:companyId
    body:body
    userId:userId
    userType:userType
    companyId2:companyId2
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 部署作成する企業のID
var opts = { 
  'body':  // {{DepartmentTo}} 
  'userId': userId_example // {{String}} ログインユーザーID
  'userType': userType_example // {{String}} ログインユーザーType
  'companyId2': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createDepartment1(companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 部署作成する企業のID
            var body = new DepartmentTo(); // DepartmentTo |  (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId2 = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】部署作成
                StatusResponseDTO result = apiInstance.createDepartment1(companyId, body, userId, userType, companyId2);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.createDepartment1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 部署作成する企業のID
$body = ; // DepartmentTo | 
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId2 = companyId_example; // String | ログインユーザーの会社ID

try {
    $result = $api_instance->createDepartment1($companyId, $body, $userId, $userType, $companyId2);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->createDepartment1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 部署作成する企業のID
my $body = WWW::SwaggerClient::Object::DepartmentTo->new(); # DepartmentTo | 
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId2 = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->createDepartment1(companyId => $companyId, body => $body, userId => $userId, userType => $userType, companyId2 => $companyId2);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->createDepartment1: $@\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.APIsApi()
companyId = companyId_example # String | 部署作成する企業のID
body =  # DepartmentTo |  (optional)
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザーType (optional)
companyId2 = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 【未メンテ】部署作成
    api_response = api_instance.create_department1(companyId, body=body, userId=userId, userType=userType, companyId2=companyId2)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->createDepartment1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
部署作成する企業のID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID
Body parameters
Name Description
body

Responses

Status: 200 - 成功

Status: 404 - 見つかりません

Status: 500 - 内部サーバエラー


createPosition1

【未メンテ】役職作成

役職作成APIです


/api/v1/create/position/company/{companyId}

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/create/position/company/{companyId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 役職作成する企業のID
        PositionTo body = ; // PositionTo | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.createPosition1(companyId, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#createPosition1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 役職作成する企業のID
        PositionTo body = ; // PositionTo | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.createPosition1(companyId, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#createPosition1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 役職作成する企業のID
PositionTo *body = ; //  (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId2 = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】役職作成
[apiInstance createPosition1With:companyId
    body:body
    userId:userId
    userType:userType
    companyId2:companyId2
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 役職作成する企業のID
var opts = { 
  'body':  // {{PositionTo}} 
  'userId': userId_example // {{String}} ログインユーザーID
  'userType': userType_example // {{String}} ログインユーザーType
  'companyId2': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createPosition1(companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 役職作成する企業のID
            var body = new PositionTo(); // PositionTo |  (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId2 = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】役職作成
                StatusResponseDTO result = apiInstance.createPosition1(companyId, body, userId, userType, companyId2);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.createPosition1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 役職作成する企業のID
$body = ; // PositionTo | 
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId2 = companyId_example; // String | ログインユーザーの会社ID

try {
    $result = $api_instance->createPosition1($companyId, $body, $userId, $userType, $companyId2);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->createPosition1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 役職作成する企業のID
my $body = WWW::SwaggerClient::Object::PositionTo->new(); # PositionTo | 
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId2 = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->createPosition1(companyId => $companyId, body => $body, userId => $userId, userType => $userType, companyId2 => $companyId2);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->createPosition1: $@\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.APIsApi()
companyId = companyId_example # String | 役職作成する企業のID
body =  # PositionTo |  (optional)
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザーType (optional)
companyId2 = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 【未メンテ】役職作成
    api_response = api_instance.create_position1(companyId, body=body, userId=userId, userType=userType, companyId2=companyId2)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->createPosition1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
役職作成する企業のID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID
Body parameters
Name Description
body

Responses

Status: 200 - 成功

Status: 404 - 見つかりません

Status: 500 - 内部サーバエラー


createPrivatePartner1

【未メンテ】Prosign利用なし取引先登録

Prosign利用なしの取引先情報を新規作成する


/api/v1/private-partner

Usage and SDK Samples

curl -X POST\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/private-partner"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        PrivatePartnerRequest body = ; // PrivatePartnerRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            apiInstance.createPrivatePartner1(body, userId, userType, companyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#createPrivatePartner1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        PrivatePartnerRequest body = ; // PrivatePartnerRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            apiInstance.createPrivatePartner1(body, userId, userType, companyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#createPrivatePartner1");
            e.printStackTrace();
        }
    }
}
PrivatePartnerRequest *body = ; //  (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】Prosign利用なし取引先登録
[apiInstance createPrivatePartner1With:body
    userId:userId
    userType:userType
    companyId:companyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var opts = { 
  'body':  // {{PrivatePartnerRequest}} 
  'userId': userId_example // {{String}} ログインユーザーID
  'userType': userType_example // {{String}} ログインユーザーType
  'companyId': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.createPrivatePartner1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var body = new PrivatePartnerRequest(); // PrivatePartnerRequest |  (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】Prosign利用なし取引先登録
                apiInstance.createPrivatePartner1(body, userId, userType, companyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.createPrivatePartner1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$body = ; // PrivatePartnerRequest | 
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId = companyId_example; // String | ログインユーザーの会社ID

try {
    $api_instance->createPrivatePartner1($body, $userId, $userType, $companyId);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->createPrivatePartner1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $body = WWW::SwaggerClient::Object::PrivatePartnerRequest->new(); # PrivatePartnerRequest | 
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | ログインユーザーの会社ID

eval { 
    $api_instance->createPrivatePartner1(body => $body, userId => $userId, userType => $userType, companyId => $companyId);
};
if ($@) {
    warn "Exception when calling APIsApi->createPrivatePartner1: $@\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.APIsApi()
body =  # PrivatePartnerRequest |  (optional)
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザーType (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 【未メンテ】Prosign利用なし取引先登録
    api_instance.create_private_partner1(body=body, userId=userId, userType=userType, companyId=companyId)
except ApiException as e:
    print("Exception when calling APIsApi->createPrivatePartner1: %s\n" % e)

Parameters

Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID
Body parameters
Name Description
body

Responses

Status: default - successful operation


deleteBankAccount1

【未メンテ】口座削除

口座を論理削除する


/api/v1/company/{companyId}/bankaccount/{id}

Usage and SDK Samples

curl -X DELETE\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/company/{companyId}/bankaccount/{id}?token=&updatedAt="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 企業ID
        String id = id_example; // String | 口座ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String token = token_example; // String | 
        String updatedAt = updatedAt_example; // String | 
        try {
            StatusResponseDTO result = apiInstance.deleteBankAccount1(companyId, id, userId, userType, companyId, token, updatedAt);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteBankAccount1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 企業ID
        String id = id_example; // String | 口座ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String token = token_example; // String | 
        String updatedAt = updatedAt_example; // String | 
        try {
            StatusResponseDTO result = apiInstance.deleteBankAccount1(companyId, id, userId, userType, companyId, token, updatedAt);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteBankAccount1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 企業ID
String *id = id_example; // 口座ID
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *token = token_example; //  (optional)
String *updatedAt = updatedAt_example; //  (optional)

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

// 【未メンテ】口座削除
[apiInstance deleteBankAccount1With:companyId
    id:id
    userId:userId
    userType:userType
    companyId:companyId
    token:token
    updatedAt:updatedAt
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 企業ID
var id = id_example; // {{String}} 口座ID
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーID
  'userType': userType_example, // {{String}} ログインユーザーType
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'token': token_example, // {{String}} 
  'updatedAt': updatedAt_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.deleteBankAccount1(companyId, id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 企業ID
            var id = id_example;  // String | 口座ID
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var token = token_example;  // String |  (optional) 
            var updatedAt = updatedAt_example;  // String |  (optional) 

            try
            {
                // 【未メンテ】口座削除
                StatusResponseDTO result = apiInstance.deleteBankAccount1(companyId, id, userId, userType, companyId, token, updatedAt);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.deleteBankAccount1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 企業ID
$id = id_example; // String | 口座ID
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId = companyId_example; // String | ログインユーザーの会社ID
$token = token_example; // String | 
$updatedAt = updatedAt_example; // String | 

try {
    $result = $api_instance->deleteBankAccount1($companyId, $id, $userId, $userType, $companyId, $token, $updatedAt);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->deleteBankAccount1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 企業ID
my $id = id_example; # String | 口座ID
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $token = token_example; # String | 
my $updatedAt = updatedAt_example; # String | 

eval { 
    my $result = $api_instance->deleteBankAccount1(companyId => $companyId, id => $id, userId => $userId, userType => $userType, companyId => $companyId, token => $token, updatedAt => $updatedAt);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->deleteBankAccount1: $@\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.APIsApi()
companyId = companyId_example # String | 企業ID
id = id_example # String | 口座ID
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザーType (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
token = token_example # String |  (optional)
updatedAt = updatedAt_example # String |  (optional)

try: 
    # 【未メンテ】口座削除
    api_response = api_instance.delete_bank_account1(companyId, id, userId=userId, userType=userType, companyId=companyId, token=token, updatedAt=updatedAt)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->deleteBankAccount1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
企業ID
Required
id*
String
口座ID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID
Query parameters
Name Description
token
String
updatedAt
String

Responses

Status: 200 -


deleteCompany1

【未メンテ】企業削除

企業削除APIです


/api/v1/delete/company/{companyId}

Usage and SDK Samples

curl -X DELETE\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/delete/company/{companyId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 削除する企業のID
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        try {
            StatusResponseDTO result = apiInstance.deleteCompany1(companyId, userId, companyId, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteCompany1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 削除する企業のID
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        try {
            StatusResponseDTO result = apiInstance.deleteCompany1(companyId, userId, companyId, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteCompany1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 削除する企業のID
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *userType = userType_example; // ログインユーザーType (optional)

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

// 【未メンテ】企業削除
[apiInstance deleteCompany1With:companyId
    userId:userId
    companyId:companyId
    userType:userType
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 削除する企業のID
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーID
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'userType': userType_example // {{String}} ログインユーザーType
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.deleteCompany1(companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 削除する企業のID
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 

            try
            {
                // 【未メンテ】企業削除
                StatusResponseDTO result = apiInstance.deleteCompany1(companyId, userId, companyId, userType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.deleteCompany1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 削除する企業のID
$userId = userId_example; // String | ログインユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID
$userType = userType_example; // String | ログインユーザーType

try {
    $result = $api_instance->deleteCompany1($companyId, $userId, $companyId, $userType);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->deleteCompany1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 削除する企業のID
my $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $userType = userType_example; # String | ログインユーザーType

eval { 
    my $result = $api_instance->deleteCompany1(companyId => $companyId, userId => $userId, companyId => $companyId, userType => $userType);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->deleteCompany1: $@\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.APIsApi()
companyId = companyId_example # String | 削除する企業のID
userId = userId_example # String | ログインユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
userType = userType_example # String | ログインユーザーType (optional)

try: 
    # 【未メンテ】企業削除
    api_response = api_instance.delete_company1(companyId, userId=userId, companyId=companyId, userType=userType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->deleteCompany1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
削除する企業のID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
userType
String
ログインユーザーType

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


deleteDepartment1

【未メンテ】部署削除

部署を削除できるAPIです


/api/v1/delete/department/{departmentId}/company/{companyId}

Usage and SDK Samples

curl -X DELETE\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/delete/department/{departmentId}/company/{companyId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 削除する部署の企業ID
        String departmentId = departmentId_example; // String | 削除する部署のID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.deleteDepartment1(companyId, departmentId, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteDepartment1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 削除する部署の企業ID
        String departmentId = departmentId_example; // String | 削除する部署のID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.deleteDepartment1(companyId, departmentId, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteDepartment1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 削除する部署の企業ID
String *departmentId = departmentId_example; // 削除する部署のID
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】部署削除
[apiInstance deleteDepartment1With:companyId
    departmentId:departmentId
    userId:userId
    userType:userType
    companyId:companyId
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 削除する部署の企業ID
var departmentId = departmentId_example; // {{String}} 削除する部署のID
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーID
  'userType': userType_example, // {{String}} ログインユーザーType
  'companyId': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.deleteDepartment1(companyId, departmentId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 削除する部署の企業ID
            var departmentId = departmentId_example;  // String | 削除する部署のID
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】部署削除
                StatusResponseDTO result = apiInstance.deleteDepartment1(companyId, departmentId, userId, userType, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.deleteDepartment1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 削除する部署の企業ID
$departmentId = departmentId_example; // String | 削除する部署のID
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId = companyId_example; // String | ログインユーザーの会社ID

try {
    $result = $api_instance->deleteDepartment1($companyId, $departmentId, $userId, $userType, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->deleteDepartment1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 削除する部署の企業ID
my $departmentId = departmentId_example; # String | 削除する部署のID
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->deleteDepartment1(companyId => $companyId, departmentId => $departmentId, userId => $userId, userType => $userType, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->deleteDepartment1: $@\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.APIsApi()
companyId = companyId_example # String | 削除する部署の企業ID
departmentId = departmentId_example # String | 削除する部署のID
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザーType (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 【未メンテ】部署削除
    api_response = api_instance.delete_department1(companyId, departmentId, userId=userId, userType=userType, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->deleteDepartment1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
削除する部署の企業ID
Required
departmentId*
String
削除する部署のID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


deleteImage1

【未メンテ】画像削除

画像削除できるAPIです。entityTypeが二種類(COMPANY , USER)です。例えば会社ロゴを削除のためentityType>>COMPANYを使用します。


/api/v1/delete/file/{fileName}/entityType/{entityType}

Usage and SDK Samples

curl -X DELETE\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/delete/file/{fileName}/entityType/{entityType}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String fileName = fileName_example; // String | 
        String entityType = entityType_example; // String | 
        try {
            StatusResponseDTO result = apiInstance.deleteImage1(fileName, entityType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteImage1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String fileName = fileName_example; // String | 
        String entityType = entityType_example; // String | 
        try {
            StatusResponseDTO result = apiInstance.deleteImage1(fileName, entityType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteImage1");
            e.printStackTrace();
        }
    }
}
String *fileName = fileName_example; // 
String *entityType = entityType_example; // 

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

// 【未メンテ】画像削除
[apiInstance deleteImage1With:fileName
    entityType:entityType
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var fileName = fileName_example; // {{String}} 
var entityType = entityType_example; // {{String}} 

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

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

            var apiInstance = new APIsApi();
            var fileName = fileName_example;  // String | 
            var entityType = entityType_example;  // String | 

            try
            {
                // 【未メンテ】画像削除
                StatusResponseDTO result = apiInstance.deleteImage1(fileName, entityType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.deleteImage1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$fileName = fileName_example; // String | 
$entityType = entityType_example; // String | 

try {
    $result = $api_instance->deleteImage1($fileName, $entityType);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->deleteImage1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $fileName = fileName_example; # String | 
my $entityType = entityType_example; # String | 

eval { 
    my $result = $api_instance->deleteImage1(fileName => $fileName, entityType => $entityType);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->deleteImage1: $@\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.APIsApi()
fileName = fileName_example # String | 
entityType = entityType_example # String | 

try: 
    # 【未メンテ】画像削除
    api_response = api_instance.delete_image1(fileName, entityType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->deleteImage1: %s\n" % e)

Parameters

Path parameters
Name Description
fileName*
String
Required
entityType*
String
Required

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


deletePosition1

【未メンテ】役職削除

役職を削除できるAPIです


/api/v1/delete/position/{positionId}/company/{companyId}

Usage and SDK Samples

curl -X DELETE\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/delete/position/{positionId}/company/{companyId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 削除する役職の企業ID
        String positionId = positionId_example; // String | 削除する役職のID
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.deletePosition1(companyId, positionId, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deletePosition1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 削除する役職の企業ID
        String positionId = positionId_example; // String | 削除する役職のID
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.deletePosition1(companyId, positionId, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deletePosition1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 削除する役職の企業ID
String *positionId = positionId_example; // 削除する役職のID
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】役職削除
[apiInstance deletePosition1With:companyId
    positionId:positionId
    userId:userId
    companyId:companyId
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 削除する役職の企業ID
var positionId = positionId_example; // {{String}} 削除する役職のID
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーID
  'companyId': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.deletePosition1(companyId, positionId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 削除する役職の企業ID
            var positionId = positionId_example;  // String | 削除する役職のID
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】役職削除
                StatusResponseDTO result = apiInstance.deletePosition1(companyId, positionId, userId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.deletePosition1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 削除する役職の企業ID
$positionId = positionId_example; // String | 削除する役職のID
$userId = userId_example; // String | ログインユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID

try {
    $result = $api_instance->deletePosition1($companyId, $positionId, $userId, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->deletePosition1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 削除する役職の企業ID
my $positionId = positionId_example; # String | 削除する役職のID
my $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->deletePosition1(companyId => $companyId, positionId => $positionId, userId => $userId, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->deletePosition1: $@\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.APIsApi()
companyId = companyId_example # String | 削除する役職の企業ID
positionId = positionId_example # String | 削除する役職のID
userId = userId_example # String | ログインユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 【未メンテ】役職削除
    api_response = api_instance.delete_position1(companyId, positionId, userId=userId, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->deletePosition1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
削除する役職の企業ID
Required
positionId*
String
削除する役職のID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


deletePrivatePartner1

【未メンテ】Prosign利用なし取引先削除

Prosign利用なしの取引先情報を論理削除する


/api/v1/private-partner/{id}

Usage and SDK Samples

curl -X DELETE\
"http://HOSTNAME/api/v1/private-partner/{id}?token=&updatedAt="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String id = id_example; // String | Prosign利用なし取引先の企業ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String token = token_example; // String | 
        String updatedAt = updatedAt_example; // String | 
        try {
            apiInstance.deletePrivatePartner1(id, userId, userType, companyId, token, updatedAt);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deletePrivatePartner1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String id = id_example; // String | Prosign利用なし取引先の企業ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String token = token_example; // String | 
        String updatedAt = updatedAt_example; // String | 
        try {
            apiInstance.deletePrivatePartner1(id, userId, userType, companyId, token, updatedAt);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deletePrivatePartner1");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // Prosign利用なし取引先の企業ID
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *token = token_example; //  (optional)
String *updatedAt = updatedAt_example; //  (optional)

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

// 【未メンテ】Prosign利用なし取引先削除
[apiInstance deletePrivatePartner1With:id
    userId:userId
    userType:userType
    companyId:companyId
    token:token
    updatedAt:updatedAt
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var id = id_example; // {{String}} Prosign利用なし取引先の企業ID
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーID
  'userType': userType_example, // {{String}} ログインユーザーType
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'token': token_example, // {{String}} 
  'updatedAt': updatedAt_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.deletePrivatePartner1(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var id = id_example;  // String | Prosign利用なし取引先の企業ID
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var token = token_example;  // String |  (optional) 
            var updatedAt = updatedAt_example;  // String |  (optional) 

            try
            {
                // 【未メンテ】Prosign利用なし取引先削除
                apiInstance.deletePrivatePartner1(id, userId, userType, companyId, token, updatedAt);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.deletePrivatePartner1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$id = id_example; // String | Prosign利用なし取引先の企業ID
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId = companyId_example; // String | ログインユーザーの会社ID
$token = token_example; // String | 
$updatedAt = updatedAt_example; // String | 

try {
    $api_instance->deletePrivatePartner1($id, $userId, $userType, $companyId, $token, $updatedAt);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->deletePrivatePartner1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $id = id_example; # String | Prosign利用なし取引先の企業ID
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $token = token_example; # String | 
my $updatedAt = updatedAt_example; # String | 

eval { 
    $api_instance->deletePrivatePartner1(id => $id, userId => $userId, userType => $userType, companyId => $companyId, token => $token, updatedAt => $updatedAt);
};
if ($@) {
    warn "Exception when calling APIsApi->deletePrivatePartner1: $@\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.APIsApi()
id = id_example # String | Prosign利用なし取引先の企業ID
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザーType (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
token = token_example # String |  (optional)
updatedAt = updatedAt_example # String |  (optional)

try: 
    # 【未メンテ】Prosign利用なし取引先削除
    api_instance.delete_private_partner1(id, userId=userId, userType=userType, companyId=companyId, token=token, updatedAt=updatedAt)
except ApiException as e:
    print("Exception when calling APIsApi->deletePrivatePartner1: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
Prosign利用なし取引先の企業ID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID
Query parameters
Name Description
token
String
updatedAt
String

Responses

Status: default - successful operation


deleteUser1

ユーザー無効化

ユーザーIDでユーザーを無効化できるAPIです


/api/v1/delete/user/{userId}/company/{companyId}

Usage and SDK Samples

curl -X DELETE\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/delete/user/{userId}/company/{companyId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 削除するユーザーの企業ID
        String userId = userId_example; // String | 削除するユーザーのユーザーID
        String userId = userId_example; // String | ログインユーザーのユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーのユーザーType
        try {
            StatusResponseDTO result = apiInstance.deleteUser1(companyId, userId, userId, companyId, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteUser1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 削除するユーザーの企業ID
        String userId = userId_example; // String | 削除するユーザーのユーザーID
        String userId = userId_example; // String | ログインユーザーのユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーのユーザーType
        try {
            StatusResponseDTO result = apiInstance.deleteUser1(companyId, userId, userId, companyId, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteUser1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 削除するユーザーの企業ID
String *userId = userId_example; // 削除するユーザーのユーザーID
String *userId = userId_example; // ログインユーザーのユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *userType = userType_example; // ログインユーザーのユーザーType (optional)

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

// ユーザー無効化
[apiInstance deleteUser1With:companyId
    userId:userId
    userId:userId
    companyId:companyId
    userType:userType
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 削除するユーザーの企業ID
var userId = userId_example; // {{String}} 削除するユーザーのユーザーID
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーのユーザーID
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'userType': userType_example // {{String}} ログインユーザーのユーザーType
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.deleteUser1(companyId, userId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 削除するユーザーの企業ID
            var userId = userId_example;  // String | 削除するユーザーのユーザーID
            var userId = userId_example;  // String | ログインユーザーのユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var userType = userType_example;  // String | ログインユーザーのユーザーType (optional) 

            try
            {
                // ユーザー無効化
                StatusResponseDTO result = apiInstance.deleteUser1(companyId, userId, userId, companyId, userType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.deleteUser1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 削除するユーザーの企業ID
$userId = userId_example; // String | 削除するユーザーのユーザーID
$userId = userId_example; // String | ログインユーザーのユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID
$userType = userType_example; // String | ログインユーザーのユーザーType

try {
    $result = $api_instance->deleteUser1($companyId, $userId, $userId, $companyId, $userType);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->deleteUser1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 削除するユーザーの企業ID
my $userId = userId_example; # String | 削除するユーザーのユーザーID
my $userId = userId_example; # String | ログインユーザーのユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $userType = userType_example; # String | ログインユーザーのユーザーType

eval { 
    my $result = $api_instance->deleteUser1(companyId => $companyId, userId => $userId, userId => $userId, companyId => $companyId, userType => $userType);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->deleteUser1: $@\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.APIsApi()
companyId = companyId_example # String | 削除するユーザーの企業ID
userId = userId_example # String | 削除するユーザーのユーザーID
userId = userId_example # String | ログインユーザーのユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
userType = userType_example # String | ログインユーザーのユーザーType (optional)

try: 
    # ユーザー無効化
    api_response = api_instance.delete_user1(companyId, userId, userId=userId, companyId=companyId, userType=userType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->deleteUser1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
削除するユーザーの企業ID
Required
userId*
String
削除するユーザーのユーザーID
Required
Header parameters
Name Description
userId
String
ログインユーザーのユーザーID
companyId
String
ログインユーザーの会社ID
userType
String
ログインユーザーのユーザーType

Responses

Status: 200 - 成功


deleteUser2

無効化済みユーザー再有効化API

ユーザーIDで無効化されたユーザーを再有効化するAPIです


/api/v1/restore/user/{userId}/company/{companyId}

Usage and SDK Samples

curl -X PUT\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/restore/user/{userId}/company/{companyId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 再有効化するユーザーの企業ID
        String userId = userId_example; // String | 再有効化するユーザーのユーザーID
        String userId = userId_example; // String | ログインユーザーのユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーのユーザーType
        try {
            StatusResponseDTO result = apiInstance.deleteUser2(companyId, userId, userId, companyId, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteUser2");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 再有効化するユーザーの企業ID
        String userId = userId_example; // String | 再有効化するユーザーのユーザーID
        String userId = userId_example; // String | ログインユーザーのユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーのユーザーType
        try {
            StatusResponseDTO result = apiInstance.deleteUser2(companyId, userId, userId, companyId, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteUser2");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 再有効化するユーザーの企業ID
String *userId = userId_example; // 再有効化するユーザーのユーザーID
String *userId = userId_example; // ログインユーザーのユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *userType = userType_example; // ログインユーザーのユーザーType (optional)

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

// 無効化済みユーザー再有効化API
[apiInstance deleteUser2With:companyId
    userId:userId
    userId:userId
    companyId:companyId
    userType:userType
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 再有効化するユーザーの企業ID
var userId = userId_example; // {{String}} 再有効化するユーザーのユーザーID
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーのユーザーID
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'userType': userType_example // {{String}} ログインユーザーのユーザーType
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.deleteUser2(companyId, userId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 再有効化するユーザーの企業ID
            var userId = userId_example;  // String | 再有効化するユーザーのユーザーID
            var userId = userId_example;  // String | ログインユーザーのユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var userType = userType_example;  // String | ログインユーザーのユーザーType (optional) 

            try
            {
                // 無効化済みユーザー再有効化API
                StatusResponseDTO result = apiInstance.deleteUser2(companyId, userId, userId, companyId, userType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.deleteUser2: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 再有効化するユーザーの企業ID
$userId = userId_example; // String | 再有効化するユーザーのユーザーID
$userId = userId_example; // String | ログインユーザーのユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID
$userType = userType_example; // String | ログインユーザーのユーザーType

try {
    $result = $api_instance->deleteUser2($companyId, $userId, $userId, $companyId, $userType);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->deleteUser2: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 再有効化するユーザーの企業ID
my $userId = userId_example; # String | 再有効化するユーザーのユーザーID
my $userId = userId_example; # String | ログインユーザーのユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $userType = userType_example; # String | ログインユーザーのユーザーType

eval { 
    my $result = $api_instance->deleteUser2(companyId => $companyId, userId => $userId, userId => $userId, companyId => $companyId, userType => $userType);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->deleteUser2: $@\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.APIsApi()
companyId = companyId_example # String | 再有効化するユーザーの企業ID
userId = userId_example # String | 再有効化するユーザーのユーザーID
userId = userId_example # String | ログインユーザーのユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
userType = userType_example # String | ログインユーザーのユーザーType (optional)

try: 
    # 無効化済みユーザー再有効化API
    api_response = api_instance.delete_user2(companyId, userId, userId=userId, companyId=companyId, userType=userType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->deleteUser2: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
再有効化するユーザーの企業ID
Required
userId*
String
再有効化するユーザーのユーザーID
Required
Header parameters
Name Description
userId
String
ログインユーザーのユーザーID
companyId
String
ログインユーザーの会社ID
userType
String
ログインユーザーのユーザーType

Responses

Status: 200 - 成功


deleteUserAssignedRoles1

【未メンテ】ロール削除

ロール削除の時ユーザーロールのマッピング削除できるAPIです


/api/v1/internal/delete/user/role/{role_name}

Usage and SDK Samples

curl -X DELETE\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/internal/delete/user/role/{role_name}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String roleName = roleName_example; // String | 
        try {
            StatusResponseDTO result = apiInstance.deleteUserAssignedRoles1(roleName);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteUserAssignedRoles1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String roleName = roleName_example; // String | 
        try {
            StatusResponseDTO result = apiInstance.deleteUserAssignedRoles1(roleName);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#deleteUserAssignedRoles1");
            e.printStackTrace();
        }
    }
}
String *roleName = roleName_example; // 

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

// 【未メンテ】ロール削除
[apiInstance deleteUserAssignedRoles1With:roleName
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var roleName = roleName_example; // {{String}} 

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

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

            var apiInstance = new APIsApi();
            var roleName = roleName_example;  // String | 

            try
            {
                // 【未メンテ】ロール削除
                StatusResponseDTO result = apiInstance.deleteUserAssignedRoles1(roleName);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.deleteUserAssignedRoles1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$roleName = roleName_example; // String | 

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $roleName = roleName_example; # String | 

eval { 
    my $result = $api_instance->deleteUserAssignedRoles1(roleName => $roleName);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->deleteUserAssignedRoles1: $@\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.APIsApi()
roleName = roleName_example # String | 

try: 
    # 【未メンテ】ロール削除
    api_response = api_instance.delete_user_assigned_roles1(roleName)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->deleteUserAssignedRoles1: %s\n" % e)

Parameters

Path parameters
Name Description
role_name*
String
Required

Responses

Status: 200 - 成功

Status: 400 - BAD_REQUEST

Status: 404 - 見つかりません


dissociateUserwithDepartmentAndPosition1

【未メンテ】ユーザーを役職および部署に解離付ける

ユーザーを役職および部署に解離できます


/api/v1/user/company/{companyId}/dissociate

Usage and SDK Samples

curl -X DELETE\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/user/company/{companyId}/dissociate"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 
        UserDepartmentPositionBulkDto body = ; // UserDepartmentPositionBulkDto | 
        String userType = userType_example; // String | ログインユーザーType
        String userId = userId_example; // String | ログインユーザーID
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.dissociateUserwithDepartmentAndPosition1(companyId, body, userType, userId, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#dissociateUserwithDepartmentAndPosition1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 
        UserDepartmentPositionBulkDto body = ; // UserDepartmentPositionBulkDto | 
        String userType = userType_example; // String | ログインユーザーType
        String userId = userId_example; // String | ログインユーザーID
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.dissociateUserwithDepartmentAndPosition1(companyId, body, userType, userId, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#dissociateUserwithDepartmentAndPosition1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 
UserDepartmentPositionBulkDto *body = ; //  (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId2 = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】ユーザーを役職および部署に解離付ける
[apiInstance dissociateUserwithDepartmentAndPosition1With:companyId
    body:body
    userType:userType
    userId:userId
    companyId2:companyId2
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 
var opts = { 
  'body':  // {{UserDepartmentPositionBulkDto}} 
  'userType': userType_example // {{String}} ログインユーザーType
  'userId': userId_example // {{String}} ログインユーザーID
  'companyId2': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.dissociateUserwithDepartmentAndPosition1(companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 
            var body = new UserDepartmentPositionBulkDto(); // UserDepartmentPositionBulkDto |  (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId2 = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】ユーザーを役職および部署に解離付ける
                StatusResponseDTO result = apiInstance.dissociateUserwithDepartmentAndPosition1(companyId, body, userType, userId, companyId2);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.dissociateUserwithDepartmentAndPosition1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 
$body = ; // UserDepartmentPositionBulkDto | 
$userType = userType_example; // String | ログインユーザーType
$userId = userId_example; // String | ログインユーザーID
$companyId2 = companyId_example; // String | ログインユーザーの会社ID

try {
    $result = $api_instance->dissociateUserwithDepartmentAndPosition1($companyId, $body, $userType, $userId, $companyId2);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->dissociateUserwithDepartmentAndPosition1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 
my $body = WWW::SwaggerClient::Object::UserDepartmentPositionBulkDto->new(); # UserDepartmentPositionBulkDto | 
my $userType = userType_example; # String | ログインユーザーType
my $userId = userId_example; # String | ログインユーザーID
my $companyId2 = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->dissociateUserwithDepartmentAndPosition1(companyId => $companyId, body => $body, userType => $userType, userId => $userId, companyId2 => $companyId2);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->dissociateUserwithDepartmentAndPosition1: $@\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.APIsApi()
companyId = companyId_example # String | 
body =  # UserDepartmentPositionBulkDto |  (optional)
userType = userType_example # String | ログインユーザーType (optional)
userId = userId_example # String | ログインユーザーID (optional)
companyId2 = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 【未メンテ】ユーザーを役職および部署に解離付ける
    api_response = api_instance.dissociate_userwith_department_and_position1(companyId, body=body, userType=userType, userId=userId, companyId2=companyId2)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->dissociateUserwithDepartmentAndPosition1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
Required
Header parameters
Name Description
userType
String
ログインユーザーType
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
Body parameters
Name Description
body

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


exportPrivateBusinessPartners1

IPC利用なし取引先CSVエクスポート

IPC利用なし取引先一括登録更新用のCSVをエクスポートできるAPIです


/api/v1/private-business-partners/export

Usage and SDK Samples

curl -X GET\
-H "Accept: application/octet-stream"\
"http://HOSTNAME/api/v1/private-business-partners/export"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            byte[] result = apiInstance.exportPrivateBusinessPartners1(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#exportPrivateBusinessPartners1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            byte[] result = apiInstance.exportPrivateBusinessPartners1(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#exportPrivateBusinessPartners1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)

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

// IPC利用なし取引先CSVエクスポート
[apiInstance exportPrivateBusinessPartners1With:companyId
              completionHandler: ^(byte[] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var opts = { 
  'companyId': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.exportPrivateBusinessPartners1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // IPC利用なし取引先CSVエクスポート
                byte[] result = apiInstance.exportPrivateBusinessPartners1(companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.exportPrivateBusinessPartners1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | ログインユーザーの会社ID

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->exportPrivateBusinessPartners1(companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->exportPrivateBusinessPartners1: $@\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.APIsApi()
companyId = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # IPC利用なし取引先CSVエクスポート
    api_response = api_instance.export_private_business_partners1(companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->exportPrivateBusinessPartners1: %s\n" % e)

Parameters

Header parameters
Name Description
companyId
String
ログインユーザーの会社ID

Responses

Status: 200 - 成功


findBankAccount1

【未メンテ】口座詳細取得

口座詳細を取得します


/api/v1/company/{companyId}/bankaccount/{id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/company/{companyId}/bankaccount/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 企業ID
        String id = id_example; // String | 口座ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザータイプ
        String companyId = companyId_example; // String | ログインユーザー所属企業ID
        try {
            Account result = apiInstance.findBankAccount1(companyId, id, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#findBankAccount1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 企業ID
        String id = id_example; // String | 口座ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザータイプ
        String companyId = companyId_example; // String | ログインユーザー所属企業ID
        try {
            Account result = apiInstance.findBankAccount1(companyId, id, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#findBankAccount1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 企業ID
String *id = id_example; // 口座ID
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザータイプ (optional)
String *companyId = companyId_example; // ログインユーザー所属企業ID (optional)

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

// 【未メンテ】口座詳細取得
[apiInstance findBankAccount1With:companyId
    id:id
    userId:userId
    userType:userType
    companyId:companyId
              completionHandler: ^(Account output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 企業ID
var id = id_example; // {{String}} 口座ID
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーID
  'userType': userType_example, // {{String}} ログインユーザータイプ
  'companyId': companyId_example // {{String}} ログインユーザー所属企業ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.findBankAccount1(companyId, id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 企業ID
            var id = id_example;  // String | 口座ID
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザータイプ (optional) 
            var companyId = companyId_example;  // String | ログインユーザー所属企業ID (optional) 

            try
            {
                // 【未メンテ】口座詳細取得
                Account result = apiInstance.findBankAccount1(companyId, id, userId, userType, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.findBankAccount1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 企業ID
$id = id_example; // String | 口座ID
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザータイプ
$companyId = companyId_example; // String | ログインユーザー所属企業ID

try {
    $result = $api_instance->findBankAccount1($companyId, $id, $userId, $userType, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->findBankAccount1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 企業ID
my $id = id_example; # String | 口座ID
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザータイプ
my $companyId = companyId_example; # String | ログインユーザー所属企業ID

eval { 
    my $result = $api_instance->findBankAccount1(companyId => $companyId, id => $id, userId => $userId, userType => $userType, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->findBankAccount1: $@\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.APIsApi()
companyId = companyId_example # String | 企業ID
id = id_example # String | 口座ID
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザータイプ (optional)
companyId = companyId_example # String | ログインユーザー所属企業ID (optional)

try: 
    # 【未メンテ】口座詳細取得
    api_response = api_instance.find_bank_account1(companyId, id, userId=userId, userType=userType, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->findBankAccount1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
企業ID
Required
id*
String
口座ID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザータイプ
companyId
String
ログインユーザー所属企業ID

Responses

Status: 200 - 成功


findBankAccounts1

【未メンテ】口座一覧取得

口座一覧を取得します


/api/v1/company/{companyId}/bankaccounts

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/company/{companyId}/bankaccounts"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザータイプ
        String companyId = companyId_example; // String | ログインユーザー所属企業ID
        String companyId = companyId_example; // String | 企業ID
        try {
            Account result = apiInstance.findBankAccounts1(userId, userType, companyId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#findBankAccounts1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザータイプ
        String companyId = companyId_example; // String | ログインユーザー所属企業ID
        String companyId = companyId_example; // String | 企業ID
        try {
            Account result = apiInstance.findBankAccounts1(userId, userType, companyId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#findBankAccounts1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID
String *userType = userType_example; // ログインユーザータイプ
String *companyId = companyId_example; // ログインユーザー所属企業ID
String *companyId = companyId_example; // 企業ID

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

// 【未メンテ】口座一覧取得
[apiInstance findBankAccounts1With:userId
    userType:userType
    companyId:companyId
    companyId:companyId
              completionHandler: ^(Account output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var userId = userId_example; // {{String}} ログインユーザーID
var userType = userType_example; // {{String}} ログインユーザータイプ
var companyId = companyId_example; // {{String}} ログインユーザー所属企業ID
var companyId = companyId_example; // {{String}} 企業ID

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

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

            var apiInstance = new APIsApi();
            var userId = userId_example;  // String | ログインユーザーID
            var userType = userType_example;  // String | ログインユーザータイプ
            var companyId = companyId_example;  // String | ログインユーザー所属企業ID
            var companyId = companyId_example;  // String | 企業ID

            try
            {
                // 【未メンテ】口座一覧取得
                Account result = apiInstance.findBankAccounts1(userId, userType, companyId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.findBankAccounts1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザータイプ
$companyId = companyId_example; // String | ログインユーザー所属企業ID
$companyId = companyId_example; // String | 企業ID

try {
    $result = $api_instance->findBankAccounts1($userId, $userType, $companyId, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->findBankAccounts1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザータイプ
my $companyId = companyId_example; # String | ログインユーザー所属企業ID
my $companyId = companyId_example; # String | 企業ID

eval { 
    my $result = $api_instance->findBankAccounts1(userId => $userId, userType => $userType, companyId => $companyId, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->findBankAccounts1: $@\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.APIsApi()
userId = userId_example # String | ログインユーザーID
userType = userType_example # String | ログインユーザータイプ
companyId = companyId_example # String | ログインユーザー所属企業ID
companyId = companyId_example # String | 企業ID

try: 
    # 【未メンテ】口座一覧取得
    api_response = api_instance.find_bank_accounts1(userId, userType, companyId, companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->findBankAccounts1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
企業ID
Required
Header parameters
Name Description
userId*
String
ログインユーザーID
Required
userType*
String
ログインユーザータイプ
Required
companyId*
String
ログインユーザー所属企業ID
Required

Responses

Status: 200 - 成功


findPartner1

【未メンテ】Prosign利用あり取引先詳細

Prosign利用ありの取引先情報の詳細を返却する


/api/v1/partner/{id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/partner/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String id = id_example; // String | Prosign利用なし取引先の会社ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            PrivatePartnerResponse result = apiInstance.findPartner1(id, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#findPartner1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String id = id_example; // String | Prosign利用なし取引先の会社ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            PrivatePartnerResponse result = apiInstance.findPartner1(id, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#findPartner1");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // Prosign利用なし取引先の会社ID
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】Prosign利用あり取引先詳細
[apiInstance findPartner1With:id
    userId:userId
    userType:userType
    companyId:companyId
              completionHandler: ^(PrivatePartnerResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var id = id_example; // {{String}} Prosign利用なし取引先の会社ID
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーID
  'userType': userType_example, // {{String}} ログインユーザーType
  'companyId': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.findPartner1(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var id = id_example;  // String | Prosign利用なし取引先の会社ID
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】Prosign利用あり取引先詳細
                PrivatePartnerResponse result = apiInstance.findPartner1(id, userId, userType, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.findPartner1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$id = id_example; // String | Prosign利用なし取引先の会社ID
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId = companyId_example; // String | ログインユーザーの会社ID

try {
    $result = $api_instance->findPartner1($id, $userId, $userType, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->findPartner1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $id = id_example; # String | Prosign利用なし取引先の会社ID
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->findPartner1(id => $id, userId => $userId, userType => $userType, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->findPartner1: $@\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.APIsApi()
id = id_example # String | Prosign利用なし取引先の会社ID
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザーType (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 【未メンテ】Prosign利用あり取引先詳細
    api_response = api_instance.find_partner1(id, userId=userId, userType=userType, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->findPartner1: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
Prosign利用なし取引先の会社ID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID

Responses

Status: 200 - 成功

Status: 500 - 内部サーバエラー


findPertners1

【未メンテ】取引先取得

Prosign利用あり・なし両者の取引先取得API


/api/v1/partners

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/partners?name=&business_type=&type=&status=&withTrusted=&onlyTrusted=&expense=&page=&size="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String name = name_example; // String | 取引先企業名
        String businessType = businessType_example; // String | 取引先区分
        String type = type_example; // String | 取引先タイプ 1:Prosign利用 2:Prosign未利用
        String status = status_example; // String | 取引先の状態 1:有効 2:無効にされている 3:無効にしている
        String withTrusted = withTrusted_example; // String | Prored推奨企業を検索結果に含める場合は 1 を指定します"
        String onlyTrusted = onlyTrusted_example; // String | Prored推奨企業のみを抽出する場合は 1 を指定します
        String expense = expense_example; // String | 
        String page = page_example; // String | 
        String size = size_example; // String | 
        try {
            FindPartnersResponse result = apiInstance.findPertners1(userId, userType, companyId, name, businessType, type, status, withTrusted, onlyTrusted, expense, page, size);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#findPertners1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String name = name_example; // String | 取引先企業名
        String businessType = businessType_example; // String | 取引先区分
        String type = type_example; // String | 取引先タイプ 1:Prosign利用 2:Prosign未利用
        String status = status_example; // String | 取引先の状態 1:有効 2:無効にされている 3:無効にしている
        String withTrusted = withTrusted_example; // String | Prored推奨企業を検索結果に含める場合は 1 を指定します"
        String onlyTrusted = onlyTrusted_example; // String | Prored推奨企業のみを抽出する場合は 1 を指定します
        String expense = expense_example; // String | 
        String page = page_example; // String | 
        String size = size_example; // String | 
        try {
            FindPartnersResponse result = apiInstance.findPertners1(userId, userType, companyId, name, businessType, type, status, withTrusted, onlyTrusted, expense, page, size);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#findPertners1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *name = name_example; // 取引先企業名 (optional)
String *businessType = businessType_example; // 取引先区分 (optional)
String *type = type_example; // 取引先タイプ 1:Prosign利用 2:Prosign未利用 (optional)
String *status = status_example; // 取引先の状態 1:有効 2:無効にされている 3:無効にしている (optional)
String *withTrusted = withTrusted_example; // Prored推奨企業を検索結果に含める場合は 1 を指定します" (optional)
String *onlyTrusted = onlyTrusted_example; // Prored推奨企業のみを抽出する場合は 1 を指定します (optional)
String *expense = expense_example; //  (optional) (default to 0)
String *page = page_example; //  (optional) (default to 1)
String *size = size_example; //  (optional) (default to 20)

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

// 【未メンテ】取引先取得
[apiInstance findPertners1With:userId
    userType:userType
    companyId:companyId
    name:name
    businessType:businessType
    type:type
    status:status
    withTrusted:withTrusted
    onlyTrusted:onlyTrusted
    expense:expense
    page:page
    size:size
              completionHandler: ^(FindPartnersResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーID
  'userType': userType_example, // {{String}} ログインユーザーType
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'name': name_example, // {{String}} 取引先企業名
  'businessType': businessType_example, // {{String}} 取引先区分
  'type': type_example, // {{String}} 取引先タイプ 1:Prosign利用 2:Prosign未利用
  'status': status_example, // {{String}} 取引先の状態 1:有効 2:無効にされている 3:無効にしている
  'withTrusted': withTrusted_example, // {{String}} Prored推奨企業を検索結果に含める場合は 1 を指定します"
  'onlyTrusted': onlyTrusted_example, // {{String}} Prored推奨企業のみを抽出する場合は 1 を指定します
  'expense': expense_example, // {{String}} 
  'page': page_example, // {{String}} 
  'size': size_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.findPertners1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var name = name_example;  // String | 取引先企業名 (optional) 
            var businessType = businessType_example;  // String | 取引先区分 (optional) 
            var type = type_example;  // String | 取引先タイプ 1:Prosign利用 2:Prosign未利用 (optional) 
            var status = status_example;  // String | 取引先の状態 1:有効 2:無効にされている 3:無効にしている (optional) 
            var withTrusted = withTrusted_example;  // String | Prored推奨企業を検索結果に含める場合は 1 を指定します" (optional) 
            var onlyTrusted = onlyTrusted_example;  // String | Prored推奨企業のみを抽出する場合は 1 を指定します (optional) 
            var expense = expense_example;  // String |  (optional)  (default to 0)
            var page = page_example;  // String |  (optional)  (default to 1)
            var size = size_example;  // String |  (optional)  (default to 20)

            try
            {
                // 【未メンテ】取引先取得
                FindPartnersResponse result = apiInstance.findPertners1(userId, userType, companyId, name, businessType, type, status, withTrusted, onlyTrusted, expense, page, size);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.findPertners1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId = companyId_example; // String | ログインユーザーの会社ID
$name = name_example; // String | 取引先企業名
$businessType = businessType_example; // String | 取引先区分
$type = type_example; // String | 取引先タイプ 1:Prosign利用 2:Prosign未利用
$status = status_example; // String | 取引先の状態 1:有効 2:無効にされている 3:無効にしている
$withTrusted = withTrusted_example; // String | Prored推奨企業を検索結果に含める場合は 1 を指定します"
$onlyTrusted = onlyTrusted_example; // String | Prored推奨企業のみを抽出する場合は 1 を指定します
$expense = expense_example; // String | 
$page = page_example; // String | 
$size = size_example; // String | 

try {
    $result = $api_instance->findPertners1($userId, $userType, $companyId, $name, $businessType, $type, $status, $withTrusted, $onlyTrusted, $expense, $page, $size);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->findPertners1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $name = name_example; # String | 取引先企業名
my $businessType = businessType_example; # String | 取引先区分
my $type = type_example; # String | 取引先タイプ 1:Prosign利用 2:Prosign未利用
my $status = status_example; # String | 取引先の状態 1:有効 2:無効にされている 3:無効にしている
my $withTrusted = withTrusted_example; # String | Prored推奨企業を検索結果に含める場合は 1 を指定します"
my $onlyTrusted = onlyTrusted_example; # String | Prored推奨企業のみを抽出する場合は 1 を指定します
my $expense = expense_example; # String | 
my $page = page_example; # String | 
my $size = size_example; # String | 

eval { 
    my $result = $api_instance->findPertners1(userId => $userId, userType => $userType, companyId => $companyId, name => $name, businessType => $businessType, type => $type, status => $status, withTrusted => $withTrusted, onlyTrusted => $onlyTrusted, expense => $expense, page => $page, size => $size);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->findPertners1: $@\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.APIsApi()
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザーType (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
name = name_example # String | 取引先企業名 (optional)
businessType = businessType_example # String | 取引先区分 (optional)
type = type_example # String | 取引先タイプ 1:Prosign利用 2:Prosign未利用 (optional)
status = status_example # String | 取引先の状態 1:有効 2:無効にされている 3:無効にしている (optional)
withTrusted = withTrusted_example # String | Prored推奨企業を検索結果に含める場合は 1 を指定します" (optional)
onlyTrusted = onlyTrusted_example # String | Prored推奨企業のみを抽出する場合は 1 を指定します (optional)
expense = expense_example # String |  (optional) (default to 0)
page = page_example # String |  (optional) (default to 1)
size = size_example # String |  (optional) (default to 20)

try: 
    # 【未メンテ】取引先取得
    api_response = api_instance.find_pertners1(userId=userId, userType=userType, companyId=companyId, name=name, businessType=businessType, type=type, status=status, withTrusted=withTrusted, onlyTrusted=onlyTrusted, expense=expense, page=page, size=size)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->findPertners1: %s\n" % e)

Parameters

Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID
Query parameters
Name Description
name
String
取引先企業名
business_type
String
取引先区分
type
String
取引先タイプ 1:Prosign利用 2:Prosign未利用
status
String
取引先の状態 1:有効 2:無効にされている 3:無効にしている
withTrusted
String
Prored推奨企業を検索結果に含める場合は 1 を指定します"
onlyTrusted
String
Prored推奨企業のみを抽出する場合は 1 を指定します
expense
String
page
String
size
String

Responses

Status: 200 - 成功

Status: 500 - 内部サーバエラー


findPrivatePartner1

【未メンテ】Prosign利用なし取引先詳細

Prosign利用なしの取引先情報の詳細を返却する


/api/v1/private-partner/{id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/private-partner/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String id = id_example; // String | Prosign利用なし取引先の会社ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            PrivatePartnerResponse result = apiInstance.findPrivatePartner1(id, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#findPrivatePartner1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String id = id_example; // String | Prosign利用なし取引先の会社ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            PrivatePartnerResponse result = apiInstance.findPrivatePartner1(id, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#findPrivatePartner1");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // Prosign利用なし取引先の会社ID
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】Prosign利用なし取引先詳細
[apiInstance findPrivatePartner1With:id
    userId:userId
    userType:userType
    companyId:companyId
              completionHandler: ^(PrivatePartnerResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var id = id_example; // {{String}} Prosign利用なし取引先の会社ID
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーID
  'userType': userType_example, // {{String}} ログインユーザーType
  'companyId': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.findPrivatePartner1(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var id = id_example;  // String | Prosign利用なし取引先の会社ID
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】Prosign利用なし取引先詳細
                PrivatePartnerResponse result = apiInstance.findPrivatePartner1(id, userId, userType, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.findPrivatePartner1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$id = id_example; // String | Prosign利用なし取引先の会社ID
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId = companyId_example; // String | ログインユーザーの会社ID

try {
    $result = $api_instance->findPrivatePartner1($id, $userId, $userType, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->findPrivatePartner1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $id = id_example; # String | Prosign利用なし取引先の会社ID
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->findPrivatePartner1(id => $id, userId => $userId, userType => $userType, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->findPrivatePartner1: $@\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.APIsApi()
id = id_example # String | Prosign利用なし取引先の会社ID
userId = userId_example # String | ログインユーザーID (optional)
userType = userType_example # String | ログインユーザーType (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 【未メンテ】Prosign利用なし取引先詳細
    api_response = api_instance.find_private_partner1(id, userId=userId, userType=userType, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->findPrivatePartner1: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
Prosign利用なし取引先の会社ID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID

Responses

Status: 200 - 成功

Status: 500 - 内部サーバエラー


getAllDepartmentByCompany1

【未メンテ】部署取得

部署取得APIです


/api/v1/view/department/company/{companyId}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/department/company/{companyId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.APIsApi;

import java.io.File;
import java.util.*;

public class APIsApiExample {

    public static void main(String[] args) {
        
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 取得する部署の企業ID
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            DepartmentDtoListSwaggerResponseDto result = apiInstance.getAllDepartmentByCompany1(companyId, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getAllDepartmentByCompany1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyId = companyId_example; // String | 取得する部署の企業ID
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            DepartmentDtoListSwaggerResponseDto result = apiInstance.getAllDepartmentByCompany1(companyId, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getAllDepartmentByCompany1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 取得する部署の企業ID
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】部署取得
[apiInstance getAllDepartmentByCompany1With:companyId
    userId:userId
    companyId:companyId
              completionHandler: ^(DepartmentDtoListSwaggerResponseDto output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyId = companyId_example; // {{String}} 取得する部署の企業ID
var opts = { 
  'userId': userId_example, // {{String}} ログインユーザーID
  'companyId': companyId_example // {{String}} ログインユーザーの会社ID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getAllDepartmentByCompany1(companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 取得する部署の企業ID
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】部署取得
                DepartmentDtoListSwaggerResponseDto result = apiInstance.getAllDepartmentByCompany1(companyId, userId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getAllDepartmentByCompany1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 取得する部署の企業ID
$userId = userId_example; // String | ログインユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID

try {
    $result = $api_instance->getAllDepartmentByCompany1($companyId, $userId, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getAllDepartmentByCompany1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyId = companyId_example; # String | 取得する部署の企業ID
my $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID

eval { 
    my $result = $api_instance->getAllDepartmentByCompany1(companyId => $companyId, userId => $userId, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getAllDepartmentByCompany1: $@\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.APIsApi()
companyId = companyId_example # String | 取得する部署の企業ID
userId = userId_example # String | ログインユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)

try: 
    # 【未メンテ】部署取得
    api_response = api_instance.get_all_department_by_company1(companyId, userId=userId, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getAllDepartmentByCompany1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
取得する部署の企業ID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID

Responses

Status: 200 - 成功

Status: 404 - 見つかりません