コンテンツにスキップ

月別賞与明細取得

GET
/bonuses/monthly/{store_id}/{staff_id}

月別賞与明細を取得します。

対象

  • プラン
    • プレミアム
    • プレミアムプラス
    • エンタープライズ、旧有料

対象ユーザー権限

  • 給与管理閲覧
staff_id
required
string

従業員ID

Example
1
store_id
required
string

事業所ID

Example
1
year
required
string
/^\d{4}$/

対象年 [YYYY]

Example
2020
month
required
string
/^\d{2}$/

対象月 [MM]

Example
01

取得成功

object
staffId

従業員ID

string
year

年 [YYYY]

string
/^\d{4}$/
month

月 [MM]

string
/^\d{2}$/
bonusPaymentDate

賞与支払日 [YYYY-MM-DD]

string format: date
nullable
2020-01-25
netPay

差引支給額

string
totalAllowance

支給額合計

string
totalDeduction

控除額合計

string
totalTaxable

課税対象額合計

string
allowanceWage

支給手当リスト

Array<object>
object
allowanceId

手当ID

string
label

手当名

string
quantity

数量

string
resultAmount

金額

string
employmentInsurance

雇用保険の計算対象かどうか

  • 0: 対象外
  • 1: 対象
string
Allowed values: 0 1
taxable

課税対象かどうか

  • 0: 非課税
  • 1: 課税対象
string
Allowed values: 0 1
deductionWage

控除リスト

Array<object>
object
allowanceId

手当ID

string
label

手当名

string
quantity

数量

string
resultAmount

金額

string
employmentInsurance

雇用保険の計算対象かどうか

  • 0: 対象外
  • 1: 対象
string
Allowed values: 0 1
taxable

課税対象かどうか

  • 0: 支給額合計から差し引く控除
  • 1: 一般的な控除
string
Allowed values: 0 1
Example
{
"staffId": "1",
"year": "2020",
"month": "01",
"netPay": "298200",
"totalAllowance": "300000",
"totalDeduction": "1800",
"totalTaxable": "298200",
"allowanceWage": [
{
"allowanceId": "10",
"label": "ボーナス",
"quantity": "1",
"resultAmount": "100000",
"employmentInsurance": "1",
"taxable": "1"
},
{
"allowanceId": "11",
"label": "特別賞与",
"quantity": "1",
"resultAmount": "200000",
"employmentInsurance": "1",
"taxable": "1"
}
],
"deductionWage": [
{
"allowanceId": "12",
"label": "雇用保険(2020年01月)",
"quantity": "1",
"resultAmount": "1800",
"employmentInsurance": "0",
"taxable": "1"
},
{
"allowanceId": "13",
"label": "所得税(2020年01月分)",
"quantity": "1",
"resultAmount": "0",
"employmentInsurance": "0",
"taxable": "1"
}
]
}
  • リクエストの形式が不正な場合
  • 該当の賞与がない場合
object
type

エラータイプを識別するURI、もしくはabout:blank

string
title

エラーの概要

string
detail

エラーの詳細

string
Example
{
"type": "about:blank",
"title": "Bad Request",
"detail": "該当の賞与がありません。"
}