Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refs/heads/release/0.2.8 #48

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'partner-java-sdk'
version '0.2.7'
version '0.2.8'

sourceCompatibility = 1.8

Expand Down
3 changes: 3 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ APIサーバがエラーレスポンスを返した場合に使われます。
- [ListTransactions](./transaction.md#list-transactions): 【廃止】取引履歴を取得する
- [CreateTransaction](./transaction.md#create-transaction): 【廃止】チャージする
- [ListTransactionsV2](./transaction.md#list-transactions-v2): 取引履歴を取得する
- [ListBillTransactions](./transaction.md#list-bill-transactions): 支払い取引履歴を取得する
- [CreateTopupTransaction](./transaction.md#create-topup-transaction): チャージする
- [CreatePaymentTransaction](./transaction.md#create-payment-transaction): 支払いする
- [CreateCpmTransaction](./transaction.md#create-cpm-transaction): CPMトークンによる取引作成
Expand All @@ -89,6 +90,7 @@ APIサーバがエラーレスポンスを返した場合に使われます。
- [GetBulkTransaction](./transaction.md#get-bulk-transaction): バルク取引ジョブの実行状況を取得する
- [ListBulkTransactionJobs](./transaction.md#list-bulk-transaction-jobs): バルク取引ジョブの詳細情報一覧を取得する
- [RequestUserStats](./transaction.md#request-user-stats): 指定期間内の顧客が行った取引の統計情報をCSVでダウンロードする
- [TerminateUserStats](./transaction.md#terminate-user-stats): RequestUserStatsのタスクを強制終了する

### Transfer
- [GetAccountTransferSummary](./transfer.md#get-account-transfer-summary):
Expand Down Expand Up @@ -180,6 +182,7 @@ APIサーバがエラーレスポンスを返した場合に使われます。
- [ActivateUserDevice](./user_device.md#activate-user-device): デバイスの有効化

### BankPay
- [DeleteBank](./bank_pay.md#delete-bank): 銀行口座の削除
- [ListBanks](./bank_pay.md#list-banks): 登録した銀行の一覧
- [CreateBank](./bank_pay.md#create-bank): 銀行口座の登録
- [CreateBankTopupTransaction](./bank_pay.md#create-bank-topup-transaction): 銀行からのチャージ
Expand Down
8 changes: 4 additions & 4 deletions docs/account.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
Request request = new ListUserAccounts(
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" // userId: ユーザーID
)
.page(1170) // ページ番号
.perPage(3512); // 1ページ分の取引数
.page(2119) // ページ番号
.perPage(9474); // 1ページ分の取引数

```

Expand Down Expand Up @@ -74,8 +74,8 @@ Request request = new CreateUserAccount(
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // userId: ユーザーID
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" // privateMoneyId: マネーID
)
.name("qMtHhSfZdXUyjb1NxKa8yAWf3eI4rn2GKxT8MfsHveV88627AlMJYf8MI0c9") // ウォレット名
.externalId("iCp3raZonaiDazAfoV") // 外部ID
.name("g2EP1IMpzVlOR0ZjHbJ4pIYeH1mIjK91BovJNiyan2Rg9xEgMUhIRyB0Lq7z8Ljil9JSMA7rA7mkLLtmKfguDK2IgQjODYIDOJbPEulQIvNSkQALktsxpQNr6y6a28m0nRuldHpSuEUpdPie9qQ2GFfC0at9jn8D") // ウォレット名
.externalId("wInc5YWbNc2E2NkkI") // 外部ID
.metadata("{\"key1\":\"foo\",\"key2\":\"bar\"}"); // ウォレットに付加するメタデータ

```
Expand Down
52 changes: 50 additions & 2 deletions docs/bank_pay.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,54 @@
BankPayを用いた銀行からのチャージ取引などのAPIを提供しています。


<a name="delete-bank"></a>
## DeleteBank: 銀行口座の削除
銀行口座を削除します

```JAVA
Request request = new DeleteBank(
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // userDeviceId: デバイスID
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
);

```



### Parameters
**`userDeviceId`**



```json
{
"type": "string",
"format": "uuid"
}
```

**`bankId`**



```json
{
"type": "string",
"format": "uuid"
}
```



成功したときは
[BankDeleted](./responses.md#bank-deleted)
を返します



---


<a name="list-banks"></a>
## ListBanks: 登録した銀行の一覧
登録した銀行を一覧します
Expand Down Expand Up @@ -65,7 +113,7 @@ Request request = new CreateBank(
"<Deep Link>", // callbackUrl: コールバックURL
"ポケペイタロウ" // kana: ユーザーの氏名 (片仮名で指定)
)
.email("wpVUwFU1am@kd1F.com") // ユーザーのメールアドレス
.email("DHI0zWcr0s@Mpkd.com") // ユーザーのメールアドレス
.birthdate("19901142"); // 生年月日

```
Expand Down Expand Up @@ -159,7 +207,7 @@ Request request = new CreateBank(
Request request = new CreateBankTopupTransaction(
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // userDeviceId: デバイスID
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // privateMoneyId: マネーID
8003, // amount: チャージ金額
4365, // amount: チャージ金額
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // bankId: 銀行ID
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" // requestId: リクエストID
)
Expand Down
22 changes: 11 additions & 11 deletions docs/bill.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@

```JAVA
Request request = new ListBills()
.page(2897) // ページ番号
.perPage(1066) // 1ページの表示数
.billId("r") // 支払いQRコードのID
.page(4136) // ページ番号
.perPage(2402) // 1ページの表示数
.billId("bkgSmtEHA") // 支払いQRコードのID
.privateMoneyId("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx") // マネーID
.organizationCode("b--BUl96") // 組織コード
.organizationCode("85C4-F--0NJ--4p9UJ6O3-q") // 組織コード
.description("test bill") // 取引説明文
.createdFrom("2020-02-16T12:28:09.000000Z") // 作成日時(起点)
.createdTo("2022-11-02T03:28:47.000000Z") // 作成日時(終点)
.createdFrom("2021-12-20T22:14:46.000000Z") // 作成日時(起点)
.createdTo("2022-03-14T08:36:55.000000Z") // 作成日時(終点)
.shopName("bill test shop1") // 店舗名
.shopId("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx") // 店舗ID
.lowerLimitAmount(8267) // 金額の範囲によるフィルタ(下限)
.upperLimitAmount(7846) // 金額の範囲によるフィルタ(上限)
.setDisabled(true); // 支払いQRコードが無効化されているかどうか
.lowerLimitAmount(2052) // 金額の範囲によるフィルタ(下限)
.upperLimitAmount(3834) // 金額の範囲によるフィルタ(上限)
.setDisabled(false); // 支払いQRコードが無効化されているかどうか

```

Expand Down Expand Up @@ -212,7 +212,7 @@ Request request = new CreateBill(
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // privateMoneyId: 支払いマネーのマネーID
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" // shopId: 支払い先(受け取り人)の店舗ID
)
.amount(7728.0) // 支払い額
.amount(115.0) // 支払い額
.description("test bill"); // 説明文(アプリ上で取引の説明文として表示される)

```
Expand Down Expand Up @@ -296,7 +296,7 @@ Request request = new CreateBill(
Request request = new UpdateBill(
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" // billId: 支払いQRコードのID
)
.amount(4321.0) // 支払い額
.amount(4541.0) // 支払い額
.description("test bill") // 説明文
.setDisabled(false); // 無効化されているかどうか

Expand Down
8 changes: 4 additions & 4 deletions docs/bulk.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ CSVファイルから一括取引をします。

```JAVA
Request request = new BulkCreateTransaction(
"oMxEFE11voG9m7g", // name: 一括取引タスク名
"WI", // content: 取引する情報のCSV
"lidcsFhnnSlOPQSKVW980GqQVfPuvUPiEFV6" // requestId: リクエストID
"5byBGxSlhAbqrppUqGdxMolEMce2", // name: 一括取引タスク名
"Wkzh6xh3kO", // content: 取引する情報のCSV
"5wXHuEli1NcEVyTrbdyJqmh3WRfGT9d54NzU" // requestId: リクエストID
)
.description("DyiAjmPC8FhIFplNkUQpOFZAAuAkdYYYV8q02r77ePIgPu4dPH7ImSF7bIQ97lNoNEqqi11P4GN23Eb6NlDd7BTwpYu4Valw5xiIJ7Q1Cipp2C") // 一括取引の説明
.description("ibZax1gbEqwtEhHNUjZJEl7H6aHeFVmJSAKrLNuNDUQhJfNq76RxAuxSVrnur4Ju4ayidm5BuCe0yTSEIanUYTV2eUYL") // 一括取引の説明
.privateMoneyId("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"); // マネーID

```
Expand Down
Loading
Loading