アカウントリストを取得
条件に基づいてアカウント情報の一覧を取得します。 フィルタリング条件やページネーションを利用して、複数のアカウント情報を取得することができます。
Query Parameters
- baseDate date-time
フィルタリングする履歴の基準日
- roleTypeId any
アカウントのロールタイプID
- accountCode string
フィルタリングするアカウントのコード
- limit integer
Default value:
100取得するレコード数の上限
- offset integer
ページネーションのオフセット
Responses
- 200
アカウントリストのレスポンス
- application/json
- Schema
- Example (from schema)
Schema
results object[]
アカウントのリスト
Array [accountId stringアカウントの一意のID(UUID)
accountCode stringアカウントのコード
departmentId stringアカウントの所属部門ID
roleTypeId RoleTypeIdPossible values: [
OPERATOR,CUSTOMER,SUPPLIER]アカウントのロールタイプID
roleId stringアカウントのロールID
accountName stringアカウントの名前
accountKana stringアカウントのカナ表記
supplierId stringアカウントの業者ID
responsibleOperatorAccountId string担当する自社従業員アカウントのアカウントID
email stringアカウントのメールアドレス
phoneNumber stringアカウントの電話番号
isDeleted booleanアカウントが無効かどうかのフラグ
startDate dateアカウントの履歴開始日
endDate dateアカウントの履歴終了日
]
{
"results": [
{
"accountId": "string",
"accountCode": "string",
"departmentId": "string",
"roleId": "string",
"accountName": "string",
"accountKana": "string",
"supplierId": "string",
"responsibleOperatorAccountId": "string",
"email": "string",
"phoneNumber": "string",
"isDeleted": true,
"startDate": "2025-03-27",
"endDate": "2025-03-27"
}
]
}
Loading...