認証認可・マスタ管理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 - 見つかりません


getAllPositionByCompany1

【未メンテ】役職取得

役職作成APIです


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

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/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
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            PositionDtoListSwaggerResponseDto result = apiInstance.getAllPositionByCompany1(companyId, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getAllPositionByCompany1");
            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 {
            PositionDtoListSwaggerResponseDto result = apiInstance.getAllPositionByCompany1(companyId, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getAllPositionByCompany1");
            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 getAllPositionByCompany1With:companyId
    userId:userId
    companyId:companyId
              completionHandler: ^(PositionDtoListSwaggerResponseDto 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.getAllPositionByCompany1(companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getAllPositionByCompany1Example
    {
        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
            {
                // 【未メンテ】役職取得
                PositionDtoListSwaggerResponseDto result = apiInstance.getAllPositionByCompany1(companyId, userId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getAllPositionByCompany1: " + 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->getAllPositionByCompany1($companyId, $userId, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getAllPositionByCompany1: ', $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->getAllPositionByCompany1(companyId => $companyId, userId => $userId, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getAllPositionByCompany1: $@\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_position_by_company1(companyId, userId=userId, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getAllPositionByCompany1: %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 - 見つかりません


getAllowedDomains1

【未メンテ】企業許可ドメイン一覧取得


/api/v1/company/{id}/allowed-domains

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/company/{id}/allowed-domains"
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 id = id_example; // String | 企業ID
        try {
            GetAllowedDomainsResponse result = apiInstance.getAllowedDomains1(userid, usertype, companyid, id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getAllowedDomains1");
            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 id = id_example; // String | 企業ID
        try {
            GetAllowedDomainsResponse result = apiInstance.getAllowedDomains1(userid, usertype, companyid, id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getAllowedDomains1");
            e.printStackTrace();
        }
    }
}
String *userid = userid_example; // ログインユーザーID
String *usertype = usertype_example; // ログインユーザータイプ
String *companyid = companyid_example; // ログインユーザー所属企業ID
String *id = id_example; // 企業ID

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

// 【未メンテ】企業許可ドメイン一覧取得
[apiInstance getAllowedDomains1With:userid
    usertype:usertype
    companyid:companyid
    id:id
              completionHandler: ^(GetAllowedDomainsResponse 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 id = id_example; // {{String}} 企業ID

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

namespace Example
{
    public class getAllowedDomains1Example
    {
        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 id = id_example;  // String | 企業ID

            try
            {
                // 【未メンテ】企業許可ドメイン一覧取得
                GetAllowedDomainsResponse result = apiInstance.getAllowedDomains1(userid, usertype, companyid, id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getAllowedDomains1: " + 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
$id = id_example; // String | 企業ID

try {
    $result = $api_instance->getAllowedDomains1($userid, $usertype, $companyid, $id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getAllowedDomains1: ', $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 $id = id_example; # String | 企業ID

eval { 
    my $result = $api_instance->getAllowedDomains1(userid => $userid, usertype => $usertype, companyid => $companyid, id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getAllowedDomains1: $@\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
id = id_example # String | 企業ID

try: 
    # 【未メンテ】企業許可ドメイン一覧取得
    api_response = api_instance.get_allowed_domains1(userid, usertype, companyid, id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getAllowedDomains1: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
企業ID
Required
Header parameters
Name Description
userid*
String
ログインユーザーID
Required
usertype*
String
ログインユーザータイプ
Required
companyid*
String
ログインユーザー所属企業ID
Required

Responses

Status: 200 -


getBankBranches1

【未メンテ】金融機関支店取得


/api/v1/banks/{code}/branches

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/banks/{code}/branches"
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 code = code_example; // String | 金融機関コード
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            GetBanksResponse result = apiInstance.getBankBranches1(code, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getBankBranches1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

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

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

// 【未メンテ】金融機関支店取得
[apiInstance getBankBranches1With:code
    userId:userId
    userType:userType
    companyId:companyId
              completionHandler: ^(GetBanksResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var code = code_example; // {{String}} 金融機関コード
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.getBankBranches1(code, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var code = code_example;  // String | 金融機関コード
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】金融機関支店取得
                GetBanksResponse result = apiInstance.getBankBranches1(code, userId, userType, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getBankBranches1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$code = code_example; // String | 金融機関コード
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId = companyId_example; // String | ログインユーザーの会社ID

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $code = code_example; # String | 金融機関コード
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | ログインユーザーの会社ID

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

try: 
    # 【未メンテ】金融機関支店取得
    api_response = api_instance.get_bank_branches1(code, userId=userId, userType=userType, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getBankBranches1: %s\n" % e)

Parameters

Path parameters
Name Description
code*
String
金融機関コード
Required
Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID

Responses

Status: 200 - 成功

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


getBanks1

【未メンテ】金融機関取得


/api/v1/banks

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/banks?kana="
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 kana = kana_example; // String | 
        try {
            GetBanksResponse result = apiInstance.getBanks1(userId, userType, companyId, kana);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getBanks1");
            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 kana = kana_example; // String | 
        try {
            GetBanksResponse result = apiInstance.getBanks1(userId, userType, companyId, kana);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getBanks1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *kana = kana_example; //  (optional)

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

// 【未メンテ】金融機関取得
[apiInstance getBanks1With:userId
    userType:userType
    companyId:companyId
    kana:kana
              completionHandler: ^(GetBanksResponse 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
  'kana': kana_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getBanks1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getBanks1Example
    {
        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 kana = kana_example;  // String |  (optional) 

            try
            {
                // 【未メンテ】金融機関取得
                GetBanksResponse result = apiInstance.getBanks1(userId, userType, companyId, kana);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getBanks1: " + 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
$kana = kana_example; // String | 

try {
    $result = $api_instance->getBanks1($userId, $userType, $companyId, $kana);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getBanks1: ', $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 $kana = kana_example; # String | 

eval { 
    my $result = $api_instance->getBanks1(userId => $userId, userType => $userType, companyId => $companyId, kana => $kana);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getBanks1: $@\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)
kana = kana_example # String |  (optional)

try: 
    # 【未メンテ】金融機関取得
    api_response = api_instance.get_banks1(userId=userId, userType=userType, companyId=companyId, kana=kana)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getBanks1: %s\n" % e)

Parameters

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

Responses

Status: 200 - 成功

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


getBanks1_1

監査ログ


/api/v1/audit-log

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/audit-log?selected_company_id=&selected_user_id=&service_id=&action_code=&date_start_range=&date_end_range=&page_size=&page_number="
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 selectedCompanyId = selectedCompanyId_example; // String | ログインユーザーの会社ID
        String selectedUserId = selectedUserId_example; // String | 
        String serviceId = serviceId_example; // String | 
        String actionCode = actionCode_example; // String | 
        String dateStartRange = dateStartRange_example; // String | 
        String dateEndRange = dateEndRange_example; // String | 
        String pageSize = pageSize_example; // String | 
        String pageNumber = pageNumber_example; // String | 
        try {
            AuditLogResponse result = apiInstance.getBanks1_0(userId, userType, selectedCompanyId, selectedUserId, serviceId, actionCode, dateStartRange, dateEndRange, pageSize, pageNumber);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getBanks1_0");
            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 selectedCompanyId = selectedCompanyId_example; // String | ログインユーザーの会社ID
        String selectedUserId = selectedUserId_example; // String | 
        String serviceId = serviceId_example; // String | 
        String actionCode = actionCode_example; // String | 
        String dateStartRange = dateStartRange_example; // String | 
        String dateEndRange = dateEndRange_example; // String | 
        String pageSize = pageSize_example; // String | 
        String pageNumber = pageNumber_example; // String | 
        try {
            AuditLogResponse result = apiInstance.getBanks1_0(userId, userType, selectedCompanyId, selectedUserId, serviceId, actionCode, dateStartRange, dateEndRange, pageSize, pageNumber);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getBanks1_0");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *selectedCompanyId = selectedCompanyId_example; // ログインユーザーの会社ID (optional)
String *selectedUserId = selectedUserId_example; //  (optional)
String *serviceId = serviceId_example; //  (optional)
String *actionCode = actionCode_example; //  (optional)
String *dateStartRange = dateStartRange_example; //  (optional)
String *dateEndRange = dateEndRange_example; //  (optional)
String *pageSize = pageSize_example; //  (optional)
String *pageNumber = pageNumber_example; //  (optional)

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

// 監査ログ
[apiInstance getBanks1_1With:userId
    userType:userType
    selectedCompanyId:selectedCompanyId
    selectedUserId:selectedUserId
    serviceId:serviceId
    actionCode:actionCode
    dateStartRange:dateStartRange
    dateEndRange:dateEndRange
    pageSize:pageSize
    pageNumber:pageNumber
              completionHandler: ^(AuditLogResponse 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
  'selectedCompanyId': selectedCompanyId_example, // {{String}} ログインユーザーの会社ID
  'selectedUserId': selectedUserId_example, // {{String}} 
  'serviceId': serviceId_example, // {{String}} 
  'actionCode': actionCode_example, // {{String}} 
  'dateStartRange': dateStartRange_example, // {{String}} 
  'dateEndRange': dateEndRange_example, // {{String}} 
  'pageSize': pageSize_example, // {{String}} 
  'pageNumber': pageNumber_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getBanks1_0(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var selectedCompanyId = selectedCompanyId_example;  // String | ログインユーザーの会社ID (optional) 
            var selectedUserId = selectedUserId_example;  // String |  (optional) 
            var serviceId = serviceId_example;  // String |  (optional) 
            var actionCode = actionCode_example;  // String |  (optional) 
            var dateStartRange = dateStartRange_example;  // String |  (optional) 
            var dateEndRange = dateEndRange_example;  // String |  (optional) 
            var pageSize = pageSize_example;  // String |  (optional) 
            var pageNumber = pageNumber_example;  // String |  (optional) 

            try
            {
                // 監査ログ
                AuditLogResponse result = apiInstance.getBanks1_0(userId, userType, selectedCompanyId, selectedUserId, serviceId, actionCode, dateStartRange, dateEndRange, pageSize, pageNumber);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getBanks1_0: " + 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
$selectedCompanyId = selectedCompanyId_example; // String | ログインユーザーの会社ID
$selectedUserId = selectedUserId_example; // String | 
$serviceId = serviceId_example; // String | 
$actionCode = actionCode_example; // String | 
$dateStartRange = dateStartRange_example; // String | 
$dateEndRange = dateEndRange_example; // String | 
$pageSize = pageSize_example; // String | 
$pageNumber = pageNumber_example; // String | 

try {
    $result = $api_instance->getBanks1_0($userId, $userType, $selectedCompanyId, $selectedUserId, $serviceId, $actionCode, $dateStartRange, $dateEndRange, $pageSize, $pageNumber);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getBanks1_0: ', $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 $selectedCompanyId = selectedCompanyId_example; # String | ログインユーザーの会社ID
my $selectedUserId = selectedUserId_example; # String | 
my $serviceId = serviceId_example; # String | 
my $actionCode = actionCode_example; # String | 
my $dateStartRange = dateStartRange_example; # String | 
my $dateEndRange = dateEndRange_example; # String | 
my $pageSize = pageSize_example; # String | 
my $pageNumber = pageNumber_example; # String | 

eval { 
    my $result = $api_instance->getBanks1_0(userId => $userId, userType => $userType, selectedCompanyId => $selectedCompanyId, selectedUserId => $selectedUserId, serviceId => $serviceId, actionCode => $actionCode, dateStartRange => $dateStartRange, dateEndRange => $dateEndRange, pageSize => $pageSize, pageNumber => $pageNumber);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getBanks1_0: $@\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)
selectedCompanyId = selectedCompanyId_example # String | ログインユーザーの会社ID (optional)
selectedUserId = selectedUserId_example # String |  (optional)
serviceId = serviceId_example # String |  (optional)
actionCode = actionCode_example # String |  (optional)
dateStartRange = dateStartRange_example # String |  (optional)
dateEndRange = dateEndRange_example # String |  (optional)
pageSize = pageSize_example # String |  (optional)
pageNumber = pageNumber_example # String |  (optional)

try: 
    # 監査ログ
    api_response = api_instance.get_banks1_0(userId=userId, userType=userType, selectedCompanyId=selectedCompanyId, selectedUserId=selectedUserId, serviceId=serviceId, actionCode=actionCode, dateStartRange=dateStartRange, dateEndRange=dateEndRange, pageSize=pageSize, pageNumber=pageNumber)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getBanks1_0: %s\n" % e)

Parameters

Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
Query parameters
Name Description
selected_company_id
String
ログインユーザーの会社ID
selected_user_id
String
service_id
String
action_code
String
date_start_range
String
date_end_range
String
page_size
String
page_number
String

Responses

Status: 200 - 成功

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


getCodeDefinitions1

【未メンテ】名称コード取得

カテゴリーやコードに応じた名称を取得できるAPIです。


/api/v1/codedefinition/{category}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/codedefinition/{category}?code="
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 category = category_example; // String | 取得する名称のカテゴリー
        String code = code_example; // String | 取得する名称のコード
        try {
            CodeDefinitionResponse result = apiInstance.getCodeDefinitions1(category, code);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getCodeDefinitions1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String category = category_example; // String | 取得する名称のカテゴリー
        String code = code_example; // String | 取得する名称のコード
        try {
            CodeDefinitionResponse result = apiInstance.getCodeDefinitions1(category, code);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getCodeDefinitions1");
            e.printStackTrace();
        }
    }
}
String *category = category_example; // 取得する名称のカテゴリー
String *code = code_example; // 取得する名称のコード (optional)

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

// 【未メンテ】名称コード取得
[apiInstance getCodeDefinitions1With:category
    code:code
              completionHandler: ^(CodeDefinitionResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var category = category_example; // {{String}} 取得する名称のカテゴリー
var opts = { 
  'code': code_example // {{String}} 取得する名称のコード
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getCodeDefinitions1(category, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var category = category_example;  // String | 取得する名称のカテゴリー
            var code = code_example;  // String | 取得する名称のコード (optional) 

            try
            {
                // 【未メンテ】名称コード取得
                CodeDefinitionResponse result = apiInstance.getCodeDefinitions1(category, code);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getCodeDefinitions1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$category = category_example; // String | 取得する名称のカテゴリー
$code = code_example; // String | 取得する名称のコード

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $category = category_example; # String | 取得する名称のカテゴリー
my $code = code_example; # String | 取得する名称のコード

eval { 
    my $result = $api_instance->getCodeDefinitions1(category => $category, code => $code);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getCodeDefinitions1: $@\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()
category = category_example # String | 取得する名称のカテゴリー
code = code_example # String | 取得する名称のコード (optional)

try: 
    # 【未メンテ】名称コード取得
    api_response = api_instance.get_code_definitions1(category, code=code)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getCodeDefinitions1: %s\n" % e)

Parameters

Path parameters
Name Description
category*
String
取得する名称のカテゴリー
Required
Query parameters
Name Description
code
String
取得する名称のコード

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getCompany1

【未メンテ】企業検索

企業検索APIです.swaggerでAPI仕様の場合QueryParam全部で入力お願いします。


/api/v1/view/company

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/company?page_number=&page_size=&company_type=&company_name=&office_name=&phone_number=&search_text=&sort="
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 userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String companyType = companyType_example; // String | 
        String companyName = companyName_example; // String | 
        String officeName = officeName_example; // String | 
        String phoneNumber = phoneNumber_example; // String | 
        String searchText = searchText_example; // String | 
        array[String] sort = ; // array[String] | 
        try {
            CompanyInitialInfoPaginationSwaggerResponseDto result = apiInstance.getCompany1(userType, userId, companyId, pageNumber, pageSize, companyType, companyName, officeName, phoneNumber, searchText, sort);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getCompany1");
            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 userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String companyType = companyType_example; // String | 
        String companyName = companyName_example; // String | 
        String officeName = officeName_example; // String | 
        String phoneNumber = phoneNumber_example; // String | 
        String searchText = searchText_example; // String | 
        array[String] sort = ; // array[String] | 
        try {
            CompanyInitialInfoPaginationSwaggerResponseDto result = apiInstance.getCompany1(userType, userId, companyId, pageNumber, pageSize, companyType, companyName, officeName, phoneNumber, searchText, sort);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getCompany1");
            e.printStackTrace();
        }
    }
}
String *userType = userType_example; // ログインユーザーType (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
Integer *pageNumber = 56; //  (optional)
Integer *pageSize = 56; //  (optional)
String *companyType = companyType_example; //  (optional)
String *companyName = companyName_example; //  (optional)
String *officeName = officeName_example; //  (optional)
String *phoneNumber = phoneNumber_example; //  (optional)
String *searchText = searchText_example; //  (optional)
array[String] *sort = ; //  (optional)

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

// 【未メンテ】企業検索
[apiInstance getCompany1With:userType
    userId:userId
    companyId:companyId
    pageNumber:pageNumber
    pageSize:pageSize
    companyType:companyType
    companyName:companyName
    officeName:officeName
    phoneNumber:phoneNumber
    searchText:searchText
    sort:sort
              completionHandler: ^(CompanyInitialInfoPaginationSwaggerResponseDto 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
  'userId': userId_example, // {{String}} ログインユーザーID
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'pageNumber': 56, // {{Integer}} 
  'pageSize': 56, // {{Integer}} 
  'companyType': companyType_example, // {{String}} 
  'companyName': companyName_example, // {{String}} 
  'officeName': officeName_example, // {{String}} 
  'phoneNumber': phoneNumber_example, // {{String}} 
  'searchText': searchText_example, // {{String}} 
  'sort':  // {{array[String]}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getCompany1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var pageNumber = 56;  // Integer |  (optional) 
            var pageSize = 56;  // Integer |  (optional) 
            var companyType = companyType_example;  // String |  (optional) 
            var companyName = companyName_example;  // String |  (optional) 
            var officeName = officeName_example;  // String |  (optional) 
            var phoneNumber = phoneNumber_example;  // String |  (optional) 
            var searchText = searchText_example;  // String |  (optional) 
            var sort = new array[String](); // array[String] |  (optional) 

            try
            {
                // 【未メンテ】企業検索
                CompanyInitialInfoPaginationSwaggerResponseDto result = apiInstance.getCompany1(userType, userId, companyId, pageNumber, pageSize, companyType, companyName, officeName, phoneNumber, searchText, sort);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getCompany1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$userType = userType_example; // String | ログインユーザーType
$userId = userId_example; // String | ログインユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID
$pageNumber = 56; // Integer | 
$pageSize = 56; // Integer | 
$companyType = companyType_example; // String | 
$companyName = companyName_example; // String | 
$officeName = officeName_example; // String | 
$phoneNumber = phoneNumber_example; // String | 
$searchText = searchText_example; // String | 
$sort = ; // array[String] | 

try {
    $result = $api_instance->getCompany1($userType, $userId, $companyId, $pageNumber, $pageSize, $companyType, $companyName, $officeName, $phoneNumber, $searchText, $sort);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getCompany1: ', $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 $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $pageNumber = 56; # Integer | 
my $pageSize = 56; # Integer | 
my $companyType = companyType_example; # String | 
my $companyName = companyName_example; # String | 
my $officeName = officeName_example; # String | 
my $phoneNumber = phoneNumber_example; # String | 
my $searchText = searchText_example; # String | 
my $sort = []; # array[String] | 

eval { 
    my $result = $api_instance->getCompany1(userType => $userType, userId => $userId, companyId => $companyId, pageNumber => $pageNumber, pageSize => $pageSize, companyType => $companyType, companyName => $companyName, officeName => $officeName, phoneNumber => $phoneNumber, searchText => $searchText, sort => $sort);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getCompany1: $@\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)
userId = userId_example # String | ログインユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
pageNumber = 56 # Integer |  (optional)
pageSize = 56 # Integer |  (optional)
companyType = companyType_example # String |  (optional)
companyName = companyName_example # String |  (optional)
officeName = officeName_example # String |  (optional)
phoneNumber = phoneNumber_example # String |  (optional)
searchText = searchText_example # String |  (optional)
sort =  # array[String] |  (optional)

try: 
    # 【未メンテ】企業検索
    api_response = api_instance.get_company1(userType=userType, userId=userId, companyId=companyId, pageNumber=pageNumber, pageSize=pageSize, companyType=companyType, companyName=companyName, officeName=officeName, phoneNumber=phoneNumber, searchText=searchText, sort=sort)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getCompany1: %s\n" % e)

Parameters

Header parameters
Name Description
userType
String
ログインユーザーType
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
Query parameters
Name Description
page_number
Integer (int32)
page_size
Integer (int32)
company_type
String
company_name
String
office_name
String
phone_number
String
search_text
String
sort
array[String]

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getCompanyByCompanyId1

【未メンテ】IDで企業情報取得

IDで企業情報取得できるAPIです


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

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/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 {
            CompanyResponseDto result = apiInstance.getCompanyByCompanyId1(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getCompanyByCompanyId1");
            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 {
            CompanyResponseDto result = apiInstance.getCompanyByCompanyId1(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getCompanyByCompanyId1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 取得する企業のID

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

// 【未メンテ】IDで企業情報取得
[apiInstance getCompanyByCompanyId1With:companyId
              completionHandler: ^(CompanyResponseDto 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.getCompanyByCompanyId1(companyId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 取得する企業のID

            try
            {
                // 【未メンテ】IDで企業情報取得
                CompanyResponseDto result = apiInstance.getCompanyByCompanyId1(companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getCompanyByCompanyId1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 取得する企業のID

try {
    $result = $api_instance->getCompanyByCompanyId1($companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getCompanyByCompanyId1: ', $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->getCompanyByCompanyId1(companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getCompanyByCompanyId1: $@\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: 
    # 【未メンテ】IDで企業情報取得
    api_response = api_instance.get_company_by_company_id1(companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getCompanyByCompanyId1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
取得する企業のID
Required

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getCompanyListByIds1

【未メンテ】複数のIDで企業取得

複数のIDで企業取得APIです


/api/v1/get_companies_list

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/get_companies_list?companyIds="
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();
        array[String] companyIds = ; // array[String] | 取得する企業のID
        try {
            CompanyViewResponseDto result = apiInstance.getCompanyListByIds1(companyIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getCompanyListByIds1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        array[String] companyIds = ; // array[String] | 取得する企業のID
        try {
            CompanyViewResponseDto result = apiInstance.getCompanyListByIds1(companyIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getCompanyListByIds1");
            e.printStackTrace();
        }
    }
}
array[String] *companyIds = ; // 取得する企業のID

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

// 【未メンテ】複数のIDで企業取得
[apiInstance getCompanyListByIds1With:companyIds
              completionHandler: ^(CompanyViewResponseDto output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyIds = ; // {{array[String]}} 取得する企業のID

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

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

            var apiInstance = new APIsApi();
            var companyIds = new array[String](); // array[String] | 取得する企業のID

            try
            {
                // 【未メンテ】複数のIDで企業取得
                CompanyViewResponseDto result = apiInstance.getCompanyListByIds1(companyIds);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getCompanyListByIds1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyIds = ; // array[String] | 取得する企業のID

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyIds = []; # array[String] | 取得する企業のID

eval { 
    my $result = $api_instance->getCompanyListByIds1(companyIds => $companyIds);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getCompanyListByIds1: $@\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()
companyIds =  # array[String] | 取得する企業のID

try: 
    # 【未メンテ】複数のIDで企業取得
    api_response = api_instance.get_company_list_by_ids1(companyIds)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getCompanyListByIds1: %s\n" % e)

Parameters

Query parameters
Name Description
companyIds*
array[String]
取得する企業のID
Required

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getCompanysForAssignment1

【未メンテ】アサインのため企業情報取得

コンサルタントユーザーに企業アサインするAPIです.


/api/v1/view/user/company

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/user/company?page_number=&page_size=&company_type="
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 companyId = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String companyType = companyType_example; // String | 
        try {
            CompanyInitialInfoPaginationSwaggerResponseDto result = apiInstance.getCompanysForAssignment1(userId, companyId, userType, pageNumber, pageSize, companyType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getCompanysForAssignment1");
            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 companyId = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String companyType = companyType_example; // String | 
        try {
            CompanyInitialInfoPaginationSwaggerResponseDto result = apiInstance.getCompanysForAssignment1(userId, companyId, userType, pageNumber, pageSize, companyType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getCompanysForAssignment1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
Integer *pageNumber = 56; //  (optional)
Integer *pageSize = 56; //  (optional)
String *companyType = companyType_example; //  (optional)

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

// 【未メンテ】アサインのため企業情報取得
[apiInstance getCompanysForAssignment1With:userId
    companyId:companyId
    userType:userType
    pageNumber:pageNumber
    pageSize:pageSize
    companyType:companyType
              completionHandler: ^(CompanyInitialInfoPaginationSwaggerResponseDto 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
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'userType': userType_example, // {{String}} ログインユーザーType
  'pageNumber': 56, // {{Integer}} 
  'pageSize': 56, // {{Integer}} 
  'companyType': companyType_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getCompanysForAssignment1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var pageNumber = 56;  // Integer |  (optional) 
            var pageSize = 56;  // Integer |  (optional) 
            var companyType = companyType_example;  // String |  (optional) 

            try
            {
                // 【未メンテ】アサインのため企業情報取得
                CompanyInitialInfoPaginationSwaggerResponseDto result = apiInstance.getCompanysForAssignment1(userId, companyId, userType, pageNumber, pageSize, companyType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getCompanysForAssignment1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

try {
    $result = $api_instance->getCompanysForAssignment1($userId, $companyId, $userType, $pageNumber, $pageSize, $companyType);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getCompanysForAssignment1: ', $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 $companyId = companyId_example; # String | ログインユーザーの会社ID
my $userType = userType_example; # String | ログインユーザーType
my $pageNumber = 56; # Integer | 
my $pageSize = 56; # Integer | 
my $companyType = companyType_example; # String | 

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

try: 
    # 【未メンテ】アサインのため企業情報取得
    api_response = api_instance.get_companys_for_assignment1(userId=userId, companyId=companyId, userType=userType, pageNumber=pageNumber, pageSize=pageSize, companyType=companyType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getCompanysForAssignment1: %s\n" % e)

Parameters

Header parameters
Name Description
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
userType
String
ログインユーザーType
Query parameters
Name Description
page_number
Integer (int32)
page_size
Integer (int32)
company_type
String

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getDepartmentById1

【未メンテ】IDで部署取得

IDで部署取得できるAPIです


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

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/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 companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            inline_response_200 result = apiInstance.getDepartmentById1(companyId, departmentId, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getDepartmentById1");
            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 companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            inline_response_200 result = apiInstance.getDepartmentById1(companyId, departmentId, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getDepartmentById1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 取得する部署の企業ID
String *departmentId = departmentId_example; // 取得する部署のID
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)

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

// 【未メンテ】IDで部署取得
[apiInstance getDepartmentById1With:companyId
    departmentId:departmentId
    userId:userId
    companyId:companyId
              completionHandler: ^(inline_response_200 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
  '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.getDepartmentById1(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 getDepartmentById1Example
    {
        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 companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】IDで部署取得
                inline_response_200 result = apiInstance.getDepartmentById1(companyId, departmentId, userId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getDepartmentById1: " + 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
$companyId = companyId_example; // String | ログインユーザーの会社ID

try {
    $result = $api_instance->getDepartmentById1($companyId, $departmentId, $userId, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getDepartmentById1: ', $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 $companyId = companyId_example; # String | ログインユーザーの会社ID

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

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

Parameters

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

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getPositionById1

【未メンテ】IDで役職取得

IDで役職取得できるAPIです


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

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/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 {
            PositionDtoSwaggerResponseDto result = apiInstance.getPositionById1(companyId, positionId, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getPositionById1");
            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 {
            PositionDtoSwaggerResponseDto result = apiInstance.getPositionById1(companyId, positionId, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getPositionById1");
            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];

// 【未メンテ】IDで役職取得
[apiInstance getPositionById1With:companyId
    positionId:positionId
    userId:userId
    companyId:companyId
              completionHandler: ^(PositionDtoSwaggerResponseDto 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.getPositionById1(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 getPositionById1Example
    {
        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
            {
                // 【未メンテ】IDで役職取得
                PositionDtoSwaggerResponseDto result = apiInstance.getPositionById1(companyId, positionId, userId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getPositionById1: " + 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->getPositionById1($companyId, $positionId, $userId, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getPositionById1: ', $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->getPositionById1(companyId => $companyId, positionId => $positionId, userId => $userId, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getPositionById1: $@\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: 
    # 【未メンテ】IDで役職取得
    api_response = api_instance.get_position_by_id1(companyId, positionId, userId=userId, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getPositionById1: %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 - 見つかりません


getSmartFlowUserDetails1

企業IDで複数のSmartflow側のユーザー情報取得

企業IDで複数のSmartflow側のユーザー情報取得できるAPIです


/api/v1/user/company

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/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
        try {
            SmartFlowUserDetailDTOSwaggerResponseDto result = apiInstance.getSmartFlowUserDetails1(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getSmartFlowUserDetails1");
            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 {
            SmartFlowUserDetailDTOSwaggerResponseDto result = apiInstance.getSmartFlowUserDetails1(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getSmartFlowUserDetails1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 企業ID (optional)

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

// 企業IDで複数のSmartflow側のユーザー情報取得
[apiInstance getSmartFlowUserDetails1With:companyId
              completionHandler: ^(SmartFlowUserDetailDTOSwaggerResponseDto 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.getSmartFlowUserDetails1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

            try
            {
                // 企業IDで複数のSmartflow側のユーザー情報取得
                SmartFlowUserDetailDTOSwaggerResponseDto result = apiInstance.getSmartFlowUserDetails1(companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getSmartFlowUserDetails1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

try {
    $result = $api_instance->getSmartFlowUserDetails1($companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getSmartFlowUserDetails1: ', $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->getSmartFlowUserDetails1(companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getSmartFlowUserDetails1: $@\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: 
    # 企業IDで複数のSmartflow側のユーザー情報取得
    api_response = api_instance.get_smart_flow_user_details1(companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getSmartFlowUserDetails1: %s\n" % e)

Parameters

Query parameters
Name Description
companyId
String
企業ID

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getSmartFlowUserInfo1

Smartflow側のユーザーToken取得

Smartflow側のユーザーToken取得できるAPIです。バックエンド側で利用しています。


/api/v1/internal/user/{userId}/company/{companyId}/smartflow-token

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/internal/user/{userId}/company/{companyId}/smartflow-token?regenerate_token=&userType="
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 | ユーザーToken取得するユーザーID
        String companyId = companyId_example; // String | ユーザーToken取得するユーザーの企業ID
        Boolean regenerateToken = true; // Boolean | 
        String userType = userType_example; // String | ユーザーToken取得するユーザーType
        try {
            SmartFlowUserInfoDTOSwaggerResponseDto result = apiInstance.getSmartFlowUserInfo1(userId, companyId, regenerateToken, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getSmartFlowUserInfo1");
            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 | ユーザーToken取得するユーザーID
        String companyId = companyId_example; // String | ユーザーToken取得するユーザーの企業ID
        Boolean regenerateToken = true; // Boolean | 
        String userType = userType_example; // String | ユーザーToken取得するユーザーType
        try {
            SmartFlowUserInfoDTOSwaggerResponseDto result = apiInstance.getSmartFlowUserInfo1(userId, companyId, regenerateToken, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getSmartFlowUserInfo1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ユーザーToken取得するユーザーID
String *companyId = companyId_example; // ユーザーToken取得するユーザーの企業ID
Boolean *regenerateToken = true; //  (optional)
String *userType = userType_example; // ユーザーToken取得するユーザーType (optional)

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

// Smartflow側のユーザーToken取得
[apiInstance getSmartFlowUserInfo1With:userId
    companyId:companyId
    regenerateToken:regenerateToken
    userType:userType
              completionHandler: ^(SmartFlowUserInfoDTOSwaggerResponseDto 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}} ユーザーToken取得するユーザーID
var companyId = companyId_example; // {{String}} ユーザーToken取得するユーザーの企業ID
var opts = { 
  'regenerateToken': true, // {{Boolean}} 
  'userType': userType_example // {{String}} ユーザーToken取得するユーザーType
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getSmartFlowUserInfo1(userId, companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var userId = userId_example;  // String | ユーザーToken取得するユーザーID
            var companyId = companyId_example;  // String | ユーザーToken取得するユーザーの企業ID
            var regenerateToken = true;  // Boolean |  (optional) 
            var userType = userType_example;  // String | ユーザーToken取得するユーザーType (optional) 

            try
            {
                // Smartflow側のユーザーToken取得
                SmartFlowUserInfoDTOSwaggerResponseDto result = apiInstance.getSmartFlowUserInfo1(userId, companyId, regenerateToken, userType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getSmartFlowUserInfo1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$userId = userId_example; // String | ユーザーToken取得するユーザーID
$companyId = companyId_example; // String | ユーザーToken取得するユーザーの企業ID
$regenerateToken = true; // Boolean | 
$userType = userType_example; // String | ユーザーToken取得するユーザーType

try {
    $result = $api_instance->getSmartFlowUserInfo1($userId, $companyId, $regenerateToken, $userType);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getSmartFlowUserInfo1: ', $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 | ユーザーToken取得するユーザーID
my $companyId = companyId_example; # String | ユーザーToken取得するユーザーの企業ID
my $regenerateToken = true; # Boolean | 
my $userType = userType_example; # String | ユーザーToken取得するユーザーType

eval { 
    my $result = $api_instance->getSmartFlowUserInfo1(userId => $userId, companyId => $companyId, regenerateToken => $regenerateToken, userType => $userType);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getSmartFlowUserInfo1: $@\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 | ユーザーToken取得するユーザーID
companyId = companyId_example # String | ユーザーToken取得するユーザーの企業ID
regenerateToken = true # Boolean |  (optional)
userType = userType_example # String | ユーザーToken取得するユーザーType (optional)

try: 
    # Smartflow側のユーザーToken取得
    api_response = api_instance.get_smart_flow_user_info1(userId, companyId, regenerateToken=regenerateToken, userType=userType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getSmartFlowUserInfo1: %s\n" % e)

Parameters

Path parameters
Name Description
userId*
String
ユーザーToken取得するユーザーID
Required
companyId*
String
ユーザーToken取得するユーザーの企業ID
Required
Query parameters
Name Description
regenerate_token
Boolean
userType
String
ユーザーToken取得するユーザーType

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getUserAssignedRoles1

【未メンテ】アサインのためロールフェッチ

アサインのためロールフェッチできるAPIです


/api/v1/view/user/role

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/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 userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String roleName = roleName_example; // String | 
        try {
            RoleSwaggerResponseDto result = apiInstance.getUserAssignedRoles1(userId, userType, roleName);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserAssignedRoles1");
            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 roleName = roleName_example; // String | 
        try {
            RoleSwaggerResponseDto result = apiInstance.getUserAssignedRoles1(userId, userType, roleName);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserAssignedRoles1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID (optional)
String *userType = userType_example; // ログインユーザーType (optional)
String *roleName = roleName_example; //  (optional)

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

// 【未メンテ】アサインのためロールフェッチ
[apiInstance getUserAssignedRoles1With:userId
    userType:userType
    roleName:roleName
              completionHandler: ^(RoleSwaggerResponseDto 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
  '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.getUserAssignedRoles1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var roleName = roleName_example;  // String |  (optional) 

            try
            {
                // 【未メンテ】アサインのためロールフェッチ
                RoleSwaggerResponseDto result = apiInstance.getUserAssignedRoles1(userId, userType, roleName);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUserAssignedRoles1: " + 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
$roleName = roleName_example; // String | 

try {
    $result = $api_instance->getUserAssignedRoles1($userId, $userType, $roleName);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUserAssignedRoles1: ', $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 $roleName = roleName_example; # String | 

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

try: 
    # 【未メンテ】アサインのためロールフェッチ
    api_response = api_instance.get_user_assigned_roles1(userId=userId, userType=userType, roleName=roleName)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUserAssignedRoles1: %s\n" % e)

Parameters

Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
Query parameters
Name Description
role_name
String

Responses

Status: 200 - 成功

Status: 404 - 見つかりません

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


getUserAssociatedDepartment1

【未メンテ】当社のユーザ関連部署

企業IDでユーザが追加している部署を取得できます。


/api/v1/user/associated/department

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/user/associated/department?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 userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String companyId = companyId_example; // String | 
        try {
            SmartFlowDepartmentDTOListSwaggerResponseDto result = apiInstance.getUserAssociatedDepartment1(userId, companyId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserAssociatedDepartment1");
            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 companyId = companyId_example; // String | ログインユーザーの会社ID
        String companyId = companyId_example; // String | 
        try {
            SmartFlowDepartmentDTOListSwaggerResponseDto result = apiInstance.getUserAssociatedDepartment1(userId, companyId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserAssociatedDepartment1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *companyId = companyId_example; //  (optional)

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

// 【未メンテ】当社のユーザ関連部署
[apiInstance getUserAssociatedDepartment1With:userId
    companyId:companyId
    companyId:companyId
              completionHandler: ^(SmartFlowDepartmentDTOListSwaggerResponseDto 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
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'companyId': companyId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getUserAssociatedDepartment1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

            try
            {
                // 【未メンテ】当社のユーザ関連部署
                SmartFlowDepartmentDTOListSwaggerResponseDto result = apiInstance.getUserAssociatedDepartment1(userId, companyId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUserAssociatedDepartment1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

try {
    $result = $api_instance->getUserAssociatedDepartment1($userId, $companyId, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUserAssociatedDepartment1: ', $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 $companyId = companyId_example; # String | ログインユーザーの会社ID
my $companyId = companyId_example; # String | 

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

try: 
    # 【未メンテ】当社のユーザ関連部署
    api_response = api_instance.get_user_associated_department1(userId=userId, companyId=companyId, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUserAssociatedDepartment1: %s\n" % e)

Parameters

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

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getUserAssociatedPosition1

【未メンテ】当社のユーザ関連役職

当社のユーザ関連役職フェッチできるAPIです


/api/v1/user/associated/position

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/user/associated/position?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 userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String companyId = companyId_example; // String | 
        try {
            SmartFlowPositionDTOListSwaggerResponseDto result = apiInstance.getUserAssociatedPosition1(userId, companyId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserAssociatedPosition1");
            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 companyId = companyId_example; // String | ログインユーザーの会社ID
        String companyId = companyId_example; // String | 
        try {
            SmartFlowPositionDTOListSwaggerResponseDto result = apiInstance.getUserAssociatedPosition1(userId, companyId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserAssociatedPosition1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *companyId = companyId_example; //  (optional)

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

// 【未メンテ】当社のユーザ関連役職
[apiInstance getUserAssociatedPosition1With:userId
    companyId:companyId
    companyId:companyId
              completionHandler: ^(SmartFlowPositionDTOListSwaggerResponseDto 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
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'companyId': companyId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getUserAssociatedPosition1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

            try
            {
                // 【未メンテ】当社のユーザ関連役職
                SmartFlowPositionDTOListSwaggerResponseDto result = apiInstance.getUserAssociatedPosition1(userId, companyId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUserAssociatedPosition1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

try {
    $result = $api_instance->getUserAssociatedPosition1($userId, $companyId, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUserAssociatedPosition1: ', $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 $companyId = companyId_example; # String | ログインユーザーの会社ID
my $companyId = companyId_example; # String | 

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

try: 
    # 【未メンテ】当社のユーザ関連役職
    api_response = api_instance.get_user_associated_position1(userId=userId, companyId=companyId, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUserAssociatedPosition1: %s\n" % e)

Parameters

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

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getUserByUserId1

ユーザー情報フェッチ

IDでユーザー情報フェッチできるAPIです。削除済みユーザーも取得可能です。


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

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/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 userId = userId_example; // String | ログインユーザーのユーザーID
        String userId = userId_example; // String | 取得するユーザーのユーザーID
        String companyId = companyId_example; // String | 取得するユーザーの会社ID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        try {
            UserSwaggerResponseDto result = apiInstance.getUserByUserId1(userId, userId, companyId, companyId, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserByUserId1");
            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 userId = userId_example; // String | 取得するユーザーのユーザーID
        String companyId = companyId_example; // String | 取得するユーザーの会社ID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        try {
            UserSwaggerResponseDto result = apiInstance.getUserByUserId1(userId, userId, companyId, companyId, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserByUserId1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーのユーザーID
String *userId = userId_example; // 取得するユーザーのユーザーID
String *companyId = companyId_example; // 取得するユーザーの会社ID
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *userType = userType_example; // ログインユーザーType (optional)

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

// ユーザー情報フェッチ
[apiInstance getUserByUserId1With:userId
    userId:userId
    companyId:companyId
    companyId:companyId
    userType:userType
              completionHandler: ^(UserSwaggerResponseDto 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 userId = userId_example; // {{String}} 取得するユーザーのユーザーID
var companyId = companyId_example; // {{String}} 取得するユーザーの会社ID
var opts = { 
  '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.getUserByUserId1(userId, userId, companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

            try
            {
                // ユーザー情報フェッチ
                UserSwaggerResponseDto result = apiInstance.getUserByUserId1(userId, userId, companyId, companyId, userType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUserByUserId1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

try {
    $result = $api_instance->getUserByUserId1($userId, $userId, $companyId, $companyId, $userType);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUserByUserId1: ', $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 $userId = userId_example; # String | 取得するユーザーのユーザーID
my $companyId = companyId_example; # String | 取得するユーザーの会社ID
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $userType = userType_example; # String | ログインユーザーType

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

try: 
    # ユーザー情報フェッチ
    api_response = api_instance.get_user_by_user_id1(userId, userId, companyId, companyId=companyId, userType=userType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUserByUserId1: %s\n" % e)

Parameters

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

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getUserByUserId2

無効化済みユーザー情報フェッチ

IDで無効化済みユーザー情報フェッチできるAPIです


/api/v1/view/deleted_user/{userId}/company/{companyId}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/deleted_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 {
            UserSwaggerResponseDto result = apiInstance.getUserByUserId2(companyId, userId, userId, companyId, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserByUserId2");
            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 {
            UserSwaggerResponseDto result = apiInstance.getUserByUserId2(companyId, userId, userId, companyId, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserByUserId2");
            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 getUserByUserId2With:companyId
    userId:userId
    userId:userId
    companyId:companyId
    userType:userType
              completionHandler: ^(UserSwaggerResponseDto 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.getUserByUserId2(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 getUserByUserId2Example
    {
        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
            {
                // 無効化済みユーザー情報フェッチ
                UserSwaggerResponseDto result = apiInstance.getUserByUserId2(companyId, userId, userId, companyId, userType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUserByUserId2: " + 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->getUserByUserId2($companyId, $userId, $userId, $companyId, $userType);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUserByUserId2: ', $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->getUserByUserId2(companyId => $companyId, userId => $userId, userId => $userId, companyId => $companyId, userType => $userType);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getUserByUserId2: $@\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.get_user_by_user_id2(companyId, userId, userId=userId, companyId=companyId, userType=userType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUserByUserId2: %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 - 成功

Status: 404 - 見つかりません


getUserDetailsByIDs1

複数のIDでユーザー取得

複数のIDでユーザー取得できるAPIです。バックエンド側で利用しています。ユーザーに部署が追加されていない場合ユーザー取得が不可能です。


/api/v1/api_get_users_by_id

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/api_get_users_by_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();
        UserIdTo body = ; // UserIdTo | 
        try {
            UserViewSwaggerResponseDto result = apiInstance.getUserDetailsByIDs1(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserDetailsByIDs1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

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

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

// 複数のIDでユーザー取得
[apiInstance getUserDetailsByIDs1With:body
              completionHandler: ^(UserViewSwaggerResponseDto 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':  // {{UserIdTo}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getUserDetailsByIDs1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var body = new UserIdTo(); // UserIdTo |  (optional) 

            try
            {
                // 複数のIDでユーザー取得
                UserViewSwaggerResponseDto result = apiInstance.getUserDetailsByIDs1(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUserDetailsByIDs1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$body = ; // UserIdTo | 

try {
    $result = $api_instance->getUserDetailsByIDs1($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUserDetailsByIDs1: ', $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::UserIdTo->new(); # UserIdTo | 

eval { 
    my $result = $api_instance->getUserDetailsByIDs1(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getUserDetailsByIDs1: $@\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 =  # UserIdTo |  (optional)

try: 
    # 複数のIDでユーザー取得
    api_response = api_instance.get_user_details_by_ids1(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUserDetailsByIDs1: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - 成功

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

Status: 404 - 見つかりません


getUserProfileInfo1

ユーザープロファイル

ユーザープロファイをフェッチできるAPIです


/api/v1/view/user/profile

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/user/profile"
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
        try {
            UserSwaggerResponseDto result = apiInstance.getUserProfileInfo1(userId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserProfileInfo1");
            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
        try {
            UserSwaggerResponseDto result = apiInstance.getUserProfileInfo1(userId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUserProfileInfo1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID (optional)

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

// ユーザープロファイル
[apiInstance getUserProfileInfo1With:userId
              completionHandler: ^(UserSwaggerResponseDto 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
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getUserProfileInfo1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var userId = userId_example;  // String | ログインユーザーID (optional) 

            try
            {
                // ユーザープロファイル
                UserSwaggerResponseDto result = apiInstance.getUserProfileInfo1(userId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUserProfileInfo1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$userId = userId_example; // String | ログインユーザーID

try {
    $result = $api_instance->getUserProfileInfo1($userId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUserProfileInfo1: ', $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

eval { 
    my $result = $api_instance->getUserProfileInfo1(userId => $userId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getUserProfileInfo1: $@\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)

try: 
    # ユーザープロファイル
    api_response = api_instance.get_user_profile_info1(userId=userId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUserProfileInfo1: %s\n" % e)

Parameters

Header parameters
Name Description
userId
String
ログインユーザーID

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getUsers1

ユーザー検索

条件ごとで利用中ユーザー検索できるAPIです.ログインユーザーを習得するのは不可能です。無効でないユーザーのみが取得されますが、クエリパラメータにinclude_deleted_user=trueを指定した場合は無効ユーザーも取得されます。


/api/v1/view/user

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/user?page_number=&page_size=&first_name=&email_address=&search_text=&is_otp=&position=&department=&sort=&include_deleted_user="
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 userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String firstName = firstName_example; // String | 
        String emailAddress = emailAddress_example; // String | 
        String searchText = searchText_example; // String | 
        String isOtp = isOtp_example; // String | 2段階認証フラグ
        String position = position_example; // String | 
        String department = department_example; // String | 
        array[String] sort = ; // array[String] | 
        Boolean includeDeletedUser = true; // Boolean | trueを指定した場合、削除済みユーザーも検索結果に含めます。true以外を指定する、もしくはinclude_deleted_user自体をクエリに含まない場合は、削除済みユーザーは検索結果に含みません。
        try {
            UserInitialInfoPaginationSwaggerResponseDto result = apiInstance.getUsers1(userType, userId, companyId, pageNumber, pageSize, firstName, emailAddress, searchText, isOtp, position, department, sort, includeDeletedUser);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUsers1");
            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 userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String firstName = firstName_example; // String | 
        String emailAddress = emailAddress_example; // String | 
        String searchText = searchText_example; // String | 
        String isOtp = isOtp_example; // String | 2段階認証フラグ
        String position = position_example; // String | 
        String department = department_example; // String | 
        array[String] sort = ; // array[String] | 
        Boolean includeDeletedUser = true; // Boolean | trueを指定した場合、削除済みユーザーも検索結果に含めます。true以外を指定する、もしくはinclude_deleted_user自体をクエリに含まない場合は、削除済みユーザーは検索結果に含みません。
        try {
            UserInitialInfoPaginationSwaggerResponseDto result = apiInstance.getUsers1(userType, userId, companyId, pageNumber, pageSize, firstName, emailAddress, searchText, isOtp, position, department, sort, includeDeletedUser);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUsers1");
            e.printStackTrace();
        }
    }
}
String *userType = userType_example; // ログインユーザーType (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
Integer *pageNumber = 56; //  (optional)
Integer *pageSize = 56; //  (optional)
String *firstName = firstName_example; //  (optional)
String *emailAddress = emailAddress_example; //  (optional)
String *searchText = searchText_example; //  (optional)
String *isOtp = isOtp_example; // 2段階認証フラグ (optional)
String *position = position_example; //  (optional)
String *department = department_example; //  (optional)
array[String] *sort = ; //  (optional)
Boolean *includeDeletedUser = true; // trueを指定した場合、削除済みユーザーも検索結果に含めます。true以外を指定する、もしくはinclude_deleted_user自体をクエリに含まない場合は、削除済みユーザーは検索結果に含みません。 (optional)

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

// ユーザー検索
[apiInstance getUsers1With:userType
    userId:userId
    companyId:companyId
    pageNumber:pageNumber
    pageSize:pageSize
    firstName:firstName
    emailAddress:emailAddress
    searchText:searchText
    isOtp:isOtp
    position:position
    department:department
    sort:sort
    includeDeletedUser:includeDeletedUser
              completionHandler: ^(UserInitialInfoPaginationSwaggerResponseDto 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
  'userId': userId_example, // {{String}} ログインユーザーID
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'pageNumber': 56, // {{Integer}} 
  'pageSize': 56, // {{Integer}} 
  'firstName': firstName_example, // {{String}} 
  'emailAddress': emailAddress_example, // {{String}} 
  'searchText': searchText_example, // {{String}} 
  'isOtp': isOtp_example, // {{String}} 2段階認証フラグ
  'position': position_example, // {{String}} 
  'department': department_example, // {{String}} 
  'sort': , // {{array[String]}} 
  'includeDeletedUser': true // {{Boolean}} trueを指定した場合、削除済みユーザーも検索結果に含めます。true以外を指定する、もしくはinclude_deleted_user自体をクエリに含まない場合は、削除済みユーザーは検索結果に含みません。
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getUsers1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var pageNumber = 56;  // Integer |  (optional) 
            var pageSize = 56;  // Integer |  (optional) 
            var firstName = firstName_example;  // String |  (optional) 
            var emailAddress = emailAddress_example;  // String |  (optional) 
            var searchText = searchText_example;  // String |  (optional) 
            var isOtp = isOtp_example;  // String | 2段階認証フラグ (optional) 
            var position = position_example;  // String |  (optional) 
            var department = department_example;  // String |  (optional) 
            var sort = new array[String](); // array[String] |  (optional) 
            var includeDeletedUser = true;  // Boolean | trueを指定した場合、削除済みユーザーも検索結果に含めます。true以外を指定する、もしくはinclude_deleted_user自体をクエリに含まない場合は、削除済みユーザーは検索結果に含みません。 (optional) 

            try
            {
                // ユーザー検索
                UserInitialInfoPaginationSwaggerResponseDto result = apiInstance.getUsers1(userType, userId, companyId, pageNumber, pageSize, firstName, emailAddress, searchText, isOtp, position, department, sort, includeDeletedUser);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUsers1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$userType = userType_example; // String | ログインユーザーType
$userId = userId_example; // String | ログインユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID
$pageNumber = 56; // Integer | 
$pageSize = 56; // Integer | 
$firstName = firstName_example; // String | 
$emailAddress = emailAddress_example; // String | 
$searchText = searchText_example; // String | 
$isOtp = isOtp_example; // String | 2段階認証フラグ
$position = position_example; // String | 
$department = department_example; // String | 
$sort = ; // array[String] | 
$includeDeletedUser = true; // Boolean | trueを指定した場合、削除済みユーザーも検索結果に含めます。true以外を指定する、もしくはinclude_deleted_user自体をクエリに含まない場合は、削除済みユーザーは検索結果に含みません。

try {
    $result = $api_instance->getUsers1($userType, $userId, $companyId, $pageNumber, $pageSize, $firstName, $emailAddress, $searchText, $isOtp, $position, $department, $sort, $includeDeletedUser);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUsers1: ', $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 $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $pageNumber = 56; # Integer | 
my $pageSize = 56; # Integer | 
my $firstName = firstName_example; # String | 
my $emailAddress = emailAddress_example; # String | 
my $searchText = searchText_example; # String | 
my $isOtp = isOtp_example; # String | 2段階認証フラグ
my $position = position_example; # String | 
my $department = department_example; # String | 
my $sort = []; # array[String] | 
my $includeDeletedUser = true; # Boolean | trueを指定した場合、削除済みユーザーも検索結果に含めます。true以外を指定する、もしくはinclude_deleted_user自体をクエリに含まない場合は、削除済みユーザーは検索結果に含みません。

eval { 
    my $result = $api_instance->getUsers1(userType => $userType, userId => $userId, companyId => $companyId, pageNumber => $pageNumber, pageSize => $pageSize, firstName => $firstName, emailAddress => $emailAddress, searchText => $searchText, isOtp => $isOtp, position => $position, department => $department, sort => $sort, includeDeletedUser => $includeDeletedUser);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getUsers1: $@\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)
userId = userId_example # String | ログインユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
pageNumber = 56 # Integer |  (optional)
pageSize = 56 # Integer |  (optional)
firstName = firstName_example # String |  (optional)
emailAddress = emailAddress_example # String |  (optional)
searchText = searchText_example # String |  (optional)
isOtp = isOtp_example # String | 2段階認証フラグ (optional)
position = position_example # String |  (optional)
department = department_example # String |  (optional)
sort =  # array[String] |  (optional)
includeDeletedUser = true # Boolean | trueを指定した場合、削除済みユーザーも検索結果に含めます。true以外を指定する、もしくはinclude_deleted_user自体をクエリに含まない場合は、削除済みユーザーは検索結果に含みません。 (optional)

try: 
    # ユーザー検索
    api_response = api_instance.get_users1(userType=userType, userId=userId, companyId=companyId, pageNumber=pageNumber, pageSize=pageSize, firstName=firstName, emailAddress=emailAddress, searchText=searchText, isOtp=isOtp, position=position, department=department, sort=sort, includeDeletedUser=includeDeletedUser)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUsers1: %s\n" % e)

Parameters

Header parameters
Name Description
userType
String
ログインユーザーType
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
Query parameters
Name Description
page_number
Integer (int32)
page_size
Integer (int32)
first_name
String
email_address
String
search_text
String
is_otp
String
2段階認証フラグ
position
String
department
String
sort
array[String]
include_deleted_user
Boolean
trueを指定した場合、削除済みユーザーも検索結果に含めます。true以外を指定する、もしくはinclude_deleted_user自体をクエリに含まない場合は、削除済みユーザーは検索結果に含みません。

Responses

Status: 200 - 成功


getUsers2

無効化済みユーザー検索

条件ごとで無効化済みユーザーを検索できるAPIです.ログインユーザーを習得するのは不可能です。無効化されたユーザーのみが取得されます。


/api/v1/view/deleted_user

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/view/deleted_user?page_number=&page_size=&first_name=&email_address=&search_text=&is_otp=&position=&department=&sort="
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 userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String firstName = firstName_example; // String | 
        String emailAddress = emailAddress_example; // String | 
        String searchText = searchText_example; // String | 
        String isOtp = isOtp_example; // String | 2段階認証フラグ
        String position = position_example; // String | 
        String department = department_example; // String | 
        array[String] sort = ; // array[String] | 
        try {
            UserInitialInfoPaginationSwaggerResponseDto result = apiInstance.getUsers2(userType, userId, companyId, pageNumber, pageSize, firstName, emailAddress, searchText, isOtp, position, department, sort);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUsers2");
            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 userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String firstName = firstName_example; // String | 
        String emailAddress = emailAddress_example; // String | 
        String searchText = searchText_example; // String | 
        String isOtp = isOtp_example; // String | 2段階認証フラグ
        String position = position_example; // String | 
        String department = department_example; // String | 
        array[String] sort = ; // array[String] | 
        try {
            UserInitialInfoPaginationSwaggerResponseDto result = apiInstance.getUsers2(userType, userId, companyId, pageNumber, pageSize, firstName, emailAddress, searchText, isOtp, position, department, sort);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUsers2");
            e.printStackTrace();
        }
    }
}
String *userType = userType_example; // ログインユーザーType (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
Integer *pageNumber = 56; //  (optional)
Integer *pageSize = 56; //  (optional)
String *firstName = firstName_example; //  (optional)
String *emailAddress = emailAddress_example; //  (optional)
String *searchText = searchText_example; //  (optional)
String *isOtp = isOtp_example; // 2段階認証フラグ (optional)
String *position = position_example; //  (optional)
String *department = department_example; //  (optional)
array[String] *sort = ; //  (optional)

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

// 無効化済みユーザー検索
[apiInstance getUsers2With:userType
    userId:userId
    companyId:companyId
    pageNumber:pageNumber
    pageSize:pageSize
    firstName:firstName
    emailAddress:emailAddress
    searchText:searchText
    isOtp:isOtp
    position:position
    department:department
    sort:sort
              completionHandler: ^(UserInitialInfoPaginationSwaggerResponseDto 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
  'userId': userId_example, // {{String}} ログインユーザーID
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'pageNumber': 56, // {{Integer}} 
  'pageSize': 56, // {{Integer}} 
  'firstName': firstName_example, // {{String}} 
  'emailAddress': emailAddress_example, // {{String}} 
  'searchText': searchText_example, // {{String}} 
  'isOtp': isOtp_example, // {{String}} 2段階認証フラグ
  'position': position_example, // {{String}} 
  'department': department_example, // {{String}} 
  'sort':  // {{array[String]}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getUsers2(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var pageNumber = 56;  // Integer |  (optional) 
            var pageSize = 56;  // Integer |  (optional) 
            var firstName = firstName_example;  // String |  (optional) 
            var emailAddress = emailAddress_example;  // String |  (optional) 
            var searchText = searchText_example;  // String |  (optional) 
            var isOtp = isOtp_example;  // String | 2段階認証フラグ (optional) 
            var position = position_example;  // String |  (optional) 
            var department = department_example;  // String |  (optional) 
            var sort = new array[String](); // array[String] |  (optional) 

            try
            {
                // 無効化済みユーザー検索
                UserInitialInfoPaginationSwaggerResponseDto result = apiInstance.getUsers2(userType, userId, companyId, pageNumber, pageSize, firstName, emailAddress, searchText, isOtp, position, department, sort);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUsers2: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$userType = userType_example; // String | ログインユーザーType
$userId = userId_example; // String | ログインユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID
$pageNumber = 56; // Integer | 
$pageSize = 56; // Integer | 
$firstName = firstName_example; // String | 
$emailAddress = emailAddress_example; // String | 
$searchText = searchText_example; // String | 
$isOtp = isOtp_example; // String | 2段階認証フラグ
$position = position_example; // String | 
$department = department_example; // String | 
$sort = ; // array[String] | 

try {
    $result = $api_instance->getUsers2($userType, $userId, $companyId, $pageNumber, $pageSize, $firstName, $emailAddress, $searchText, $isOtp, $position, $department, $sort);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUsers2: ', $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 $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $pageNumber = 56; # Integer | 
my $pageSize = 56; # Integer | 
my $firstName = firstName_example; # String | 
my $emailAddress = emailAddress_example; # String | 
my $searchText = searchText_example; # String | 
my $isOtp = isOtp_example; # String | 2段階認証フラグ
my $position = position_example; # String | 
my $department = department_example; # String | 
my $sort = []; # array[String] | 

eval { 
    my $result = $api_instance->getUsers2(userType => $userType, userId => $userId, companyId => $companyId, pageNumber => $pageNumber, pageSize => $pageSize, firstName => $firstName, emailAddress => $emailAddress, searchText => $searchText, isOtp => $isOtp, position => $position, department => $department, sort => $sort);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getUsers2: $@\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)
userId = userId_example # String | ログインユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
pageNumber = 56 # Integer |  (optional)
pageSize = 56 # Integer |  (optional)
firstName = firstName_example # String |  (optional)
emailAddress = emailAddress_example # String |  (optional)
searchText = searchText_example # String |  (optional)
isOtp = isOtp_example # String | 2段階認証フラグ (optional)
position = position_example # String |  (optional)
department = department_example # String |  (optional)
sort =  # array[String] |  (optional)

try: 
    # 無効化済みユーザー検索
    api_response = api_instance.get_users2(userType=userType, userId=userId, companyId=companyId, pageNumber=pageNumber, pageSize=pageSize, firstName=firstName, emailAddress=emailAddress, searchText=searchText, isOtp=isOtp, position=position, department=department, sort=sort)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUsers2: %s\n" % e)

Parameters

Header parameters
Name Description
userType
String
ログインユーザーType
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
Query parameters
Name Description
page_number
Integer (int32)
page_size
Integer (int32)
first_name
String
email_address
String
search_text
String
is_otp
String
2段階認証フラグ
position
String
department
String
sort
array[String]

Responses

Status: 200 - 成功


getUsersByDepartment1

【未メンテ】部署でユーザー取得

部署でユーザー取得できるAPIです。ユーザー情報以外companysとdepartment_position_mappingがNullになっています。


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

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/user/company/{companyId}/department/{departmentId}?page_number=&page_size=&association="
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 | 
        String departmentId = departmentId_example; // String | 部署ID
        String userType = userType_example; // String | ログインユーザーType
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String association = association_example; // String | 
        try {
            UserInitialInfoPaginationSwaggerResponseDto result = apiInstance.getUsersByDepartment1(companyId, departmentId, userType, userId, companyId, pageNumber, pageSize, association);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUsersByDepartment1");
            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 | 
        String departmentId = departmentId_example; // String | 部署ID
        String userType = userType_example; // String | ログインユーザーType
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String association = association_example; // String | 
        try {
            UserInitialInfoPaginationSwaggerResponseDto result = apiInstance.getUsersByDepartment1(companyId, departmentId, userType, userId, companyId, pageNumber, pageSize, association);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUsersByDepartment1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 
String *departmentId = departmentId_example; // 部署ID
String *userType = userType_example; // ログインユーザーType (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
Integer *pageNumber = 56; //  (optional)
Integer *pageSize = 56; //  (optional)
String *association = association_example; //  (optional)

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

// 【未メンテ】部署でユーザー取得
[apiInstance getUsersByDepartment1With:companyId
    departmentId:departmentId
    userType:userType
    userId:userId
    companyId:companyId
    pageNumber:pageNumber
    pageSize:pageSize
    association:association
              completionHandler: ^(UserInitialInfoPaginationSwaggerResponseDto 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 departmentId = departmentId_example; // {{String}} 部署ID
var opts = { 
  'userType': userType_example, // {{String}} ログインユーザーType
  'userId': userId_example, // {{String}} ログインユーザーID
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'pageNumber': 56, // {{Integer}} 
  'pageSize': 56, // {{Integer}} 
  'association': association_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getUsersByDepartment1(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 getUsersByDepartment1Example
    {
        public void main()
        {

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 
            var departmentId = departmentId_example;  // String | 部署ID
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var pageNumber = 56;  // Integer |  (optional) 
            var pageSize = 56;  // Integer |  (optional) 
            var association = association_example;  // String |  (optional) 

            try
            {
                // 【未メンテ】部署でユーザー取得
                UserInitialInfoPaginationSwaggerResponseDto result = apiInstance.getUsersByDepartment1(companyId, departmentId, userType, userId, companyId, pageNumber, pageSize, association);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUsersByDepartment1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 
$departmentId = departmentId_example; // String | 部署ID
$userType = userType_example; // String | ログインユーザーType
$userId = userId_example; // String | ログインユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID
$pageNumber = 56; // Integer | 
$pageSize = 56; // Integer | 
$association = association_example; // String | 

try {
    $result = $api_instance->getUsersByDepartment1($companyId, $departmentId, $userType, $userId, $companyId, $pageNumber, $pageSize, $association);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUsersByDepartment1: ', $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 $departmentId = departmentId_example; # String | 部署ID
my $userType = userType_example; # String | ログインユーザーType
my $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $pageNumber = 56; # Integer | 
my $pageSize = 56; # Integer | 
my $association = association_example; # String | 

eval { 
    my $result = $api_instance->getUsersByDepartment1(companyId => $companyId, departmentId => $departmentId, userType => $userType, userId => $userId, companyId => $companyId, pageNumber => $pageNumber, pageSize => $pageSize, association => $association);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getUsersByDepartment1: $@\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 | 
departmentId = departmentId_example # String | 部署ID
userType = userType_example # String | ログインユーザーType (optional)
userId = userId_example # String | ログインユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
pageNumber = 56 # Integer |  (optional)
pageSize = 56 # Integer |  (optional)
association = association_example # String |  (optional)

try: 
    # 【未メンテ】部署でユーザー取得
    api_response = api_instance.get_users_by_department1(companyId, departmentId, userType=userType, userId=userId, companyId=companyId, pageNumber=pageNumber, pageSize=pageSize, association=association)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUsersByDepartment1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
Required
departmentId*
String
部署ID
Required
Header parameters
Name Description
userType
String
ログインユーザーType
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
Query parameters
Name Description
page_number
Integer (int32)
page_size
Integer (int32)
association
String

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getUsersByPositon1

【未メンテ】役職でユーザー取得

役職でユーザー取得できるAPIです.@QueryParam associationの パラメタ>> ASSOCIATED, DISSOCIATED. ユーザー情報以外companysとdepartment_position_mappingがNullになっています。


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

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/user/company/{companyId}/position/{positionId}?page_number=&page_size=&association="
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 | 
        String positionId = positionId_example; // String | 役職ID
        String userType = userType_example; // String | ログインユーザーType
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String association = association_example; // String | 
        try {
            UserInitialInfoPaginationDto result = apiInstance.getUsersByPositon1(companyId, positionId, userType, userId, companyId, pageNumber, pageSize, association);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUsersByPositon1");
            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 | 
        String positionId = positionId_example; // String | 役職ID
        String userType = userType_example; // String | ログインユーザーType
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String association = association_example; // String | 
        try {
            UserInitialInfoPaginationDto result = apiInstance.getUsersByPositon1(companyId, positionId, userType, userId, companyId, pageNumber, pageSize, association);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUsersByPositon1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 
String *positionId = positionId_example; // 役職ID
String *userType = userType_example; // ログインユーザーType (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
Integer *pageNumber = 56; //  (optional)
Integer *pageSize = 56; //  (optional)
String *association = association_example; //  (optional)

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

// 【未メンテ】役職でユーザー取得
[apiInstance getUsersByPositon1With:companyId
    positionId:positionId
    userType:userType
    userId:userId
    companyId:companyId
    pageNumber:pageNumber
    pageSize:pageSize
    association:association
              completionHandler: ^(UserInitialInfoPaginationDto 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 positionId = positionId_example; // {{String}} 役職ID
var opts = { 
  'userType': userType_example, // {{String}} ログインユーザーType
  'userId': userId_example, // {{String}} ログインユーザーID
  'companyId': companyId_example, // {{String}} ログインユーザーの会社ID
  'pageNumber': 56, // {{Integer}} 
  'pageSize': 56, // {{Integer}} 
  'association': association_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getUsersByPositon1(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 getUsersByPositon1Example
    {
        public void main()
        {

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 
            var positionId = positionId_example;  // String | 役職ID
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var pageNumber = 56;  // Integer |  (optional) 
            var pageSize = 56;  // Integer |  (optional) 
            var association = association_example;  // String |  (optional) 

            try
            {
                // 【未メンテ】役職でユーザー取得
                UserInitialInfoPaginationDto result = apiInstance.getUsersByPositon1(companyId, positionId, userType, userId, companyId, pageNumber, pageSize, association);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUsersByPositon1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 
$positionId = positionId_example; // String | 役職ID
$userType = userType_example; // String | ログインユーザーType
$userId = userId_example; // String | ログインユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID
$pageNumber = 56; // Integer | 
$pageSize = 56; // Integer | 
$association = association_example; // String | 

try {
    $result = $api_instance->getUsersByPositon1($companyId, $positionId, $userType, $userId, $companyId, $pageNumber, $pageSize, $association);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUsersByPositon1: ', $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 $positionId = positionId_example; # String | 役職ID
my $userType = userType_example; # String | ログインユーザーType
my $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $pageNumber = 56; # Integer | 
my $pageSize = 56; # Integer | 
my $association = association_example; # String | 

eval { 
    my $result = $api_instance->getUsersByPositon1(companyId => $companyId, positionId => $positionId, userType => $userType, userId => $userId, companyId => $companyId, pageNumber => $pageNumber, pageSize => $pageSize, association => $association);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getUsersByPositon1: $@\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 | 
positionId = positionId_example # String | 役職ID
userType = userType_example # String | ログインユーザーType (optional)
userId = userId_example # String | ログインユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
pageNumber = 56 # Integer |  (optional)
pageSize = 56 # Integer |  (optional)
association = association_example # String |  (optional)

try: 
    # 【未メンテ】役職でユーザー取得
    api_response = api_instance.get_users_by_positon1(companyId, positionId, userType=userType, userId=userId, companyId=companyId, pageNumber=pageNumber, pageSize=pageSize, association=association)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUsersByPositon1: %s\n" % e)

Parameters

Path parameters
Name Description
companyId*
String
Required
positionId*
String
役職ID
Required
Header parameters
Name Description
userType
String
ログインユーザーType
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
Query parameters
Name Description
page_number
Integer (int32)
page_size
Integer (int32)
association
String

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


getUsersRelatedToOneCompany1

企業に紐づくユーザーを一括で取得するAPI

企業に紐づくユーザー,コンサルタントを含め一括で取得できるAPIです。


/api/v1/users/all

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/users/all?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 {
            array[UserDto] result = apiInstance.getUsersRelatedToOneCompany1(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUsersRelatedToOneCompany1");
            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 {
            array[UserDto] result = apiInstance.getUsersRelatedToOneCompany1(companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#getUsersRelatedToOneCompany1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 企業ID (optional)

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

// 企業に紐づくユーザーを一括で取得するAPI
[apiInstance getUsersRelatedToOneCompany1With:companyId
              completionHandler: ^(array[UserDto] 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.getUsersRelatedToOneCompany1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

            try
            {
                // 企業に紐づくユーザーを一括で取得するAPI
                array[UserDto] result = apiInstance.getUsersRelatedToOneCompany1(companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.getUsersRelatedToOneCompany1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

try {
    $result = $api_instance->getUsersRelatedToOneCompany1($companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->getUsersRelatedToOneCompany1: ', $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->getUsersRelatedToOneCompany1(companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->getUsersRelatedToOneCompany1: $@\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: 
    # 企業に紐づくユーザーを一括で取得するAPI
    api_response = api_instance.get_users_related_to_one_company1(companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->getUsersRelatedToOneCompany1: %s\n" % e)

Parameters

Query parameters
Name Description
companyId
String
企業ID

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


importPrivateBusinessPartners1

IPC利用なし取引先CSVインポート

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


/api/v1/private-business-partners/import

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: multipart/form-data"\
"http://HOSTNAME/api/v1/private-business-partners/import"
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[] | 
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            PrivateBusinessPartnerCsvImportDTO result = apiInstance.importPrivateBusinessPartners1(file, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#importPrivateBusinessPartners1");
            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[] | 
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            PrivateBusinessPartnerCsvImportDTO result = apiInstance.importPrivateBusinessPartners1(file, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#importPrivateBusinessPartners1");
            e.printStackTrace();
        }
    }
}
byte[] *file = file_example; //  (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)

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

// IPC利用なし取引先CSVインポート
[apiInstance importPrivateBusinessPartners1With:file
    companyId:companyId
              completionHandler: ^(PrivateBusinessPartnerCsvImportDTO 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[]}} 
  '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.importPrivateBusinessPartners1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

            try
            {
                // IPC利用なし取引先CSVインポート
                PrivateBusinessPartnerCsvImportDTO result = apiInstance.importPrivateBusinessPartners1(file, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.importPrivateBusinessPartners1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

try {
    $result = $api_instance->importPrivateBusinessPartners1($file, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->importPrivateBusinessPartners1: ', $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[] | 
my $companyId = companyId_example; # String | ログインユーザーの会社ID

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

try: 
    # IPC利用なし取引先CSVインポート
    api_response = api_instance.import_private_business_partners1(file=file, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->importPrivateBusinessPartners1: %s\n" % e)

Parameters

Header parameters
Name Description
companyId
String
ログインユーザーの会社ID
Form parameters
Name Description
file
byte[] (binary)

Responses

Status: 200 - 成功


invoiceKohyo1

公表情報取得

公表情報取得できるAPIです。<br>fetch=trueの場合は、国税庁のAPIを叩き最新の公表情報を取得してDBに保存します。<br>fetch=falseの場合は、DBにキャッシュしている公表情報を取得します。


/api/v1/invoice-kohyo/{registrated_number}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/invoice-kohyo/{registrated_number}?fetch="
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 registratedNumber = registratedNumber_example; // String | 適格請求書発行事業者登録番号
        Boolean fetch = true; // Boolean | trueの場合は、国税庁APIから取得
falseの場合は、キャッシュから取得 try { invoiceKohyoDTO result = apiInstance.invoiceKohyo1(userId, userType, companyId, registratedNumber, fetch); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling APIsApi#invoiceKohyo1"); 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 registratedNumber = registratedNumber_example; // String | 適格請求書発行事業者登録番号
        Boolean fetch = true; // Boolean | trueの場合は、国税庁APIから取得
falseの場合は、キャッシュから取得 try { invoiceKohyoDTO result = apiInstance.invoiceKohyo1(userId, userType, companyId, registratedNumber, fetch); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling APIsApi#invoiceKohyo1"); e.printStackTrace(); } } }
String *userId = userId_example; // ログインユーザーID
String *userType = userType_example; // ログインユーザーType
String *companyId = companyId_example; // 企業ID
String *registratedNumber = registratedNumber_example; // 適格請求書発行事業者登録番号
Boolean *fetch = true; // trueの場合は、国税庁APIから取得
falseの場合は、キャッシュから取得 (optional) APIsApi *apiInstance = [[APIsApi alloc] init]; // 公表情報取得 [apiInstance invoiceKohyo1With:userId userType:userType companyId:companyId registratedNumber:registratedNumber fetch:fetch completionHandler: ^(invoiceKohyoDTO 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}} ログインユーザーType
var companyId = companyId_example; // {{String}} 企業ID
var registratedNumber = registratedNumber_example; // {{String}} 適格請求書発行事業者登録番号
var opts = { 
  'fetch': true // {{Boolean}} trueの場合は、国税庁APIから取得
falseの場合は、キャッシュから取得 }; var callback = function(error, data, response) { if (error) { console.error(error); } else { console.log('API called successfully. Returned data: ' + data); } }; api.invoiceKohyo1(userId, userType, companyId, registratedNumber, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var userId = userId_example;  // String | ログインユーザーID
            var userType = userType_example;  // String | ログインユーザーType
            var companyId = companyId_example;  // String | 企業ID
            var registratedNumber = registratedNumber_example;  // String | 適格請求書発行事業者登録番号
            var fetch = true;  // Boolean | trueの場合は、国税庁APIから取得
falseの場合は、キャッシュから取得 (optional) try { // 公表情報取得 invoiceKohyoDTO result = apiInstance.invoiceKohyo1(userId, userType, companyId, registratedNumber, fetch); Debug.WriteLine(result); } catch (Exception e) { Debug.Print("Exception when calling APIsApi.invoiceKohyo1: " + 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
$registratedNumber = registratedNumber_example; // String | 適格請求書発行事業者登録番号
$fetch = true; // Boolean | trueの場合は、国税庁APIから取得
falseの場合は、キャッシュから取得 try { $result = $api_instance->invoiceKohyo1($userId, $userType, $companyId, $registratedNumber, $fetch); print_r($result); } catch (Exception $e) { echo 'Exception when calling APIsApi->invoiceKohyo1: ', $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 $registratedNumber = registratedNumber_example; # String | 適格請求書発行事業者登録番号
my $fetch = true; # Boolean | trueの場合は、国税庁APIから取得
falseの場合は、キャッシュから取得 eval { my $result = $api_instance->invoiceKohyo1(userId => $userId, userType => $userType, companyId => $companyId, registratedNumber => $registratedNumber, fetch => $fetch); print Dumper($result); }; if ($@) { warn "Exception when calling APIsApi->invoiceKohyo1: $@\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 | ログインユーザーType
companyId = companyId_example # String | 企業ID
registratedNumber = registratedNumber_example # String | 適格請求書発行事業者登録番号
fetch = true # Boolean | trueの場合は、国税庁APIから取得
falseの場合は、キャッシュから取得 (optional) try: # 公表情報取得 api_response = api_instance.invoice_kohyo1(userId, userType, companyId, registratedNumber, fetch=fetch) pprint(api_response) except ApiException as e: print("Exception when calling APIsApi->invoiceKohyo1: %s\n" % e)

Parameters

Path parameters
Name Description
registrated_number*
String
適格請求書発行事業者登録番号
Required
Header parameters
Name Description
userId*
String
ログインユーザーID
Required
userType*
String
ログインユーザーType
Required
companyId*
String
企業ID
Required
Query parameters
Name Description
fetch
Boolean
trueの場合は、国税庁APIから取得<br>falseの場合は、キャッシュから取得

Responses

Status: 200 - 成功

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

Status: 404 - 見つかりません

Status: 500 - 内部エラー 例)国税庁APIと接続できません


manual1

操作マニュアル取得

操作マニュアル取得できるAPIです


/api/v1/manual-list

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/manual-list"
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
        array[String] companyId = ; // array[String] | 企業ID
        try {
            ManualResponseDto result = apiInstance.manual1(userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#manual1");
            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
        array[String] companyId = ; // array[String] | 企業ID
        try {
            ManualResponseDto result = apiInstance.manual1(userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#manual1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID
String *userType = userType_example; // ログインユーザーType
array[String] *companyId = ; // 企業ID

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

// 操作マニュアル取得
[apiInstance manual1With:userId
    userType:userType
    companyId:companyId
              completionHandler: ^(ManualResponseDto 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}} ログインユーザーType
var companyId = ; // {{array[String]}} 企業ID

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

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

            var apiInstance = new APIsApi();
            var userId = userId_example;  // String | ログインユーザーID
            var userType = userType_example;  // String | ログインユーザーType
            var companyId = new array[String](); // array[String] | 企業ID

            try
            {
                // 操作マニュアル取得
                ManualResponseDto result = apiInstance.manual1(userId, userType, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.manual1: " + 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 = ; // array[String] | 企業ID

try {
    $result = $api_instance->manual1($userId, $userType, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->manual1: ', $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 = []; # array[String] | 企業ID

eval { 
    my $result = $api_instance->manual1(userId => $userId, userType => $userType, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->manual1: $@\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 | ログインユーザーType
companyId =  # array[String] | 企業ID

try: 
    # 操作マニュアル取得
    api_response = api_instance.manual1(userId, userType, companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->manual1: %s\n" % e)

Parameters

Header parameters
Name Description
userId*
String
ログインユーザーID
Required
userType*
String
ログインユーザーType
Required
companyId*
array[String]
企業ID
Required

Responses

Status: 200 - 成功

Status: 400 - BAD_REQUEST

Status: 404 - ファイルが見つかりませんでした


modifyBankAccount1

【未メンテ】口座編集

口座を編集する


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

Usage and SDK Samples

curl -X PUT\
-H "Accept: application/json"\
-H "Content-Type: 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
        BankAccountRequest body = ; // BankAccountRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.modifyBankAccount1(companyId, id, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#modifyBankAccount1");
            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
        BankAccountRequest body = ; // BankAccountRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        try {
            StatusResponseDTO result = apiInstance.modifyBankAccount1(companyId, id, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#modifyBankAccount1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 企業ID
String *id = id_example; // 口座ID
BankAccountRequest *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 modifyBankAccount1With:companyId
    id:id
    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 id = id_example; // {{String}} 口座ID
var opts = { 
  'body':  // {{BankAccountRequest}} 
  '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.modifyBankAccount1(companyIdid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 企業ID
            var id = id_example;  // String | 口座ID
            var body = new BankAccountRequest(); // BankAccountRequest |  (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.modifyBankAccount1(companyId, id, body, userId, userType, companyId2);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.modifyBankAccount1: " + 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
$body = ; // BankAccountRequest | 
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId2 = companyId_example; // String | ログインユーザーの会社ID

try {
    $result = $api_instance->modifyBankAccount1($companyId, $id, $body, $userId, $userType, $companyId2);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->modifyBankAccount1: ', $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 $body = WWW::SwaggerClient::Object::BankAccountRequest->new(); # BankAccountRequest | 
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId2 = companyId_example; # String | ログインユーザーの会社ID

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

try: 
    # 【未メンテ】口座編集
    api_response = api_instance.modify_bank_account1(companyId, id, body=body, userId=userId, userType=userType, companyId2=companyId2)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->modifyBankAccount1: %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
Body parameters
Name Description
body

Responses

Status: 200 -


modifyPartnerOnProsignUser1

【未メンテ】Prosign利用取引先情報更新

Prosign利用ありの取引先情報のうち、有効/無効および会計連携コードを更新します


/api/v1/partner/{id}

Usage and SDK Samples

curl -X PUT\
-H "Accept: application/json"\
-H "Content-Type: 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
        ModifyPartnerOnProsignUserRequest body = ; // ModifyPartnerOnProsignUserRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            ModifyPartnerOnProsignUserResponse result = apiInstance.modifyPartnerOnProsignUser1(id, body, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#modifyPartnerOnProsignUser1");
            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
        ModifyPartnerOnProsignUserRequest body = ; // ModifyPartnerOnProsignUserRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            ModifyPartnerOnProsignUserResponse result = apiInstance.modifyPartnerOnProsignUser1(id, body, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#modifyPartnerOnProsignUser1");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // Prosign利用あり取引先の会社ID
ModifyPartnerOnProsignUserRequest *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 modifyPartnerOnProsignUser1With:id
    body:body
    userId:userId
    userType:userType
    companyId:companyId
              completionHandler: ^(ModifyPartnerOnProsignUserResponse 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 = { 
  'body':  // {{ModifyPartnerOnProsignUserRequest}} 
  '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.modifyPartnerOnProsignUser1(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

            try
            {
                // 【未メンテ】Prosign利用取引先情報更新
                ModifyPartnerOnProsignUserResponse result = apiInstance.modifyPartnerOnProsignUser1(id, body, userId, userType, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.modifyPartnerOnProsignUser1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

try {
    $result = $api_instance->modifyPartnerOnProsignUser1($id, $body, $userId, $userType, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->modifyPartnerOnProsignUser1: ', $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 $body = WWW::SwaggerClient::Object::ModifyPartnerOnProsignUserRequest->new(); # ModifyPartnerOnProsignUserRequest | 
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | ログインユーザーの会社ID

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

try: 
    # 【未メンテ】Prosign利用取引先情報更新
    api_response = api_instance.modify_partner_on_prosign_user1(id, body=body, userId=userId, userType=userType, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->modifyPartnerOnProsignUser1: %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
Body parameters
Name Description
body

Responses

Status: 200 - 成功

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


modifyPrivatePartner1

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

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


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

Usage and SDK Samples

curl -X PUT\
-H "Content-Type: 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
        PrivatePartnerRequest body = ; // PrivatePartnerRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            apiInstance.modifyPrivatePartner1(id, body, userId, userType, companyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#modifyPrivatePartner1");
            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
        PrivatePartnerRequest body = ; // PrivatePartnerRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            apiInstance.modifyPrivatePartner1(id, body, userId, userType, companyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#modifyPrivatePartner1");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // Prosign利用なし取引先の企業ID
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 modifyPrivatePartner1With:id
    body: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 id = id_example; // {{String}} Prosign利用なし取引先の企業ID
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.modifyPrivatePartner1(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var id = id_example;  // String | Prosign利用なし取引先の企業ID
            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.modifyPrivatePartner1(id, body, userId, userType, companyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.modifyPrivatePartner1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

try {
    $api_instance->modifyPrivatePartner1($id, $body, $userId, $userType, $companyId);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->modifyPrivatePartner1: ', $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 $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->modifyPrivatePartner1(id => $id, body => $body, userId => $userId, userType => $userType, companyId => $companyId);
};
if ($@) {
    warn "Exception when calling APIsApi->modifyPrivatePartner1: $@\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
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.modify_private_partner1(id, body=body, userId=userId, userType=userType, companyId=companyId)
except ApiException as e:
    print("Exception when calling APIsApi->modifyPrivatePartner1: %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
Body parameters
Name Description
body

Responses

Status: default - successful operation


modifyTrustedCompany1

【未メンテ】Prored推奨企業ステータス更新

Prored推奨企業のステータスを更新する


/api/v1/trusted/{id}

Usage and SDK Samples

curl -X PUT\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/trusted/{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 | Prored推奨企業の企業ID
        ModifyTrustedCompanyRequest body = ; // ModifyTrustedCompanyRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            apiInstance.modifyTrustedCompany1(id, body, userId, userType, companyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#modifyTrustedCompany1");
            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 | Prored推奨企業の企業ID
        ModifyTrustedCompanyRequest body = ; // ModifyTrustedCompanyRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            apiInstance.modifyTrustedCompany1(id, body, userId, userType, companyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#modifyTrustedCompany1");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // Prored推奨企業の企業ID
ModifyTrustedCompanyRequest *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];

// 【未メンテ】Prored推奨企業ステータス更新
[apiInstance modifyTrustedCompany1With:id
    body: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 id = id_example; // {{String}} Prored推奨企業の企業ID
var opts = { 
  'body':  // {{ModifyTrustedCompanyRequest}} 
  '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.modifyTrustedCompany1(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var id = id_example;  // String | Prored推奨企業の企業ID
            var body = new ModifyTrustedCompanyRequest(); // ModifyTrustedCompanyRequest |  (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var userType = userType_example;  // String | ログインユーザーType (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】Prored推奨企業ステータス更新
                apiInstance.modifyTrustedCompany1(id, body, userId, userType, companyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.modifyTrustedCompany1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$id = id_example; // String | Prored推奨企業の企業ID
$body = ; // ModifyTrustedCompanyRequest | 
$userId = userId_example; // String | ログインユーザーID
$userType = userType_example; // String | ログインユーザーType
$companyId = companyId_example; // String | ログインユーザーの会社ID

try {
    $api_instance->modifyTrustedCompany1($id, $body, $userId, $userType, $companyId);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->modifyTrustedCompany1: ', $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 | Prored推奨企業の企業ID
my $body = WWW::SwaggerClient::Object::ModifyTrustedCompanyRequest->new(); # ModifyTrustedCompanyRequest | 
my $userId = userId_example; # String | ログインユーザーID
my $userType = userType_example; # String | ログインユーザーType
my $companyId = companyId_example; # String | ログインユーザーの会社ID

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

try: 
    # 【未メンテ】Prored推奨企業ステータス更新
    api_instance.modify_trusted_company1(id, body=body, userId=userId, userType=userType, companyId=companyId)
except ApiException as e:
    print("Exception when calling APIsApi->modifyTrustedCompany1: %s\n" % e)

Parameters

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

Responses

Status: default - successful operation


partnerExpense1

【未メンテ】取引先費目取得

取引先費目のIDと最新の更新日を返却します


/api/v1/company/{partnerCompanyId}/expenses

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/company/{partnerCompanyId}/expenses"
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 partnerCompanyId = partnerCompanyId_example; // String | 取引先の会社ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            array[Object] result = apiInstance.partnerExpense1(partnerCompanyId, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#partnerExpense1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String partnerCompanyId = partnerCompanyId_example; // String | 取引先の会社ID
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            array[Object] result = apiInstance.partnerExpense1(partnerCompanyId, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#partnerExpense1");
            e.printStackTrace();
        }
    }
}
String *partnerCompanyId = partnerCompanyId_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 partnerExpense1With:partnerCompanyId
    userId:userId
    userType:userType
    companyId:companyId
              completionHandler: ^(array[Object] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var partnerCompanyId = partnerCompanyId_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.partnerExpense1(partnerCompanyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var partnerCompanyId = partnerCompanyId_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
            {
                // 【未メンテ】取引先費目取得
                array[Object] result = apiInstance.partnerExpense1(partnerCompanyId, userId, userType, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.partnerExpense1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $partnerCompanyId = partnerCompanyId_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->partnerExpense1(partnerCompanyId => $partnerCompanyId, userId => $userId, userType => $userType, companyId => $companyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->partnerExpense1: $@\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()
partnerCompanyId = partnerCompanyId_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.partner_expense1(partnerCompanyId, userId=userId, userType=userType, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->partnerExpense1: %s\n" % e)

Parameters

Path parameters
Name Description
partnerCompanyId*
String
取引先の会社ID
Required
Header parameters
Name Description
userId
String
ログインユーザーID
userType
String
ログインユーザーType
companyId
String
ログインユーザーの会社ID

Responses

Status: 200 - 成功

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


savePartnerExpense1

【未メンテ】取引先費目保存

取引先費目を保存します


/api/v1/company/{partnerCompanyId}/expenses

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/company/{partnerCompanyId}/expenses"
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 partnerCompanyId = partnerCompanyId_example; // String | 取引先の会社ID
        PartnerExpenseTo body = ; // PartnerExpenseTo | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            array[Object] result = apiInstance.savePartnerExpense1(partnerCompanyId, body, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#savePartnerExpense1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String partnerCompanyId = partnerCompanyId_example; // String | 取引先の会社ID
        PartnerExpenseTo body = ; // PartnerExpenseTo | 
        String userId = userId_example; // String | ログインユーザーID
        String userType = userType_example; // String | ログインユーザーType
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            array[Object] result = apiInstance.savePartnerExpense1(partnerCompanyId, body, userId, userType, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#savePartnerExpense1");
            e.printStackTrace();
        }
    }
}
String *partnerCompanyId = partnerCompanyId_example; // 取引先の会社ID
PartnerExpenseTo *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 savePartnerExpense1With:partnerCompanyId
    body:body
    userId:userId
    userType:userType
    companyId:companyId
              completionHandler: ^(array[Object] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var partnerCompanyId = partnerCompanyId_example; // {{String}} 取引先の会社ID
var opts = { 
  'body':  // {{PartnerExpenseTo}} 
  '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.savePartnerExpense1(partnerCompanyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

            try
            {
                // 【未メンテ】取引先費目保存
                array[Object] result = apiInstance.savePartnerExpense1(partnerCompanyId, body, userId, userType, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.savePartnerExpense1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

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

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

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

try: 
    # 【未メンテ】取引先費目保存
    api_response = api_instance.save_partner_expense1(partnerCompanyId, body=body, userId=userId, userType=userType, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->savePartnerExpense1: %s\n" % e)

Parameters

Path parameters
Name Description
partnerCompanyId*
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: 500 - 内部サーバエラー


searchCompany1

【未メンテ】企業名/企業タイプで企業検索

企業名と企業タイプによる検索APIです.見積もり用APIです。company_typeが BUYER の時 BUYER と BUYER_SUPPLIER タイプの企業が返されます。company_typeが SUPPLIER の時 SUPPLIER と BUYER_SUPPLIER タイプの企業が返されます。


/api/v1/api_search_companies

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/api_search_companies?page_number=&page_size=&company_type=&company_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 companyType = companyType_example; // String | 
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String companyName = companyName_example; // String | 
        try {
            CompanyViewResponseDto result = apiInstance.searchCompany1(companyType, pageNumber, pageSize, companyName);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#searchCompany1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String companyType = companyType_example; // String | 
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        String companyName = companyName_example; // String | 
        try {
            CompanyViewResponseDto result = apiInstance.searchCompany1(companyType, pageNumber, pageSize, companyName);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#searchCompany1");
            e.printStackTrace();
        }
    }
}
String *companyType = companyType_example; // 
Integer *pageNumber = 56; //  (optional)
Integer *pageSize = 56; //  (optional)
String *companyName = companyName_example; //  (optional)

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

// 【未メンテ】企業名/企業タイプで企業検索
[apiInstance searchCompany1With:companyType
    pageNumber:pageNumber
    pageSize:pageSize
    companyName:companyName
              completionHandler: ^(CompanyViewResponseDto output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.APIsApi()
var companyType = companyType_example; // {{String}} 
var opts = { 
  'pageNumber': 56, // {{Integer}} 
  'pageSize': 56, // {{Integer}} 
  'companyName': companyName_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.searchCompany1(companyType, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyType = companyType_example;  // String | 
            var pageNumber = 56;  // Integer |  (optional) 
            var pageSize = 56;  // Integer |  (optional) 
            var companyName = companyName_example;  // String |  (optional) 

            try
            {
                // 【未メンテ】企業名/企業タイプで企業検索
                CompanyViewResponseDto result = apiInstance.searchCompany1(companyType, pageNumber, pageSize, companyName);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.searchCompany1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyType = companyType_example; // String | 
$pageNumber = 56; // Integer | 
$pageSize = 56; // Integer | 
$companyName = companyName_example; // String | 

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

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $companyType = companyType_example; # String | 
my $pageNumber = 56; # Integer | 
my $pageSize = 56; # Integer | 
my $companyName = companyName_example; # String | 

eval { 
    my $result = $api_instance->searchCompany1(companyType => $companyType, pageNumber => $pageNumber, pageSize => $pageSize, companyName => $companyName);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->searchCompany1: $@\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()
companyType = companyType_example # String | 
pageNumber = 56 # Integer |  (optional)
pageSize = 56 # Integer |  (optional)
companyName = companyName_example # String |  (optional)

try: 
    # 【未メンテ】企業名/企業タイプで企業検索
    api_response = api_instance.search_company1(companyType, pageNumber=pageNumber, pageSize=pageSize, companyName=companyName)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->searchCompany1: %s\n" % e)

Parameters

Query parameters
Name Description
page_number
Integer (int32)
page_size
Integer (int32)
company_type*
String
Required
company_name
String

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


searchUsers1

部署名,ユーザー名でユーザー検索

部署名、ユーザー名で企業内のユーザー検索できるAPIです。ユーザーに部署が追加されていない場合検索が不可能です。


/api/v1/api_search_users

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/api_search_users?company_id=&first_name_or_dept_name=&page_number=&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 companyId = companyId_example; // String | 
        String firstNameOrDeptName = firstNameOrDeptName_example; // String | 
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        try {
            UserViewDtoSwaggerResponseDto result = apiInstance.searchUsers1(companyId, firstNameOrDeptName, pageNumber, pageSize);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#searchUsers1");
            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 | 
        String firstNameOrDeptName = firstNameOrDeptName_example; // String | 
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        try {
            UserViewDtoSwaggerResponseDto result = apiInstance.searchUsers1(companyId, firstNameOrDeptName, pageNumber, pageSize);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#searchUsers1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 
String *firstNameOrDeptName = firstNameOrDeptName_example; //  (optional)
Integer *pageNumber = 56; //  (optional)
Integer *pageSize = 56; //  (optional)

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

// 部署名,ユーザー名でユーザー検索
[apiInstance searchUsers1With:companyId
    firstNameOrDeptName:firstNameOrDeptName
    pageNumber:pageNumber
    pageSize:pageSize
              completionHandler: ^(UserViewDtoSwaggerResponseDto 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 = { 
  'firstNameOrDeptName': firstNameOrDeptName_example, // {{String}} 
  'pageNumber': 56, // {{Integer}} 
  'pageSize': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.searchUsers1(companyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var companyId = companyId_example;  // String | 
            var firstNameOrDeptName = firstNameOrDeptName_example;  // String |  (optional) 
            var pageNumber = 56;  // Integer |  (optional) 
            var pageSize = 56;  // Integer |  (optional) 

            try
            {
                // 部署名,ユーザー名でユーザー検索
                UserViewDtoSwaggerResponseDto result = apiInstance.searchUsers1(companyId, firstNameOrDeptName, pageNumber, pageSize);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.searchUsers1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$companyId = companyId_example; // String | 
$firstNameOrDeptName = firstNameOrDeptName_example; // String | 
$pageNumber = 56; // Integer | 
$pageSize = 56; // Integer | 

try {
    $result = $api_instance->searchUsers1($companyId, $firstNameOrDeptName, $pageNumber, $pageSize);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->searchUsers1: ', $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 $firstNameOrDeptName = firstNameOrDeptName_example; # String | 
my $pageNumber = 56; # Integer | 
my $pageSize = 56; # Integer | 

eval { 
    my $result = $api_instance->searchUsers1(companyId => $companyId, firstNameOrDeptName => $firstNameOrDeptName, pageNumber => $pageNumber, pageSize => $pageSize);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->searchUsers1: $@\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 | 
firstNameOrDeptName = firstNameOrDeptName_example # String |  (optional)
pageNumber = 56 # Integer |  (optional)
pageSize = 56 # Integer |  (optional)

try: 
    # 部署名,ユーザー名でユーザー検索
    api_response = api_instance.search_users1(companyId, firstNameOrDeptName=firstNameOrDeptName, pageNumber=pageNumber, pageSize=pageSize)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->searchUsers1: %s\n" % e)

Parameters

Query parameters
Name Description
company_id*
String
Required
first_name_or_dept_name
String
page_number
Integer (int32)
page_size
Integer (int32)

Responses

Status: 200 - 成功

Status: 404 - 見つかりません


updateAllowedDomains1

【未メンテ】企業許可ドメイン更新


/api/v1/company/{id}/allowed-domains

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/company/{id}/allowed-domains"
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 id = id_example; // String | 企業ID
        UpdateAllowedDomainsRequest body = ; // UpdateAllowedDomainsRequest | 
        try {
            StatusResponseDTO result = apiInstance.updateAllowedDomains1(userid, usertype, companyid, id, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#updateAllowedDomains1");
            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 id = id_example; // String | 企業ID
        UpdateAllowedDomainsRequest body = ; // UpdateAllowedDomainsRequest | 
        try {
            StatusResponseDTO result = apiInstance.updateAllowedDomains1(userid, usertype, companyid, id, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#updateAllowedDomains1");
            e.printStackTrace();
        }
    }
}
String *userid = userid_example; // ログインユーザーID
String *usertype = usertype_example; // ログインユーザータイプ
String *companyid = companyid_example; // ログインユーザー所属企業ID
String *id = id_example; // 企業ID
UpdateAllowedDomainsRequest *body = ; //  (optional)

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

// 【未メンテ】企業許可ドメイン更新
[apiInstance updateAllowedDomains1With:userid
    usertype:usertype
    companyid:companyid
    id:id
    body:body
              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 userid = userid_example; // {{String}} ログインユーザーID
var usertype = usertype_example; // {{String}} ログインユーザータイプ
var companyid = companyid_example; // {{String}} ログインユーザー所属企業ID
var id = id_example; // {{String}} 企業ID
var opts = { 
  'body':  // {{UpdateAllowedDomainsRequest}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.updateAllowedDomains1(useridusertypecompanyidid, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class updateAllowedDomains1Example
    {
        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 id = id_example;  // String | 企業ID
            var body = new UpdateAllowedDomainsRequest(); // UpdateAllowedDomainsRequest |  (optional) 

            try
            {
                // 【未メンテ】企業許可ドメイン更新
                StatusResponseDTO result = apiInstance.updateAllowedDomains1(userid, usertype, companyid, id, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.updateAllowedDomains1: " + 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
$id = id_example; // String | 企業ID
$body = ; // UpdateAllowedDomainsRequest | 

try {
    $result = $api_instance->updateAllowedDomains1($userid, $usertype, $companyid, $id, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->updateAllowedDomains1: ', $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 $id = id_example; # String | 企業ID
my $body = WWW::SwaggerClient::Object::UpdateAllowedDomainsRequest->new(); # UpdateAllowedDomainsRequest | 

eval { 
    my $result = $api_instance->updateAllowedDomains1(userid => $userid, usertype => $usertype, companyid => $companyid, id => $id, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->updateAllowedDomains1: $@\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
id = id_example # String | 企業ID
body =  # UpdateAllowedDomainsRequest |  (optional)

try: 
    # 【未メンテ】企業許可ドメイン更新
    api_response = api_instance.update_allowed_domains1(userid, usertype, companyid, id, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->updateAllowedDomains1: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
企業ID
Required
Header parameters
Name Description
userid*
String
ログインユーザーID
Required
usertype*
String
ログインユーザータイプ
Required
companyid*
String
ログインユーザー所属企業ID
Required
Body parameters
Name Description
body

Responses

Status: 200 -


updateCompany1

【未メンテ】企業更新

企業更新できるAPIです


/api/v1/update/company/{companyId}

Usage and SDK Samples

curl -X PUT\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/update/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();
        CompanyTo body = ; // CompanyTo | 
        String companyId = companyId_example; // String | 更新する企業のID
        String userId = userId_example; // String | ログインユーザーID
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        try {
            StatusResponseDTO result = apiInstance.updateCompany1(body, companyId, userId, companyId2, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#updateCompany1");
            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 companyId = companyId_example; // String | 更新する企業のID
        String userId = userId_example; // String | ログインユーザーID
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        try {
            StatusResponseDTO result = apiInstance.updateCompany1(body, companyId, userId, companyId2, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#updateCompany1");
            e.printStackTrace();
        }
    }
}
CompanyTo *body = ; // 
String *companyId = companyId_example; // 更新する企業のID
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId2 = companyId_example; // ログインユーザーの会社ID (optional)
String *userType = userType_example; // ログインユーザーType (optional)

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

// 【未メンテ】企業更新
[apiInstance updateCompany1With:body
    companyId:companyId
    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 body = ; // {{CompanyTo}} 
var companyId = companyId_example; // {{String}} 更新する企業のID
var opts = { 
  '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.updateCompany1(bodycompanyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var body = new CompanyTo(); // CompanyTo | 
            var companyId = companyId_example;  // String | 更新する企業のID
            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.updateCompany1(body, companyId, userId, companyId2, userType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.updateCompany1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

try {
    $result = $api_instance->updateCompany1($body, $companyId, $userId, $companyId2, $userType);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->updateCompany1: ', $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 $companyId = companyId_example; # String | 更新する企業のID
my $userId = userId_example; # String | ログインユーザーID
my $companyId2 = companyId_example; # String | ログインユーザーの会社ID
my $userType = userType_example; # String | ログインユーザーType

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

try: 
    # 【未メンテ】企業更新
    api_response = api_instance.update_company1(body, companyId, userId=userId, companyId2=companyId2, userType=userType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->updateCompany1: %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 - 見つかりません


updateDepartment1

【未メンテ】部署更新

部署更新APIです


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

Usage and SDK Samples

curl -X PUT\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/update/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 departmentId = departmentId_example; // String | 更新する部署のID
        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.updateDepartment1(departmentId, companyId, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#updateDepartment1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String departmentId = departmentId_example; // String | 更新する部署のID
        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.updateDepartment1(departmentId, companyId, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#updateDepartment1");
            e.printStackTrace();
        }
    }
}
String *departmentId = departmentId_example; // 更新する部署のID
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 updateDepartment1With:departmentId
    companyId: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 departmentId = departmentId_example; // {{String}} 更新する部署のID
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.updateDepartment1(departmentIdcompanyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var departmentId = departmentId_example;  // String | 更新する部署のID
            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.updateDepartment1(departmentId, companyId, body, userId, userType, companyId2);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.updateDepartment1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$departmentId = departmentId_example; // String | 更新する部署のID
$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->updateDepartment1($departmentId, $companyId, $body, $userId, $userType, $companyId2);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->updateDepartment1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $departmentId = departmentId_example; # String | 更新する部署のID
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->updateDepartment1(departmentId => $departmentId, companyId => $companyId, body => $body, userId => $userId, userType => $userType, companyId2 => $companyId2);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->updateDepartment1: $@\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()
departmentId = departmentId_example # String | 更新する部署のID
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.update_department1(departmentId, companyId, body=body, userId=userId, userType=userType, companyId2=companyId2)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->updateDepartment1: %s\n" % e)

Parameters

Path parameters
Name Description
departmentId*
String
更新する部署のID
Required
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 - 見つかりません


updatePosition1

【未メンテ】役職更新

役職更新APIです


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

Usage and SDK Samples

curl -X PUT\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/update/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 positionId = positionId_example; // String | 更新する役職のID
        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.updatePosition1(positionId, companyId, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#updatePosition1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

    public static void main(String[] args) {
        APIsApi apiInstance = new APIsApi();
        String positionId = positionId_example; // String | 更新する役職のID
        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.updatePosition1(positionId, companyId, body, userId, userType, companyId2);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#updatePosition1");
            e.printStackTrace();
        }
    }
}
String *positionId = positionId_example; // 更新する役職のID
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 updatePosition1With:positionId
    companyId: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 positionId = positionId_example; // {{String}} 更新する役職のID
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.updatePosition1(positionIdcompanyId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var positionId = positionId_example;  // String | 更新する役職のID
            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.updatePosition1(positionId, companyId, body, userId, userType, companyId2);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.updatePosition1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$positionId = positionId_example; // String | 更新する役職のID
$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->updatePosition1($positionId, $companyId, $body, $userId, $userType, $companyId2);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->updatePosition1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::APIsApi;

my $api_instance = WWW::SwaggerClient::APIsApi->new();
my $positionId = positionId_example; # String | 更新する役職のID
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->updatePosition1(positionId => $positionId, companyId => $companyId, body => $body, userId => $userId, userType => $userType, companyId2 => $companyId2);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->updatePosition1: $@\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()
positionId = positionId_example # String | 更新する役職のID
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.update_position1(positionId, companyId, body=body, userId=userId, userType=userType, companyId2=companyId2)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->updatePosition1: %s\n" % e)

Parameters

Path parameters
Name Description
positionId*
String
更新する役職のID
Required
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 - 見つかりません


updateUser1

ユーザー更新

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


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

Usage and SDK Samples

curl -X PUT\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/update/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
        UserTo body = ; // UserTo | 
        String userId2 = userId_example; // String | ログインユーザーの会社ID
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        try {
            StatusResponseDTO result = apiInstance.updateUser1(companyId, userId, body, userId2, companyId2, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#updateUser1");
            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
        UserTo body = ; // UserTo | 
        String userId2 = userId_example; // String | ログインユーザーの会社ID
        String companyId2 = companyId_example; // String | ログインユーザーの会社ID
        String userType = userType_example; // String | ログインユーザーType
        try {
            StatusResponseDTO result = apiInstance.updateUser1(companyId, userId, body, userId2, companyId2, userType);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#updateUser1");
            e.printStackTrace();
        }
    }
}
String *companyId = companyId_example; // 更新するユーザーの企業ID
String *userId = userId_example; // 更新するユーザーのID
UserTo *body = ; //  (optional)
String *userId2 = userId_example; // ログインユーザーの会社ID (optional)
String *companyId2 = companyId_example; // ログインユーザーの会社ID (optional)
String *userType = userType_example; // ログインユーザーType (optional)

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

// ユーザー更新
[apiInstance updateUser1With:companyId
    userId:userId
    body:body
    userId2:userId2
    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 userId = userId_example; // {{String}} 更新するユーザーのID
var opts = { 
  'body':  // {{UserTo}} 
  'userId2': 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.updateUser1(companyIduserId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

            try
            {
                // ユーザー更新
                StatusResponseDTO result = apiInstance.updateUser1(companyId, userId, body, userId2, companyId2, userType);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.updateUser1: " + 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
$body = ; // UserTo | 
$userId2 = userId_example; // String | ログインユーザーの会社ID
$companyId2 = companyId_example; // String | ログインユーザーの会社ID
$userType = userType_example; // String | ログインユーザーType

try {
    $result = $api_instance->updateUser1($companyId, $userId, $body, $userId2, $companyId2, $userType);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->updateUser1: ', $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 $body = WWW::SwaggerClient::Object::UserTo->new(); # UserTo | 
my $userId2 = userId_example; # String | ログインユーザーの会社ID
my $companyId2 = companyId_example; # String | ログインユーザーの会社ID
my $userType = userType_example; # String | ログインユーザーType

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

try: 
    # ユーザー更新
    api_response = api_instance.update_user1(companyId, userId, body=body, userId2=userId2, companyId2=companyId2, userType=userType)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->updateUser1: %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
Body parameters
Name Description
body

Responses

Status: 200 - 成功

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

Status: 404 - 見つかりません


updateUserProfileInfo1

ユーザープロファイル更新

ユーザーが自分のプロファイルを更新できるAPIです


/api/v1/update/user/profile

Usage and SDK Samples

curl -X PUT\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/update/user/profile"
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();
        UserProfileDto body = ; // UserProfileDto | 
        String userId = userId_example; // String | ログインユーザーID
        try {
            StatusResponseDTO result = apiInstance.updateUserProfileInfo1(body, userId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#updateUserProfileInfo1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

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

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

// ユーザープロファイル更新
[apiInstance updateUserProfileInfo1With:body
    userId:userId
              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':  // {{UserProfileDto}} 
  'userId': userId_example // {{String}} ログインユーザーID
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.updateUserProfileInfo1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var body = new UserProfileDto(); // UserProfileDto |  (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 

            try
            {
                // ユーザープロファイル更新
                StatusResponseDTO result = apiInstance.updateUserProfileInfo1(body, userId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.updateUserProfileInfo1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$body = ; // UserProfileDto | 
$userId = userId_example; // String | ログインユーザーID

try {
    $result = $api_instance->updateUserProfileInfo1($body, $userId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->updateUserProfileInfo1: ', $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::UserProfileDto->new(); # UserProfileDto | 
my $userId = userId_example; # String | ログインユーザーID

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

try: 
    # ユーザープロファイル更新
    api_response = api_instance.update_user_profile_info1(body=body, userId=userId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->updateUserProfileInfo1: %s\n" % e)

Parameters

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

Responses

Status: 200 - 成功

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

Status: 404 - 見つかりません


uploadUserBatchRegistration1

ユーザー一括登録ファイル連携

ユーザー一括登録用のCSVをアップロードできるAPIです


/api/v1/batch/user/ledger

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: multipart/form-data"\
"http://HOSTNAME/api/v1/batch/user/ledger?targetCompanyId="
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[] | 
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String targetCompanyId = targetCompanyId_example; // String | Prored管理者のみ有効なパラメタ
        try {
            RegisterBulkUserFileSwaggerResponseDto result = apiInstance.uploadUserBatchRegistration1(file, userId, companyId, targetCompanyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#uploadUserBatchRegistration1");
            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[] | 
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        String targetCompanyId = targetCompanyId_example; // String | Prored管理者のみ有効なパラメタ
        try {
            RegisterBulkUserFileSwaggerResponseDto result = apiInstance.uploadUserBatchRegistration1(file, userId, companyId, targetCompanyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#uploadUserBatchRegistration1");
            e.printStackTrace();
        }
    }
}
byte[] *file = file_example; //  (optional)
String *userId = userId_example; // ログインユーザーID (optional)
String *companyId = companyId_example; // ログインユーザーの会社ID (optional)
String *targetCompanyId = targetCompanyId_example; // Prored管理者のみ有効なパラメタ (optional)

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

// ユーザー一括登録ファイル連携
[apiInstance uploadUserBatchRegistration1With:file
    userId:userId
    companyId:companyId
    targetCompanyId:targetCompanyId
              completionHandler: ^(RegisterBulkUserFileSwaggerResponseDto 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[]}} 
  'userId': userId_example // {{String}} ログインユーザーID
  'companyId': companyId_example // {{String}} ログインユーザーの会社ID
  'targetCompanyId': targetCompanyId_example // {{String}} Prored管理者のみ有効なパラメタ
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.uploadUserBatchRegistration1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new APIsApi();
            var file = file_example;  // byte[] |  (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 
            var targetCompanyId = targetCompanyId_example;  // String | Prored管理者のみ有効なパラメタ (optional) 

            try
            {
                // ユーザー一括登録ファイル連携
                RegisterBulkUserFileSwaggerResponseDto result = apiInstance.uploadUserBatchRegistration1(file, userId, companyId, targetCompanyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.uploadUserBatchRegistration1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAPIsApi();
$file = file_example; // byte[] | 
$userId = userId_example; // String | ログインユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID
$targetCompanyId = targetCompanyId_example; // String | Prored管理者のみ有効なパラメタ

try {
    $result = $api_instance->uploadUserBatchRegistration1($file, $userId, $companyId, $targetCompanyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->uploadUserBatchRegistration1: ', $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[] | 
my $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID
my $targetCompanyId = targetCompanyId_example; # String | Prored管理者のみ有効なパラメタ

eval { 
    my $result = $api_instance->uploadUserBatchRegistration1(file => $file, userId => $userId, companyId => $companyId, targetCompanyId => $targetCompanyId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling APIsApi->uploadUserBatchRegistration1: $@\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)
userId = userId_example # String | ログインユーザーID (optional)
companyId = companyId_example # String | ログインユーザーの会社ID (optional)
targetCompanyId = targetCompanyId_example # String | Prored管理者のみ有効なパラメタ (optional)

try: 
    # ユーザー一括登録ファイル連携
    api_response = api_instance.upload_user_batch_registration1(file=file, userId=userId, companyId=companyId, targetCompanyId=targetCompanyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->uploadUserBatchRegistration1: %s\n" % e)

Parameters

Header parameters
Name Description
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
Form parameters
Name Description
file
byte[] (binary)
Query parameters
Name Description
targetCompanyId
String
Prored管理者のみ有効なパラメタ

Responses

Status: 200 - 成功


userBatchRegistration1

順次ユーザー登録

ユーザー一括登録する際に、順次ユーザー登録を行うAPIです


/api/v1/batch/user

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/batch/user"
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();
        UserImportRequest body = ; // UserImportRequest | 
        String userId = userId_example; // String | ログインユーザーID
        String companyId = companyId_example; // String | ログインユーザーの会社ID
        try {
            UserImportSwaggerResponseDto result = apiInstance.userBatchRegistration1(body, userId, companyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling APIsApi#userBatchRegistration1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.APIsApi;

public class APIsApiExample {

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

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

// 順次ユーザー登録
[apiInstance userBatchRegistration1With:body
    userId:userId
    companyId:companyId
              completionHandler: ^(UserImportSwaggerResponseDto 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':  // {{UserImportRequest}} 
  '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.userBatchRegistration1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

            try
            {
                // 順次ユーザー登録
                UserImportSwaggerResponseDto result = apiInstance.userBatchRegistration1(body, userId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling APIsApi.userBatchRegistration1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

try {
    $result = $api_instance->userBatchRegistration1($body, $userId, $companyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling APIsApi->userBatchRegistration1: ', $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::UserImportRequest->new(); # UserImportRequest | 
my $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID

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

try: 
    # 順次ユーザー登録
    api_response = api_instance.user_batch_registration1(body=body, userId=userId, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIsApi->userBatchRegistration1: %s\n" % e)

Parameters

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

Responses

Status: 200 - 成功


AutonumberAPIs

getNumber1

【未メンテ】Autonumber取得


/api/v1/api_get_next_number

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/api_get_next_number"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AutonumberAPIsApi;

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

public class AutonumberAPIsApiExample {

    public static void main(String[] args) {
        
        AutonumberAPIsApi apiInstance = new AutonumberAPIsApi();
        NumberRequestDto body = ; // NumberRequestDto | 
        try {
            NumberResponseDTO result = apiInstance.getNumber1(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AutonumberAPIsApi#getNumber1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AutonumberAPIsApi;

public class AutonumberAPIsApiExample {

    public static void main(String[] args) {
        AutonumberAPIsApi apiInstance = new AutonumberAPIsApi();
        NumberRequestDto body = ; // NumberRequestDto | 
        try {
            NumberResponseDTO result = apiInstance.getNumber1(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AutonumberAPIsApi#getNumber1");
            e.printStackTrace();
        }
    }
}
NumberRequestDto *body = ; //  (optional)

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

// 【未メンテ】Autonumber取得
[apiInstance getNumber1With:body
              completionHandler: ^(NumberResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.AutonumberAPIsApi()
var opts = { 
  'body':  // {{NumberRequestDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getNumber1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new AutonumberAPIsApi();
            var body = new NumberRequestDto(); // NumberRequestDto |  (optional) 

            try
            {
                // 【未メンテ】Autonumber取得
                NumberResponseDTO result = apiInstance.getNumber1(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AutonumberAPIsApi.getNumber1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAutonumberAPIsApi();
$body = ; // NumberRequestDto | 

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

my $api_instance = WWW::SwaggerClient::AutonumberAPIsApi->new();
my $body = WWW::SwaggerClient::Object::NumberRequestDto->new(); # NumberRequestDto | 

eval { 
    my $result = $api_instance->getNumber1(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling AutonumberAPIsApi->getNumber1: $@\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.AutonumberAPIsApi()
body =  # NumberRequestDto |  (optional)

try: 
    # 【未メンテ】Autonumber取得
    api_response = api_instance.get_number1(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AutonumberAPIsApi->getNumber1: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 -


InvitationAPIs

acceptInvitation1

【未メンテ】被招待者受理

被招待者が招待を受理します


/api/v1/invited/invitations/{token}

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/invited/invitations/{token}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.InvitationAPIsApi;

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

public class InvitationAPIsApiExample {

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

public class InvitationAPIsApiExample {

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

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

// 【未メンテ】被招待者受理
[apiInstance acceptInvitation1With:token
    body: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.InvitationAPIsApi()
var token = token_example; // {{String}} 招待トークン
var opts = { 
  'body':  // {{AcceptInvitationRequest}} 
  '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.acceptInvitation1(token, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new InvitationAPIsApi();
            var token = token_example;  // String | 招待トークン
            var body = new AcceptInvitationRequest(); // AcceptInvitationRequest |  (optional) 
            var userId = userId_example;  // String | ログインユーザーID (optional) 
            var companyId = companyId_example;  // String | ログインユーザーの会社ID (optional) 

            try
            {
                // 【未メンテ】被招待者受理
                StatusResponseDTO result = apiInstance.acceptInvitation1(token, body, userId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling InvitationAPIsApi.acceptInvitation1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiInvitationAPIsApi();
$token = token_example; // String | 招待トークン
$body = ; // AcceptInvitationRequest | 
$userId = userId_example; // String | ログインユーザーID
$companyId = companyId_example; // String | ログインユーザーの会社ID

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

my $api_instance = WWW::SwaggerClient::InvitationAPIsApi->new();
my $token = token_example; # String | 招待トークン
my $body = WWW::SwaggerClient::Object::AcceptInvitationRequest->new(); # AcceptInvitationRequest | 
my $userId = userId_example; # String | ログインユーザーID
my $companyId = companyId_example; # String | ログインユーザーの会社ID

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

try: 
    # 【未メンテ】被招待者受理
    api_response = api_instance.accept_invitation1(token, body=body, userId=userId, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling InvitationAPIsApi->acceptInvitation1: %s\n" % e)

Parameters

Path parameters
Name Description
token*
String
招待トークン
Required
Header parameters
Name Description
userId
String
ログインユーザーID
companyId
String
ログインユーザーの会社ID
Body parameters
Name Description
body

Responses

Status: 200 - 成功


confirmCompanyExistance1

【未メンテ】所属企業確認

所属企業を確認します


/api/v1/match/company

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/match/company?companyName=&mailAddress="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.InvitationAPIsApi;

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

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String companyName = companyName_example; // String | 
        String mailAddress = mailAddress_example; // String | 
        try {
            ConfirmCompanyExistanceResponse result = apiInstance.confirmCompanyExistance1(companyName, mailAddress);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#confirmCompanyExistance1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.InvitationAPIsApi;

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String companyName = companyName_example; // String | 
        String mailAddress = mailAddress_example; // String | 
        try {
            ConfirmCompanyExistanceResponse result = apiInstance.confirmCompanyExistance1(companyName, mailAddress);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#confirmCompanyExistance1");
            e.printStackTrace();
        }
    }
}
String *companyName = companyName_example; // 
String *mailAddress = mailAddress_example; // 

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

// 【未メンテ】所属企業確認
[apiInstance confirmCompanyExistance1With:companyName
    mailAddress:mailAddress
              completionHandler: ^(ConfirmCompanyExistanceResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.InvitationAPIsApi()
var companyName = companyName_example; // {{String}} 
var mailAddress = mailAddress_example; // {{String}} 

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

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

            var apiInstance = new InvitationAPIsApi();
            var companyName = companyName_example;  // String | 
            var mailAddress = mailAddress_example;  // String | 

            try
            {
                // 【未メンテ】所属企業確認
                ConfirmCompanyExistanceResponse result = apiInstance.confirmCompanyExistance1(companyName, mailAddress);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling InvitationAPIsApi.confirmCompanyExistance1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiInvitationAPIsApi();
$companyName = companyName_example; // String | 
$mailAddress = mailAddress_example; // String | 

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

my $api_instance = WWW::SwaggerClient::InvitationAPIsApi->new();
my $companyName = companyName_example; # String | 
my $mailAddress = mailAddress_example; # String | 

eval { 
    my $result = $api_instance->confirmCompanyExistance1(companyName => $companyName, mailAddress => $mailAddress);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling InvitationAPIsApi->confirmCompanyExistance1: $@\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.InvitationAPIsApi()
companyName = companyName_example # String | 
mailAddress = mailAddress_example # String | 

try: 
    # 【未メンテ】所属企業確認
    api_response = api_instance.confirm_company_existance1(companyName, mailAddress)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling InvitationAPIsApi->confirmCompanyExistance1: %s\n" % e)

Parameters

Query parameters
Name Description
companyName*
String
Required
mailAddress*
String
Required

Responses

Status: 200 - 成功


confirmCompanyExistanceAuthless1

【未メンテ】所属企業確認

所属企業を確認します


/api/v1/authless/match/company

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/authless/match/company?companyName=&mailAddress=&invitationToken="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.InvitationAPIsApi;

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

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String companyName = companyName_example; // String | 
        String mailAddress = mailAddress_example; // String | 
        String invitationToken = invitationToken_example; // String | 
        try {
            ConfirmCompanyExistanceResponse result = apiInstance.confirmCompanyExistanceAuthless1(companyName, mailAddress, invitationToken);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#confirmCompanyExistanceAuthless1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.InvitationAPIsApi;

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String companyName = companyName_example; // String | 
        String mailAddress = mailAddress_example; // String | 
        String invitationToken = invitationToken_example; // String | 
        try {
            ConfirmCompanyExistanceResponse result = apiInstance.confirmCompanyExistanceAuthless1(companyName, mailAddress, invitationToken);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#confirmCompanyExistanceAuthless1");
            e.printStackTrace();
        }
    }
}
String *companyName = companyName_example; // 
String *mailAddress = mailAddress_example; // 
String *invitationToken = invitationToken_example; // 

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

// 【未メンテ】所属企業確認
[apiInstance confirmCompanyExistanceAuthless1With:companyName
    mailAddress:mailAddress
    invitationToken:invitationToken
              completionHandler: ^(ConfirmCompanyExistanceResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.InvitationAPIsApi()
var companyName = companyName_example; // {{String}} 
var mailAddress = mailAddress_example; // {{String}} 
var invitationToken = invitationToken_example; // {{String}} 

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

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

            var apiInstance = new InvitationAPIsApi();
            var companyName = companyName_example;  // String | 
            var mailAddress = mailAddress_example;  // String | 
            var invitationToken = invitationToken_example;  // String | 

            try
            {
                // 【未メンテ】所属企業確認
                ConfirmCompanyExistanceResponse result = apiInstance.confirmCompanyExistanceAuthless1(companyName, mailAddress, invitationToken);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling InvitationAPIsApi.confirmCompanyExistanceAuthless1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiInvitationAPIsApi();
$companyName = companyName_example; // String | 
$mailAddress = mailAddress_example; // String | 
$invitationToken = invitationToken_example; // String | 

try {
    $result = $api_instance->confirmCompanyExistanceAuthless1($companyName, $mailAddress, $invitationToken);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling InvitationAPIsApi->confirmCompanyExistanceAuthless1: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::InvitationAPIsApi;

my $api_instance = WWW::SwaggerClient::InvitationAPIsApi->new();
my $companyName = companyName_example; # String | 
my $mailAddress = mailAddress_example; # String | 
my $invitationToken = invitationToken_example; # String | 

eval { 
    my $result = $api_instance->confirmCompanyExistanceAuthless1(companyName => $companyName, mailAddress => $mailAddress, invitationToken => $invitationToken);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling InvitationAPIsApi->confirmCompanyExistanceAuthless1: $@\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.InvitationAPIsApi()
companyName = companyName_example # String | 
mailAddress = mailAddress_example # String | 
invitationToken = invitationToken_example # String | 

try: 
    # 【未メンテ】所属企業確認
    api_response = api_instance.confirm_company_existance_authless1(companyName, mailAddress, invitationToken)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling InvitationAPIsApi->confirmCompanyExistanceAuthless1: %s\n" % e)

Parameters

Query parameters
Name Description
companyName*
String
Required
mailAddress*
String
Required
invitationToken*
String
Required

Responses

Status: 200 - 成功


confirmKeycloakUserNameExistance1

【未メンテ】ユーザー名存在確認

ユーザー名の存在を確認します


/api/v1/match/user

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/match/user?userId=&ignoredUserId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.InvitationAPIsApi;

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

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String userId = userId_example; // String | 
        String ignoredUserId = ignoredUserId_example; // String | 
        try {
            ConfirmKeycloakUserNameExistanceResponse result = apiInstance.confirmKeycloakUserNameExistance1(userId, ignoredUserId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#confirmKeycloakUserNameExistance1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.InvitationAPIsApi;

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String userId = userId_example; // String | 
        String ignoredUserId = ignoredUserId_example; // String | 
        try {
            ConfirmKeycloakUserNameExistanceResponse result = apiInstance.confirmKeycloakUserNameExistance1(userId, ignoredUserId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#confirmKeycloakUserNameExistance1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // 
String *ignoredUserId = ignoredUserId_example; //  (optional)

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

// 【未メンテ】ユーザー名存在確認
[apiInstance confirmKeycloakUserNameExistance1With:userId
    ignoredUserId:ignoredUserId
              completionHandler: ^(ConfirmKeycloakUserNameExistanceResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.InvitationAPIsApi()
var userId = userId_example; // {{String}} 
var opts = { 
  'ignoredUserId': ignoredUserId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.confirmKeycloakUserNameExistance1(userId, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new InvitationAPIsApi();
            var userId = userId_example;  // String | 
            var ignoredUserId = ignoredUserId_example;  // String |  (optional) 

            try
            {
                // 【未メンテ】ユーザー名存在確認
                ConfirmKeycloakUserNameExistanceResponse result = apiInstance.confirmKeycloakUserNameExistance1(userId, ignoredUserId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling InvitationAPIsApi.confirmKeycloakUserNameExistance1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiInvitationAPIsApi();
$userId = userId_example; // String | 
$ignoredUserId = ignoredUserId_example; // String | 

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

my $api_instance = WWW::SwaggerClient::InvitationAPIsApi->new();
my $userId = userId_example; # String | 
my $ignoredUserId = ignoredUserId_example; # String | 

eval { 
    my $result = $api_instance->confirmKeycloakUserNameExistance1(userId => $userId, ignoredUserId => $ignoredUserId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling InvitationAPIsApi->confirmKeycloakUserNameExistance1: $@\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.InvitationAPIsApi()
userId = userId_example # String | 
ignoredUserId = ignoredUserId_example # String |  (optional)

try: 
    # 【未メンテ】ユーザー名存在確認
    api_response = api_instance.confirm_keycloak_user_name_existance1(userId, ignoredUserId=ignoredUserId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling InvitationAPIsApi->confirmKeycloakUserNameExistance1: %s\n" % e)

Parameters

Query parameters
Name Description
userId*
String
Required
ignoredUserId
String

Responses

Status: 200 - 成功


confirmKeycloakUserNameExistanceAuthless1

【未メンテ】ユーザー名存在確認

ユーザー名の存在を確認します


/api/v1/authless/match/user

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/authless/match/user?userId=&invitationToken="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.InvitationAPIsApi;

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

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String userId = userId_example; // String | 
        String invitationToken = invitationToken_example; // String | 
        try {
            ConfirmKeycloakUserNameExistanceResponse result = apiInstance.confirmKeycloakUserNameExistanceAuthless1(userId, invitationToken);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#confirmKeycloakUserNameExistanceAuthless1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.InvitationAPIsApi;

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String userId = userId_example; // String | 
        String invitationToken = invitationToken_example; // String | 
        try {
            ConfirmKeycloakUserNameExistanceResponse result = apiInstance.confirmKeycloakUserNameExistanceAuthless1(userId, invitationToken);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#confirmKeycloakUserNameExistanceAuthless1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // 
String *invitationToken = invitationToken_example; // 

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

// 【未メンテ】ユーザー名存在確認
[apiInstance confirmKeycloakUserNameExistanceAuthless1With:userId
    invitationToken:invitationToken
              completionHandler: ^(ConfirmKeycloakUserNameExistanceResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.InvitationAPIsApi()
var userId = userId_example; // {{String}} 
var invitationToken = invitationToken_example; // {{String}} 

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

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

            var apiInstance = new InvitationAPIsApi();
            var userId = userId_example;  // String | 
            var invitationToken = invitationToken_example;  // String | 

            try
            {
                // 【未メンテ】ユーザー名存在確認
                ConfirmKeycloakUserNameExistanceResponse result = apiInstance.confirmKeycloakUserNameExistanceAuthless1(userId, invitationToken);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling InvitationAPIsApi.confirmKeycloakUserNameExistanceAuthless1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiInvitationAPIsApi();
$userId = userId_example; // String | 
$invitationToken = invitationToken_example; // String | 

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

my $api_instance = WWW::SwaggerClient::InvitationAPIsApi->new();
my $userId = userId_example; # String | 
my $invitationToken = invitationToken_example; # String | 

eval { 
    my $result = $api_instance->confirmKeycloakUserNameExistanceAuthless1(userId => $userId, invitationToken => $invitationToken);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling InvitationAPIsApi->confirmKeycloakUserNameExistanceAuthless1: $@\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.InvitationAPIsApi()
userId = userId_example # String | 
invitationToken = invitationToken_example # String | 

try: 
    # 【未メンテ】ユーザー名存在確認
    api_response = api_instance.confirm_keycloak_user_name_existance_authless1(userId, invitationToken)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling InvitationAPIsApi->confirmKeycloakUserNameExistanceAuthless1: %s\n" % e)

Parameters

Query parameters
Name Description
userId*
String
Required
invitationToken*
String
Required

Responses

Status: 200 - 成功


getInvitation1

【未メンテ】ユーザー招待情報取得

ユーザー招待情報を取得します


/api/v1/authless/invitations/{token}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/authless/invitations/{token}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.InvitationAPIsApi;

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

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String token = token_example; // String | 招待トークン
        try {
            GetInvitationResponse result = apiInstance.getInvitation1(token);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#getInvitation1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.InvitationAPIsApi;

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String token = token_example; // String | 招待トークン
        try {
            GetInvitationResponse result = apiInstance.getInvitation1(token);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#getInvitation1");
            e.printStackTrace();
        }
    }
}
String *token = token_example; // 招待トークン

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

// 【未メンテ】ユーザー招待情報取得
[apiInstance getInvitation1With:token
              completionHandler: ^(GetInvitationResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.InvitationAPIsApi()
var token = token_example; // {{String}} 招待トークン

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

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

            var apiInstance = new InvitationAPIsApi();
            var token = token_example;  // String | 招待トークン

            try
            {
                // 【未メンテ】ユーザー招待情報取得
                GetInvitationResponse result = apiInstance.getInvitation1(token);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling InvitationAPIsApi.getInvitation1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiInvitationAPIsApi();
$token = token_example; // String | 招待トークン

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

my $api_instance = WWW::SwaggerClient::InvitationAPIsApi->new();
my $token = token_example; # String | 招待トークン

eval { 
    my $result = $api_instance->getInvitation1(token => $token);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling InvitationAPIsApi->getInvitation1: $@\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.InvitationAPIsApi()
token = token_example # String | 招待トークン

try: 
    # 【未メンテ】ユーザー招待情報取得
    api_response = api_instance.get_invitation1(token)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling InvitationAPIsApi->getInvitation1: %s\n" % e)

Parameters

Path parameters
Name Description
token*
String
招待トークン
Required

Responses

Status: 200 - 成功


getInvitedInvitations1

【未メンテ】被招待者招待情報取得

被招待者招待情報を取得します


/api/v1/invited/invitations

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/invited/invitations"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.InvitationAPIsApi;

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

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String userId = userId_example; // String | ログインユーザーID
        try {
            GetInvitedInvitationsResponse result = apiInstance.getInvitedInvitations1(userId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#getInvitedInvitations1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.InvitationAPIsApi;

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String userId = userId_example; // String | ログインユーザーID
        try {
            GetInvitedInvitationsResponse result = apiInstance.getInvitedInvitations1(userId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#getInvitedInvitations1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID (optional)

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

// 【未メンテ】被招待者招待情報取得
[apiInstance getInvitedInvitations1With:userId
              completionHandler: ^(GetInvitedInvitationsResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

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

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

            var apiInstance = new InvitationAPIsApi();
            var userId = userId_example;  // String | ログインユーザーID (optional) 

            try
            {
                // 【未メンテ】被招待者招待情報取得
                GetInvitedInvitationsResponse result = apiInstance.getInvitedInvitations1(userId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling InvitationAPIsApi.getInvitedInvitations1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiInvitationAPIsApi();
$userId = userId_example; // String | ログインユーザーID

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

my $api_instance = WWW::SwaggerClient::InvitationAPIsApi->new();
my $userId = userId_example; # String | ログインユーザーID

eval { 
    my $result = $api_instance->getInvitedInvitations1(userId => $userId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling InvitationAPIsApi->getInvitedInvitations1: $@\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.InvitationAPIsApi()
userId = userId_example # String | ログインユーザーID (optional)

try: 
    # 【未メンテ】被招待者招待情報取得
    api_response = api_instance.get_invited_invitations1(userId=userId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling InvitationAPIsApi->getInvitedInvitations1: %s\n" % e)

Parameters

Header parameters
Name Description
userId
String
ログインユーザーID

Responses

Status: 200 - 成功


getInviterInvitations1

【未メンテ】招待者招待情報通知取得

招待者招待情報通知を取得します


/api/v1/invitations

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/invitations"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.InvitationAPIsApi;

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

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String userId = userId_example; // String | ログインユーザーID
        try {
            GetInviterInvitationsResponse result = apiInstance.getInviterInvitations1(userId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#getInviterInvitations1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.InvitationAPIsApi;

public class InvitationAPIsApiExample {

    public static void main(String[] args) {
        InvitationAPIsApi apiInstance = new InvitationAPIsApi();
        String userId = userId_example; // String | ログインユーザーID
        try {
            GetInviterInvitationsResponse result = apiInstance.getInviterInvitations1(userId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling InvitationAPIsApi#getInviterInvitations1");
            e.printStackTrace();
        }
    }
}
String *userId = userId_example; // ログインユーザーID (optional)

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

// 【未メンテ】招待者招待情報通知取得
[apiInstance getInviterInvitations1With:userId
              completionHandler: ^(GetInviterInvitationsResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

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

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

            var apiInstance = new InvitationAPIsApi();
            var userId = userId_example;  // String | ログインユーザーID (optional) 

            try
            {
                // 【未メンテ】招待者招待情報通知取得
                GetInviterInvitationsResponse result = apiInstance.getInviterInvitations1(userId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling InvitationAPIsApi.getInviterInvitations1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiInvitationAPIsApi();
$userId = userId_example; // String | ログインユーザーID

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

my $api_instance = WWW::SwaggerClient::InvitationAPIsApi->new();
my $userId = userId_example; # String | ログインユーザーID

eval { 
    my $result = $api_instance->getInviterInvitations1(userId => $userId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling InvitationAPIsApi->getInviterInvitations1: $@\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.InvitationAPIsApi()
userId = userId_example # String | ログインユーザーID (optional)

try: 
    # 【未メンテ】招待者招待情報通知取得
    api_response = api_instance.get_inviter_invitations1(userId=userId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling InvitationAPIsApi->getInviterInvitations1: %s\n" % e)

Parameters

Header parameters
Name Description
userId
String
ログインユーザーID

Responses

Status: 200 - 成功


inviteUser1

【未メンテ】ユーザー招待

ユーザーを招待します


/api/v1/invitation

Usage and SDK Samples

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

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

public class InvitationAPIsApiExample {

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

public class InvitationAPIsApiExample {

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

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

// 【未メンテ】ユーザー招待
[apiInstance inviteUser1With:body
    userId:userId
    companyId:companyId
              completionHandler: ^(InviteUserResponse output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.InvitationAPIsApi()
var opts = { 
  'body':  // {{InviteUserRequest}} 
  '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.inviteUser1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

            try
            {
                // 【未メンテ】ユーザー招待
                InviteUserResponse result = apiInstance.inviteUser1(body, userId, companyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling InvitationAPIsApi.inviteUser1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

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

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

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

try: 
    # 【未メンテ】ユーザー招待
    api_response = api_instance.invite_user1(body=body, userId=userId, companyId=companyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling InvitationAPIsApi->inviteUser1: %s\n" % e)

Parameters

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

Responses

Status: 200 - 成功


registerInvitedUser1

【未メンテ】被招待者情報登録

被招待者情報を登録します


/api/v1/authless/invited-user

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://HOSTNAME/api/v1/authless/invited-user"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.InvitationAPIsApi;

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

public class InvitationAPIsApiExample {

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

public class InvitationAPIsApiExample {

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

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

// 【未メンテ】被招待者情報登録
[apiInstance registerInvitedUser1With:body
              completionHandler: ^(StatusResponseDTO output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

var api = new OnboardingService.InvitationAPIsApi()
var opts = { 
  'body':  // {{RegisterInvitedUserRequest}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.registerInvitedUser1(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new InvitationAPIsApi();
            var body = new RegisterInvitedUserRequest(); // RegisterInvitedUserRequest |  (optional) 

            try
            {
                // 【未メンテ】被招待者情報登録
                StatusResponseDTO result = apiInstance.registerInvitedUser1(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling InvitationAPIsApi.registerInvitedUser1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiInvitationAPIsApi();
$body = ; // RegisterInvitedUserRequest | 

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

my $api_instance = WWW::SwaggerClient::InvitationAPIsApi->new();
my $body = WWW::SwaggerClient::Object::RegisterInvitedUserRequest->new(); # RegisterInvitedUserRequest | 

eval { 
    my $result = $api_instance->registerInvitedUser1(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling InvitationAPIsApi->registerInvitedUser1: $@\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.InvitationAPIsApi()
body =  # RegisterInvitedUserRequest |  (optional)

try: 
    # 【未メンテ】被招待者情報登録
    api_response = api_instance.register_invited_user1(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling InvitationAPIsApi->registerInvitedUser1: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - 成功


SerializeManagerAPIs

getSerializeToken1

【未メンテ】二重送信防止トークンを取得

二重送信防止トークンを取得できます。


/api/v1/serializekey

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/serializekey"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SerializeManagerAPIsApi;

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

public class SerializeManagerAPIsApiExample {

    public static void main(String[] args) {
        
        SerializeManagerAPIsApi apiInstance = new SerializeManagerAPIsApi();
        try {
            NumberResponseDto result = apiInstance.getSerializeToken1();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SerializeManagerAPIsApi#getSerializeToken1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SerializeManagerAPIsApi;

public class SerializeManagerAPIsApiExample {

    public static void main(String[] args) {
        SerializeManagerAPIsApi apiInstance = new SerializeManagerAPIsApi();
        try {
            NumberResponseDto result = apiInstance.getSerializeToken1();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SerializeManagerAPIsApi#getSerializeToken1");
            e.printStackTrace();
        }
    }
}

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

// 【未メンテ】二重送信防止トークンを取得
[apiInstance getSerializeToken1WithCompletionHandler: 
              ^(NumberResponseDto output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

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

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

            var apiInstance = new SerializeManagerAPIsApi();

            try
            {
                // 【未メンテ】二重送信防止トークンを取得
                NumberResponseDto result = apiInstance.getSerializeToken1();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SerializeManagerAPIsApi.getSerializeToken1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSerializeManagerAPIsApi();

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

my $api_instance = WWW::SwaggerClient::SerializeManagerAPIsApi->new();

eval { 
    my $result = $api_instance->getSerializeToken1();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SerializeManagerAPIsApi->getSerializeToken1: $@\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.SerializeManagerAPIsApi()

try: 
    # 【未メンテ】二重送信防止トークンを取得
    api_response = api_instance.get_serialize_token1()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SerializeManagerAPIsApi->getSerializeToken1: %s\n" % e)

Parameters

Responses

Status: 200 - 成功


getSerializeTokenAuthless1

【未メンテ】二重送信防止トークンを取得

二重送信防止トークンを取得できます。


/api/v1/authless/serializekey

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://HOSTNAME/api/v1/authless/serializekey"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SerializeManagerAPIsApi;

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

public class SerializeManagerAPIsApiExample {

    public static void main(String[] args) {
        
        SerializeManagerAPIsApi apiInstance = new SerializeManagerAPIsApi();
        try {
            NumberResponseDto result = apiInstance.getSerializeTokenAuthless1();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SerializeManagerAPIsApi#getSerializeTokenAuthless1");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SerializeManagerAPIsApi;

public class SerializeManagerAPIsApiExample {

    public static void main(String[] args) {
        SerializeManagerAPIsApi apiInstance = new SerializeManagerAPIsApi();
        try {
            NumberResponseDto result = apiInstance.getSerializeTokenAuthless1();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SerializeManagerAPIsApi#getSerializeTokenAuthless1");
            e.printStackTrace();
        }
    }
}

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

// 【未メンテ】二重送信防止トークンを取得
[apiInstance getSerializeTokenAuthless1WithCompletionHandler: 
              ^(NumberResponseDto output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var OnboardingService = require('onboarding_service');

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

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

            var apiInstance = new SerializeManagerAPIsApi();

            try
            {
                // 【未メンテ】二重送信防止トークンを取得
                NumberResponseDto result = apiInstance.getSerializeTokenAuthless1();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SerializeManagerAPIsApi.getSerializeTokenAuthless1: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSerializeManagerAPIsApi();

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

my $api_instance = WWW::SwaggerClient::SerializeManagerAPIsApi->new();

eval { 
    my $result = $api_instance->getSerializeTokenAuthless1();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SerializeManagerAPIsApi->getSerializeTokenAuthless1: $@\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.SerializeManagerAPIsApi()

try: 
    # 【未メンテ】二重送信防止トークンを取得
    api_response = api_instance.get_serialize_token_authless1()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SerializeManagerAPIsApi->getSerializeTokenAuthless1: %s\n" % e)

Parameters

Responses

Status: 200 - 成功


Procurement Cloudを
ご検討される方へ

自社の要件にかなうかどうかを
直接聞きたい方へ