アプリの一覧を取得
X-Spiral-App-Authority
ヘッダーが use
(利用)の場合、アプリパッケージでインポート中のアプリはレスポンスに含まれない
ids | Array of strings <= 200 items 検索するアプリIDのリスト 最大リストサイズ200 |
query | string 検索するアプリのキーワード (表示名、説明)。 |
sort | string Default: "createdAt:desc" Enum: "id:asc" "id:desc" "name:asc" "name:desc" "displayName:asc" "displayName:desc" "createdAt:asc" "createdAt:desc" "updatedAt:asc" "updatedAt:desc" ソートする対象 (ID、識別名、表示名、作成日時、更新日時)。 |
offset | integer Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Authority | string Default: use Enum: "use" "manage" Example: manage アプリ権限種別 利用または管理のどちらの立場としてAPIを実行しようとしているのかを指定する
ヘッダーの指定を省略した場合、 |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
Array of objects アプリの一覧 | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
{- "items": [
- {
- "id": "100",
- "name": "Name",
- "displayName": "アプリ",
- "description": "アプリ説明",
- "revision": 2,
- "version": 1,
- "defaultPhpVersion": "7.4",
- "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}
], - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
アプリを取得
X-Spiral-App-Authority
ヘッダーが use
(利用)の場合、アプリパッケージでインポート中のアプリは取得できない
appId required | string アプリID |
X-Spiral-App-Authority | string Default: use Enum: "use" "manage" Example: manage アプリ権限種別 利用または管理のどちらの立場としてAPIを実行しようとしているのかを指定する
ヘッダーの指定を省略した場合、 |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
id | string ID |
name | string [ 1 .. 64 ] characters 識別名 重複不可 アルファベット大文字・小文字、数字、アンダースコアのみ使用可能 ただし最初の文字はアルファベットでなければならない 未指定の場合、自動発行 |
displayName | string 表示名 |
description | string 説明 |
revision | integer リビジョン。アプリを変更するとカウントアップする数値 |
version | integer バージョン |
defaultPhpVersion | string Enum: "7.4" "8.1" "system_default" 現在指定可能なPHPバージョンは7.4, 8.1, system_defaultの3種類。 ※system_defaultは、サービス推奨バージョン 現在のsystem_defaultは8.1。 system_defaultを選択している場合、将来PHPサービス推奨バージョンが更新されると自動的にサービス推奨バージョンを参照します。 |
object 作成者 | |
object 更新者 更新がないレコードの場合は作成者と同じ | |
createdAt | string <date-time> 作成日時 |
updatedAt | string <date-time> 更新日時 更新がないレコードの場合は作成日時と同じ |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
{- "id": "100",
- "name": "Name",
- "displayName": "アプリ",
- "description": "アプリ説明",
- "revision": 2,
- "version": 1,
- "defaultPhpVersion": "7.4",
- "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}
DBの一覧を取得する
app required | string アプリID |
query | string 検索するDBのキーワード (表示名、説明)。 |
sort | string Default: "createdAt:desc" Enum: "id:asc" "id:desc" "name:asc" "name:desc" "displayName:asc" "displayName:desc" "createdAt:asc" "createdAt:desc" "updatedAt:asc" "updatedAt:desc" ソートする対象 (ID、識別名、表示名、作成日時、更新日時)。 |
offset | integer Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Authority | string Default: use Enum: "use" "manage" Example: manage アプリ権限種別 利用または管理のどちらの立場としてAPIを実行しようとしているのかを指定する
ヘッダーの指定を省略した場合、 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール
ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
Array of objects DBの一覧 | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "items": [
- {
- "id": "100",
- "name": "inquirydb",
- "displayName": "問い合わせ管理DB",
- "description": "問い合わせを管理するDBです",
- "revision": "1",
- "fields": [
- {
- "id": "1",
- "name": "name",
- "displayName": "氏名",
- "size": 128,
- "fieldOrder": 0,
- "type": "text",
- "required": true,
- "unique": false,
- "index": true,
- "minLength": "1",
- "maxLength": "128",
- "allowCharTypes": [
- "alphabet",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "2",
- "name": "inquiry_detail",
- "displayName": "問い合わせ内容",
- "size": 1024,
- "fieldOrder": 1,
- "type": "textarea",
- "required": false,
- "unique": false,
- "index": false,
- "minLength": "1",
- "maxLength": "20000",
- "allowCharTypes": [
- "numeral",
- "alphabet",
- "sign",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "3",
- "name": "email",
- "displayName": "メールアドレス",
- "size": 256,
- "fieldOrder": 2,
- "type": "email",
- "required": true,
- "unique": true,
- "index": true,
- "regexp": "^[a-z]+[.]+[a-z]*@.*",
- "allowDomains": [
- "pi-pe.co.jp"
], - "denyDomains": [
- "example.co.jp"
]
}, - {
- "id": "4",
- "name": "gender",
- "displayName": "性別",
- "size": 8,
- "fieldOrder": 3,
- "type": "select",
- "required": true,
- "index": true,
- "options": [
- {
- "id": "1",
- "label": "男性"
}, - {
- "id": "2",
- "label": "女性"
}
]
}, - {
- "id": "5",
- "name": "inquiry_type",
- "displayName": "問い合わせ種別",
- "size": 125,
- "fieldOrder": 4,
- "type": "multiselect",
- "required": true,
- "index": false,
- "minSelection": "1",
- "maxSelection": "4",
- "options": [
- {
- "id": "1",
- "label": "資料請求"
}, - {
- "id": "2",
- "label": "見積"
}, - {
- "id": "3",
- "label": "サポート"
}, - {
- "id": "4",
- "label": "その他"
}
]
}, - {
- "id": "6",
- "name": "inquiry_ID",
- "displayName": "問い合わせID",
- "size": 8,
- "fieldOrder": 5,
- "type": "integer",
- "required": true,
- "unique": true,
- "index": true,
- "minRange": "1",
- "maxRange": "10000"
}, - {
- "id": "7",
- "name": "weight",
- "displayName": "重量",
- "size": 8,
- "fieldOrder": 6,
- "type": "double",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "0",
- "maxRange": "100.0",
- "decimalDigit": {
- "digitNumber": "1",
- "enableRoundDown": false
}
}, - {
- "id": "8",
- "name": "phone",
- "displayName": "電話番号",
- "size": 19,
- "fieldOrder": 7,
- "type": "phone",
- "required": true,
- "unique": true,
- "index": true,
- "phoneRegionCode": "JP"
}, - {
- "id": "9",
- "name": "response_date_time",
- "displayName": "対応日時",
- "size": 8,
- "fieldOrder": 8,
- "type": "dateTime",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "1989-12-31T15:00:00Z",
- "maxRange": "2021-12-31T14:30:00Z"
}, - {
- "id": "10",
- "name": "response_date",
- "displayName": "対応日付",
- "size": 4,
- "fieldOrder": 9,
- "type": "date",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "1900-01-01",
- "maxRange": "2021-12-31"
}, - {
- "id": "11",
- "name": "preferred_date",
- "displayName": "希望日",
- "size": 8,
- "fieldOrder": 10,
- "type": "monthDay",
- "required": false,
- "unique": false,
- "index": false,
- "minRange": "01-01",
- "maxRange": "12-31"
}, - {
- "id": "12",
- "name": "preferred_time",
- "displayName": "希望時刻",
- "size": 8,
- "fieldOrder": 11,
- "type": "time",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "06:00:00",
- "maxRange": "12:00:00"
}, - {
- "id": "13",
- "name": "file",
- "displayName": "添付ファイル",
- "size": "null",
- "fieldOrder": 12,
- "type": "file",
- "required": true,
- "allowFileExtensionCategories": [
- "text"
], - "allowFileExtensions": [
- "jpe",
- "jpg",
- "txt",
- "csv",
- "tsv"
], - "maxFiles": "10",
- "maxFileSize": "104857600"
}, - {
- "id": "14",
- "name": "password",
- "displayName": "パスワード",
- "size": 128,
- "fieldOrder": 13,
- "type": "password",
- "required": true,
- "minLength": "8",
- "maxLength": "128",
- "allowCharTypes": [
- "numeral",
- "sign",
- "lowercase_alphabet",
- "uppercase_alphabet"
], - "minCharTypes": "4"
}, - {
- "id": "15",
- "name": "customer",
- "displayName": "顧客",
- "size": 8,
- "fieldOrder": 14,
- "type": "reference",
- "required": true,
- "referenceDb": {
- "id": "1",
- "name": "customer_address",
- "displayName": "顧客アドレス"
}, - "referenceMultiple": true,
- "referenceLabelField": {
- "type": "_id",
- "id": "_id",
- "name": "_id",
- "displayName": "(ID)"
}, - "referenceUnique": false,
- "minReference": "1",
- "maxReference": "10",
- "onReferenceDelete": "restrict",
- "multipleUnique": "1"
}, - {
- "id": "16",
- "name": "response_person",
- "displayName": "問い合わせ担当者",
- "size": 320,
- "fieldOrder": 15,
- "type": "user",
- "defaultValue": {
- "type": "dynamic",
- "valueType": 5,
- "isOverwrite": true
}, - "required": true,
- "unique": false,
- "index": false
}
], - "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2021-01-28T03:57:23Z",
- "updatedAt": "2021-01-28T03:57:23Z"
}
], - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
DBを取得
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Authority | string Default: use Enum: "use" "manage" Example: manage アプリ権限種別 利用または管理のどちらの立場としてAPIを実行しようとしているのかを指定する
ヘッダーの指定を省略した場合、 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール
ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string DBID |
name | string [ 1 .. 64 ] characters 識別名 重複不可 アルファベット大文字・小文字、数字、アンダースコアのみ使用可能 ただし最初の文字はアルファベットでなければならない 未指定の場合、自動発行 |
displayName | string [ 1 .. 64 ] characters DB表示名 |
description | string [ 0 .. 512 ] characters DB説明 |
revision | string DBリビジョン |
Array of objects フィールド一覧 | |
object 作成者 | |
object 更新者 更新がないレコードの場合は作成者と同じ | |
createdAt | string <date-time> 作成日時 |
updatedAt | string <date-time> 更新日時 更新がないレコードの場合は作成日時と同じ |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "id": "100",
- "name": "inquirydb",
- "displayName": "問い合わせ管理DB",
- "description": "問い合わせを管理するDBです",
- "revision": "1",
- "fields": [
- {
- "id": "1",
- "name": "name",
- "displayName": "氏名",
- "size": 128,
- "fieldOrder": 0,
- "type": "text",
- "required": true,
- "unique": false,
- "index": true,
- "minLength": "1",
- "maxLength": "128",
- "allowCharTypes": [
- "alphabet",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "2",
- "name": "inquiry_detail",
- "displayName": "問い合わせ内容",
- "size": 1024,
- "fieldOrder": 1,
- "type": "textarea",
- "required": false,
- "unique": false,
- "index": false,
- "minLength": "1",
- "maxLength": "20000",
- "allowCharTypes": [
- "numeral",
- "alphabet",
- "sign",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "3",
- "name": "email",
- "displayName": "メールアドレス",
- "size": 256,
- "fieldOrder": 2,
- "type": "email",
- "required": true,
- "unique": true,
- "index": true,
- "regexp": "^[a-z]+[.]+[a-z]*@.*",
- "allowDomains": [
- "pi-pe.co.jp"
], - "denyDomains": [
- "example.co.jp"
]
}, - {
- "id": "4",
- "name": "gender",
- "displayName": "性別",
- "size": 8,
- "fieldOrder": 3,
- "type": "select",
- "required": true,
- "index": true,
- "options": [
- {
- "id": "1",
- "label": "男性"
}, - {
- "id": "2",
- "label": "女性"
}
]
}, - {
- "id": "5",
- "name": "inquiry_type",
- "displayName": "問い合わせ種別",
- "size": 125,
- "fieldOrder": 4,
- "type": "multiselect",
- "required": true,
- "index": false,
- "minSelection": "1",
- "maxSelection": "4",
- "options": [
- {
- "id": "1",
- "label": "資料請求"
}, - {
- "id": "2",
- "label": "見積"
}, - {
- "id": "3",
- "label": "サポート"
}, - {
- "id": "4",
- "label": "その他"
}
]
}, - {
- "id": "6",
- "name": "inquiry_ID",
- "displayName": "問い合わせID",
- "size": 8,
- "fieldOrder": 5,
- "type": "integer",
- "required": true,
- "unique": true,
- "index": true,
- "minRange": "1",
- "maxRange": "10000"
}, - {
- "id": "7",
- "name": "weight",
- "displayName": "重量",
- "size": 8,
- "fieldOrder": 6,
- "type": "double",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "0",
- "maxRange": "100.0",
- "decimalDigit": {
- "digitNumber": "1",
- "enableRoundDown": false
}
}, - {
- "id": "8",
- "name": "phone",
- "displayName": "電話番号",
- "size": 19,
- "fieldOrder": 7,
- "type": "phone",
- "required": true,
- "unique": true,
- "index": true,
- "phoneRegionCode": "JP"
}, - {
- "id": "9",
- "name": "response_date_time",
- "displayName": "対応日時",
- "size": 8,
- "fieldOrder": 8,
- "type": "dateTime",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "1989-12-31T15:00:00Z",
- "maxRange": "2021-12-31T14:30:00Z"
}, - {
- "id": "10",
- "name": "response_date",
- "displayName": "対応日付",
- "size": 4,
- "fieldOrder": 9,
- "type": "date",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "1900-01-01",
- "maxRange": "2021-12-31"
}, - {
- "id": "11",
- "name": "preferred_date",
- "displayName": "希望日",
- "size": 8,
- "fieldOrder": 10,
- "type": "monthDay",
- "required": false,
- "unique": false,
- "index": false,
- "minRange": "01-01",
- "maxRange": "12-31"
}, - {
- "id": "12",
- "name": "preferred_time",
- "displayName": "希望時刻",
- "size": 8,
- "fieldOrder": 11,
- "type": "time",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "06:00:00",
- "maxRange": "12:00:00"
}, - {
- "id": "13",
- "name": "file",
- "displayName": "添付ファイル",
- "size": "null",
- "fieldOrder": 12,
- "type": "file",
- "required": true,
- "allowFileExtensionCategories": [
- "text"
], - "allowFileExtensions": [
- "jpe",
- "jpg",
- "txt",
- "csv",
- "tsv"
], - "maxFiles": "10",
- "maxFileSize": "104857600"
}, - {
- "id": "14",
- "name": "password",
- "displayName": "パスワード",
- "size": 128,
- "fieldOrder": 13,
- "type": "password",
- "required": true,
- "minLength": "8",
- "maxLength": "128",
- "allowCharTypes": [
- "numeral",
- "sign",
- "lowercase_alphabet",
- "uppercase_alphabet"
], - "minCharTypes": "4"
}, - {
- "id": "15",
- "name": "customer",
- "displayName": "顧客",
- "size": 8,
- "fieldOrder": 14,
- "type": "reference",
- "required": true,
- "referenceDb": {
- "id": "1",
- "name": "customer_address",
- "displayName": "顧客アドレス"
}, - "referenceMultiple": true,
- "referenceLabelField": {
- "type": "_id",
- "id": "_id",
- "name": "_id",
- "displayName": "(ID)"
}, - "referenceUnique": false,
- "minReference": "1",
- "maxReference": "10",
- "onReferenceDelete": "restrict",
- "multipleUnique": "1"
}, - {
- "id": "16",
- "name": "response_person",
- "displayName": "問い合わせ担当者",
- "size": 320,
- "fieldOrder": 15,
- "type": "user",
- "defaultValue": {
- "type": "dynamic",
- "valueType": 5,
- "isOverwrite": true
}, - "required": true,
- "unique": false,
- "index": false
}
], - "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2021-01-28T03:57:23Z",
- "updatedAt": "2021-01-28T03:57:23Z"
}
指定した条件に一致するレコードの一覧を取得
app required | string アプリID |
db required | string DBID |
fields | Array of strings <= 150 items Default: "全フィールド" Example: fields=name,age 出力するフィールド識別名を配列で指定 最大リストサイズ150 メタ情報フィールドは指定不可。レスポンスに必ず含まれる |
query | string Example: query=AAA フィールドを横断して検索する際の検索文字列を指定する 検索は部分一致検索となる 128文字まで指定可能で、129文字以上指定するとエラーとなる queryFieldsで検索対象のフィールドを指定する queryFieldsを指定しない場合、エラーとなる |
queryFields | Array of strings Example: queryFields="1,2,5,100" フィールドを横断して文字列検索する際の検索対象のフィールドIDを指定する テキスト型、テキストエリア型、メールアドレス型が指定可能 複数フィールドを指定する場合はカンマ区切りで指定し、OR検索となる 参照先のフィールドは指定不可 queryで検索対象の文字列を指定する queryを指定しない場合、エラーとなる |
where | string Example: where=@age >= 30 AND @name = 'yamada' +は%2b、%は%%でエンコードされる where=1%2b1=2 here=1%%1=1 抽出条件式 詳細はサポートサイトをご確認ください。 |
referrer | string Example: referrer=123.4:56 参照元から参照されているレコードを絞り込む
|
includeUnauthorized | boolean Default: false Example: includeUnauthorized=true アプリロールで閲覧権限のないレコードを結果に含める
ただしその場合、フィールド値は返されず、キーは |
optionsFormat | string Default: "id" Enum: "id" "label" Example: optionsFormat=label セレクト、マルチセレクト型のレスポンス形式 |
enableTotalCount | boolean Default: false trueの場合検索結果の対象件数を取得する trueにした場合、登録されているレコード数が多いと、レスポンスまでの時間が長くなる falseにした場合、prevOffset、nextOffset、totalCount はnullを出力 |
sort | Array of strings Default: "_id:desc" Example: sort=_id:asc ソートする対象:_id、フィールド識別名、_createdAt、_updatedAt
":asc"は昇順、":desc"は降順でソート
ソート文字列をカンマで区切り、複数のフィールド(最大3フィールド)でソート可能
複数フィールドの場合、先頭から第一ソート、第二ソート、第三ソートとなる
マルチセレクト、ファイル、パスワード、参照フィールド型および_createdBy、_updatedByは指定不可
|
offset | integer [ 0 .. 10000 ] Default: 0 Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
Array of objects レコードのリスト | |
object セレクト、マルチセレクトの選択項目 セレクト、マルチセレクト以外のフィールドタイプには付与されない | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull enableTotalCount=true を指定した場合のみ返される |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull enableTotalCount=true を指定した場合のみ返される |
totalCount | integer 検索結果の全件数 enableTotalCount=true を指定した場合のみ返される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "items": [
- {
- "_id": "10",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_updatedBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "(textField)": "text",
- "(textareaField)": "textarea\ntextarea",
- "(emailField)": "spiral@example.com",
- "(phoneField)": "+81 80-1111-2222",
- "(integerField)": "100",
- "(doubleField)": "200.1",
- "(dateField)": "2020-04-30",
- "(monthDayField)": "04-30",
- "(timeField)": "17:06:29",
- "(dateTimeField)": "2020-04-30T17:06:29Z",
- "(selectField)": "0",
- "(multiselectField)": [
- "0",
- "1"
], - "(fileField)": [
- {
- "fileKey": "100_196a921286f74e15cd307dc42f1df4523b3e25808659789631092b458d57676e",
- "fileName": "sample.png",
- "fileSize": "5082",
- "createdAt": "2020-04-29T09:15:58Z"
}, - {
- "fileKey": "200_3503ac054cd878b7b8f4fa66f8a9f4393664c599f496f653e5834a97cfa6b3b2",
- "fileName": "sample.txt",
- "fileSize": "1024",
- "createdAt": "2020-04-29T09:20:58Z"
}
], - "(passwordField)": {
- "hasValue": "true"
}, - "(referenceField)": {
}, - "(userField enableUser)": {
- "id": 9,
- "firstName": "太郎",
- "lastName": "山田",
- "email": "spiral@example.com",
- "subEmail": "spiral-sub@example.com",
- "enabled": true
}, - "(userField disableUser)": {
- "id": 10,
- "enabled": false
}
}
], - "options": {
- "(selectField)": {
- "(optionId)": "ラベル1"
}, - "(multiselectField)": {
- "(optionId)": "ラベル1"
}
}, - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200,
- "totalFileUsage": 1073741824
}
レコードを登録
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
string or array キーにフィールドの識別名を指定 バリューにはキーで指定したフィールドへ格納する値を指定 マルチセレクト、ファイル、複数レコード参照の参照フィールドでは値文字列のリスト それ以外のフィールドタイプでは値文字列 ファイル型フィールドは有効期限を過ぎたファイルキーを指定するとエラー ユーザフィールドは無効ユーザのユーザIDやAPIエージェントのIDを指定するとエラー 指定する値文字列はフィールドタイプによって異なります。詳細はサポートサイトをご確認ください。 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
object レコード | |
object セレクト、マルチセレクトの選択項目 セレクト、マルチセレクト以外のフィールドタイプには付与されない |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "(textField)": "text",
- "(textareaField)": "textarea\ntextarea",
- "(emailField)": "spiral@example.com",
- "(phoneField)": "+81 80-1111-2222",
- "(integerField)": "100",
- "(doubleField)": "200.1",
- "(dateField)": "2020-04-30",
- "(monthDayField)": "04-30",
- "(timeField)": "17:06:29",
- "(dateTimeField)": "2020-04-30T17:06:29Z",
- "(selectField)": "0",
- "(multiselectField)": [
- "0",
- "1"
], - "(fileField)": [
- "100_196a921286f74e15cd307dc42f1df4523b3e25808659789631092b458d57676e",
- "200_3503ac054cd878b7b8f4fa66f8a9f4393664c599f496f653e5834a97cfa6b3b2"
], - "(passwordField)": "pK-4Pqec",
- "(single referenceField)": "14",
- "(multi referenceField)": [
- "1",
- "3",
- "5"
], - "(userField)": "1"
}
{- "item": {
- "_id": "10",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_updatedBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "(textField)": "text",
- "(textareaField)": "textarea\ntextarea",
- "(emailField)": "spiral@example.com",
- "(phoneField)": "+81 80-1111-2222",
- "(integerField)": "100",
- "(doubleField)": "200.1",
- "(dateField)": "2020-04-30",
- "(monthDayField)": "04-30",
- "(timeField)": "17:06:29",
- "(dateTimeField)": "2020-04-30T17:06:29Z",
- "(selectField)": "0",
- "(multiselectField)": [
- "0",
- "1"
], - "(fileField)": [
- {
- "fileKey": "100_196a921286f74e15cd307dc42f1df4523b3e25808659789631092b458d57676e",
- "fileName": "sample.png",
- "fileSize": "5082",
- "createdAt": "2020-04-29T09:15:58Z"
}, - {
- "fileKey": "200_3503ac054cd878b7b8f4fa66f8a9f4393664c599f496f653e5834a97cfa6b3b2",
- "fileName": "sample.txt",
- "fileSize": "1024",
- "createdAt": "2020-04-29T09:20:58Z"
}
], - "(passwordField)": {
- "hasValue": "true"
}, - "(single referenceField)": {
- "value": {
- "_id": "1",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_createOperationSourceId": "10",
- "_updatedBy": {
- "type": "user",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "_updateOperationSourceId": "10",
- "email": "yamada@example.com"
}
}, - "(multi referenceField)": {
- "value": [
- {
- "_id": "1",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_createOperationSourceId": "10",
- "_updatedBy": {
- "type": "user",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "_updateOperationSourceId": "10",
- "shopName": "赤坂店"
}, - {
- "_id": "3",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_createOperationSourceId": "10",
- "_updatedBy": {
- "type": "user",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "_updateOperationSourceId": "10",
- "shopName": "青山店"
}
]
}, - "(userField enableUser)": {
- "id": 9,
- "firstName": "太郎",
- "lastName": "山田",
- "email": "spiral@example.com",
- "subEmail": "spiral-sub@example.com",
- "enabled": true
}, - "(userField disableUser)": {
- "id": 10,
- "enabled": false
}
}, - "options": {
- "(selectField)": {
- "(optionId)": "ラベル1"
}, - "(multiselectField)": {
- "(optionId)": "ラベル1"
}
}
}
指定DBの指定レコードIDのレコードを取得
app required | string アプリID |
db required | string DBID |
recordId required | string レコードID |
optionsFormat | string Default: "id" Enum: "id" "label" Example: optionsFormat=label セレクト、マルチセレクト型のレスポンス形式 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
object レコード | |
object セレクト、マルチセレクトの選択項目 セレクト、マルチセレクト以外のフィールドタイプには付与されない |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "item": {
- "_id": "10",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_updatedBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "(textField)": "text",
- "(textareaField)": "textarea\ntextarea",
- "(emailField)": "spiral@example.com",
- "(phoneField)": "+81 80-1111-2222",
- "(integerField)": "100",
- "(doubleField)": "200.1",
- "(dateField)": "2020-04-30",
- "(monthDayField)": "04-30",
- "(timeField)": "17:06:29",
- "(dateTimeField)": "2020-04-30T17:06:29Z",
- "(selectField)": "0",
- "(multiselectField)": [
- "0",
- "1"
], - "(fileField)": [
- {
- "fileKey": "100_196a921286f74e15cd307dc42f1df4523b3e25808659789631092b458d57676e",
- "fileName": "sample.png",
- "fileSize": "5082",
- "createdAt": "2020-04-29T09:15:58Z"
}, - {
- "fileKey": "200_3503ac054cd878b7b8f4fa66f8a9f4393664c599f496f653e5834a97cfa6b3b2",
- "fileName": "sample.txt",
- "fileSize": "1024",
- "createdAt": "2020-04-29T09:20:58Z"
}
], - "(passwordField)": {
- "hasValue": "true"
}, - "(single referenceField)": {
- "value": {
- "_id": "1",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_createOperationSourceId": "10",
- "_updatedBy": {
- "type": "user",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "_updateOperationSourceId": "10",
- "email": "yamada@example.com"
}
}, - "(multi referenceField)": {
- "value": [
- {
- "_id": "1",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_createOperationSourceId": "10",
- "_updatedBy": {
- "type": "user",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "_updateOperationSourceId": "10",
- "shopName": "赤坂店"
}, - {
- "_id": "3",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_createOperationSourceId": "10",
- "_updatedBy": {
- "type": "user",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "_updateOperationSourceId": "10",
- "shopName": "青山店"
}
]
}, - "(userField enableUser)": {
- "id": 9,
- "firstName": "太郎",
- "lastName": "山田",
- "email": "spiral@example.com",
- "subEmail": "spiral-sub@example.com",
- "enabled": true
}, - "(userField disableUser)": {
- "id": 10,
- "enabled": false
}
}, - "options": {
- "(selectField)": {
- "(optionId)": "ラベル1"
}, - "(multiselectField)": {
- "(optionId)": "ラベル1"
}
}
}
指定DBの指定レコードIDのレコードを変更する
app required | string アプリID |
db required | string DBID |
recordId required | string レコードID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
_revision | string リビジョン番号 更新時、指定されたrevisionが最新のものでない場合、エラーとなる 指定しない場合はチェックを行わない |
(fieldName) | string キーにフィールドの識別名を指定 バリューにはキーで指定したフィールドへ格納する値を指定 ファイル型フィールドは有効期限を過ぎたファイルキーを指定するとエラー ユーザフィールドは無効ユーザのユーザIDやAPIエージェントのIDを指定するとエラー 指定する値文字列はフィールドタイプによって異なります。詳細はサポートサイトをご確認ください。 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
object レコード | |
object セレクト、マルチセレクトの選択項目 セレクト、マルチセレクト以外のフィールドタイプには付与されない |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "_revision": "10",
- "(textField)": "text",
- "(textareaField)": "textarea\ntextarea",
- "(emailField)": "spiral@example.com",
- "(phoneField)": "+81 80-1111-2222",
- "(integerField)": "100",
- "(doubleField)": "200.1",
- "(dateField)": "2020-04-30",
- "(monthDayField)": "04-30",
- "(timeField)": "17:06:29",
- "(dateTimeField)": "2020-04-30T17:06:29Z",
- "(selectField)": "0",
- "(multiselectField)": [
- "0",
- "1"
], - "(fileField)": [
- "100_196a921286f74e15cd307dc42f1df4523b3e25808659789631092b458d57676e",
- "200_3503ac054cd878b7b8f4fa66f8a9f4393664c599f496f653e5834a97cfa6b3b2"
], - "(passwordField)": "pK-4Pqec",
- "(single referenceField)": "14",
- "(multi referenceField)": [
- "1",
- "3",
- "5"
], - "(userField)": "1"
}
{- "item": {
- "_id": "10",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_updatedBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "(textField)": "text",
- "(textareaField)": "textarea\ntextarea",
- "(emailField)": "spiral@example.com",
- "(phoneField)": "+81 80-1111-2222",
- "(integerField)": "100",
- "(doubleField)": "200.1",
- "(dateField)": "2020-04-30",
- "(monthDayField)": "04-30",
- "(timeField)": "17:06:29",
- "(dateTimeField)": "2020-04-30T17:06:29Z",
- "(selectField)": "0",
- "(multiselectField)": [
- "0",
- "1"
], - "(fileField)": [
- {
- "fileKey": "100_196a921286f74e15cd307dc42f1df4523b3e25808659789631092b458d57676e",
- "fileName": "sample.png",
- "fileSize": "5082",
- "createdAt": "2020-04-29T09:15:58Z"
}, - {
- "fileKey": "200_3503ac054cd878b7b8f4fa66f8a9f4393664c599f496f653e5834a97cfa6b3b2",
- "fileName": "sample.txt",
- "fileSize": "1024",
- "createdAt": "2020-04-29T09:20:58Z"
}
], - "(passwordField)": "pK-4Pqec",
- "(single referenceField)": {
- "value": {
- "_id": "1",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_createOperationSourceId": "10",
- "_updatedBy": {
- "type": "user",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "_updateOperationSourceId": "10",
- "email": "yamada@example.com"
}
}, - "(multi referenceField)": {
- "value": [
- {
- "_id": "1",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_createOperationSourceId": "10",
- "_updatedBy": {
- "type": "user",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "_updateOperationSourceId": "10",
- "shopName": "赤坂店"
}, - {
- "_id": "3",
- "_unauthorized": false,
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_createOperationSourceId": "10",
- "_updatedBy": {
- "type": "user",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "_updateOperationSourceId": "10",
- "shopName": "青山店"
}
]
}, - "(userField enableUser)": {
- "id": 9,
- "firstName": "太郎",
- "lastName": "山田",
- "email": "spiral@example.com",
- "subEmail": "spiral-sub@example.com",
- "enabled": true
}, - "(userField disableUser)": {
- "id": 10,
- "enabled": false
}
}, - "options": {
- "(selectField)": {
- "(optionId)": "ラベル1"
}, - "(multiselectField)": {
- "(optionId)": "ラベル1"
}
}
}
指定DBの指定レコードIDのレコードを削除する
app required | string アプリID |
db required | string DBID |
recordId required | string レコードID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
X-Spiral-App-Role | string Example: "employee" アプリロール |
指定した条件に一致するレコードの一覧を取得 フィールド指定する事で参照先DBのフィールドや参照先DBの参照先のフィールドを取得する事ができる 詳細はサポートサイトをご確認ください
app required | string アプリID |
db required | string DBID |
fields | Array of strings <= 150 items Default: "自DBの全フィールド" Example: fields=name,age 出力するフィールド識別名を配列で指定
最大リストサイズ150
参照先DBのフィールドを指定する場合は 自DBのメタ情報フィールドは指定不可。レスポンスに必ず含まれる
参照先DBの参照先のフィールドは、 |
where | string Example: where=@age >= 30 AND @name = 'yamada' +は%2b、%は%%でエンコードされる where=1%2b1=2 here=1%%1=1 抽出条件式 参照先DBのフィールド、参照先DBの参照先のフィールドは指定不可 |
optionsFormat | string Default: "id" Enum: "id" "label" Example: optionsFormat=label セレクト、マルチセレクト型のレスポンス形式 |
enableTotalCount | boolean Default: false trueの場合検索結果の対象件数を取得する trueにした場合、登録されているレコード数が多いと、レスポンスまでの時間が長くなる |
sort | Array of strings Default: "_id:desc" Example: sort=_id:asc ソートする対象:_id、フィールド識別名、_createdAt、_updatedAt ":asc"は昇順、":desc"は降順でソート ソート文字列をカンマで区切り、複数のフィールド(最大3フィールド)でソート可能 複数フィールドの場合、先頭から第一ソート、第二ソート、第三ソートとなる マルチセレクト、ファイル、パスワード、参照フィールド、_createdBy、_updatedBy、参照先DBのフィールド、参照先DBの参照先のフィールドは指定不可 |
offset | integer [ 0 .. 10000 ] Default: 0 Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
Array of objects レコードのリスト | |
object セレクト、マルチセレクトの選択項目 | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "items": [
- {
- "_id": "10",
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_updatedBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "(textField)": "text",
- "(textareaField)": "textarea\ntextarea",
- "(emailField)": "spiral@example.com",
- "(phoneField)": "+81 80-1111-2222",
- "(integerField)": "100",
- "(doubleField)": "200.1",
- "(dateField)": "2020-04-30",
- "(monthDayField)": "04-30",
- "(timeField)": "17:06:29",
- "(dateTimeField)": "2020-04-30T17:06:29Z",
- "(selectField)": "0",
- "(multiselectField)": [
- "0",
- "1"
], - "(fileField)": [
- {
- "fileKey": "100_196a921286f74e15cd307dc42f1df4523b3e25808659789631092b458d57676e",
- "fileName": "sample.png",
- "fileSize": "5082",
- "createdAt": "2020-04-29T09:15:58Z"
}, - {
- "fileKey": "200_3503ac054cd878b7b8f4fa66f8a9f4393664c599f496f653e5834a97cfa6b3b2",
- "fileName": "sample.txt",
- "fileSize": "1024",
- "createdAt": "2020-04-29T09:20:58Z"
}
], - "(passwordField)": {
- "hasValue": "true"
}, - "(userField enableUser)": {
- "id": 9,
- "firstName": "太郎",
- "lastName": "山田",
- "email": "spiral@example.com",
- "subEmail": "spiral-sub@example.com",
- "enabled": true
}, - "(userField disableUser)": {
- "id": 10,
- "enabled": false
}, - "(single referenceField)": "1",
- "(single referenceField)._id": "1",
- "(single referenceField).(textField)": "text",
- "(single referenceField).(textareaField)": "textarea\ntextarea",
- "(single referenceField).(emailField)": "spiral@example.com",
- "(single referenceField).(phoneField)": "+81 80-1111-2222",
- "(single referenceField).(integerField)": "100",
- "(single referenceField).(doubleField)": "200.1",
- "(single referenceField).(dateField)": "2020-04-30",
- "(single referenceField).(monthDayField)": "04-30",
- "(single referenceField).(timeField)": "17:06:29",
- "(single referenceField).(dateTimeField)": "2020-04-30T17:06:29Z",
- "(single referenceField).(selectField)": "0",
- "(single referenceField).(multiselectField)": [
- "0",
- "1"
], - "(single referenceField).(userField enableUser)": {
- "id": 9,
- "firstName": "太郎",
- "lastName": "山田",
- "email": "spiral@example.com",
- "subEmail": "spiral-sub@example.com",
- "enabled": true
}, - "(single referenceField).(userField disableUser)": {
- "id": 10,
- "enabled": false
}, - "(single referenceField).(single referenceField)": "1",
- "(single referenceField).(single referenceField)._id": "1",
- "(single referenceField).(single referenceField).(textField)": "text",
- "(single referenceField).(single referenceField).(textareaField)": "textarea\ntextarea",
- "(single referenceField).(single referenceField).(emailField)": "spiral@example.com",
- "(single referenceField).(single referenceField).(phoneField)": "+81 80-1111-2222",
- "(single referenceField).(single referenceField).(integerField)": "100",
- "(single referenceField).(single referenceField).(doubleField)": "200.1",
- "(single referenceField).(single referenceField).(dateField)": "2020-04-30",
- "(single referenceField).(single referenceField).(monthDayField)": "04-30",
- "(single referenceField).(single referenceField).(timeField)": "17:06:29",
- "(single referenceField).(single referenceField).(dateTimeField)": "2020-04-30T17:06:29Z",
- "(single referenceField).(single referenceField).(selectField)": "0",
- "(single referenceField).(single referenceField).(multiselectField)": [
- "0",
- "1"
], - "(single referenceField).(single referenceField).(userField enableUser)": {
- "id": 9,
- "firstName": "太郎",
- "lastName": "山田",
- "email": "spiral@example.com",
- "subEmail": "spiral-sub@example.com",
- "enabled": true
}, - "(single referenceField).(single referenceField).(userField disableUser)": {
- "id": 10,
- "enabled": false
}, - "(multi referenceField)": [
- "1",
- "3"
], - "(multi referenceField)._id": [
- "1",
- "3"
], - "(multi referenceField).(textField)": [
- "text",
- "text"
], - "(multi referenceField).(emailField)": [
- "spiral@example.com",
- "spiral@example.com"
], - "(multi referenceField).(phoneField)": [
- "+81 80-1111-2222",
- "+81 80-1111-2222"
], - "(multi referenceField).(integerField)": [
- "100",
- "100"
], - "(multi referenceField).(doubleField)": [
- "200.1",
- "200.1"
], - "(multi referenceField).(dateField)": [
- "2020-04-30",
- "2020-04-30"
], - "(multi referenceField).(monthDayField)": [
- "04-30",
- "04-30"
], - "(multi referenceField).(timeField)": [
- "17:06:29",
- "17:06:29"
], - "(multi referenceField).(dateTimeField)": [
- "2020-04-30T17:06:29Z",
- "2020-04-30T17:06:29Z"
], - "(multi referenceField).(selectField)": [
- "0",
- "0"
]
}
], - "options": {
- "(selectField)": {
- "(optionId)": "ラベル1"
}, - "(multiselectField)": {
- "(optionId)": "ラベル1"
}, - "(single referenceField).(selectField)": {
- "(optionId)": "ラベル1"
}, - "(single referenceField).(multiselectField)": {
- "(optionId)": "ラベル1"
}, - "(single referenceField).(single referenceField).(selectField)": {
- "(optionId)": "ラベル1"
}, - "(single referenceField).(single referenceField).(multiselectField)": {
- "(optionId)": "ラベル1"
}, - "(multi referenceField).(selectField)": {
- "(optionId)": "ラベル1"
}
}, - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
指定DBの指定レコードIDのレコードを取得 フィールド指定する事で参照先DBのフィールドや参照先DBの参照先のフィールドを取得する事ができる 詳細はサポートサイトをご確認ください
app required | string アプリID |
db required | string DBID |
recordId required | string レコードID |
fields | Array of strings <= 150 items Default: "自DBの全フィールド" Example: fields=name,age 出力するフィールド識別名を配列で指定
最大リストサイズ150
参照先DBのフィールドを指定する場合は 自DBのメタ情報フィールドは指定不可。レスポンスに必ず含まれる
参照先DBの参照先のフィールドは、 |
optionsFormat | string Default: "id" Enum: "id" "label" Example: optionsFormat=label セレクト、マルチセレクト型のレスポンス形式 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
object レコード | |
object セレクト、マルチセレクトの選択項目 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "item": {
- "_id": "10",
- "_revision": "10",
- "_createdBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_createdAt": "2020-04-30T17:06:29Z",
- "_updatedBy": {
- "type": "user",
- "from": "ui",
- "userId": "100"
}, - "_updatedAt": "2020-04-30T17:06:29Z",
- "(textField)": "text",
- "(textareaField)": "textarea\ntextarea",
- "(emailField)": "spiral@example.com",
- "(phoneField)": "+81 80-1111-2222",
- "(integerField)": "100",
- "(doubleField)": "200.1",
- "(dateField)": "2020-04-30",
- "(monthDayField)": "04-30",
- "(timeField)": "17:06:29",
- "(dateTimeField)": "2020-04-30T17:06:29Z",
- "(selectField)": "0",
- "(multiselectField)": [
- "0",
- "1"
], - "(fileField)": [
- {
- "fileKey": "100_196a921286f74e15cd307dc42f1df4523b3e25808659789631092b458d57676e",
- "fileName": "sample.png",
- "fileSize": "5082",
- "createdAt": "2020-04-29T09:15:58Z"
}, - {
- "fileKey": "200_3503ac054cd878b7b8f4fa66f8a9f4393664c599f496f653e5834a97cfa6b3b2",
- "fileName": "sample.txt",
- "fileSize": "1024",
- "createdAt": "2020-04-29T09:20:58Z"
}
], - "(passwordField)": {
- "hasValue": "true"
}, - "(userField enableUser)": {
- "id": 9,
- "firstName": "太郎",
- "lastName": "山田",
- "email": "spiral@example.com",
- "subEmail": "spiral-sub@example.com",
- "enabled": true
}, - "(userField disableUser)": {
- "id": 10,
- "enabled": false
}, - "(single referenceField)": "1",
- "(single referenceField)._id": "1",
- "(single referenceField).(textField)": "text",
- "(single referenceField).(textareaField)": "textarea\ntextarea",
- "(single referenceField).(emailField)": "spiral@example.com",
- "(single referenceField).(phoneField)": "+81 80-1111-2222",
- "(single referenceField).(integerField)": "100",
- "(single referenceField).(doubleField)": "200.1",
- "(single referenceField).(dateField)": "2020-04-30",
- "(single referenceField).(monthDayField)": "04-30",
- "(single referenceField).(timeField)": "17:06:29",
- "(single referenceField).(dateTimeField)": "2020-04-30T17:06:29Z",
- "(single referenceField).(selectField)": "0",
- "(single referenceField).(multiselectField)": [
- "0",
- "1"
], - "(single referenceField).(userField enableUser)": {
- "id": 9,
- "firstName": "太郎",
- "lastName": "山田",
- "email": "spiral@example.com",
- "subEmail": "spiral-sub@example.com",
- "enabled": true
}, - "(single referenceField).(userField disableUser)": {
- "id": 10,
- "enabled": false
}, - "(single referenceField).(single referenceField)": "1",
- "(single referenceField).(single referenceField)._id": "1",
- "(single referenceField).(single referenceField).(textField)": "text",
- "(single referenceField).(single referenceField).(textareaField)": "textarea\ntextarea",
- "(single referenceField).(single referenceField).(emailField)": "spiral@example.com",
- "(single referenceField).(single referenceField).(phoneField)": "+81 80-1111-2222",
- "(single referenceField).(single referenceField).(integerField)": "100",
- "(single referenceField).(single referenceField).(doubleField)": "200.1",
- "(single referenceField).(single referenceField).(dateField)": "2020-04-30",
- "(single referenceField).(single referenceField).(monthDayField)": "04-30",
- "(single referenceField).(single referenceField).(timeField)": "17:06:29",
- "(single referenceField).(single referenceField).(dateTimeField)": "2020-04-30T17:06:29Z",
- "(single referenceField).(single referenceField).(selectField)": "0",
- "(single referenceField).(single referenceField).(multiselectField)": [
- "0",
- "1"
], - "(single referenceField).(single referenceField).(userField enableUser)": {
- "id": 9,
- "firstName": "太郎",
- "lastName": "山田",
- "email": "spiral@example.com",
- "subEmail": "spiral-sub@example.com",
- "enabled": true
}, - "(single referenceField).(single referenceField).(userField disableUser)": {
- "id": 10,
- "enabled": false
}, - "(multi referenceField)": [
- "1",
- "3"
], - "(multi referenceField)._id": [
- "1",
- "3"
], - "(multi referenceField).(textField)": [
- "text",
- "text"
], - "(multi referenceField).(emailField)": [
- "spiral@example.com",
- "spiral@example.com"
], - "(multi referenceField).(phoneField)": [
- "+81 80-1111-2222",
- "+81 80-1111-2222"
], - "(multi referenceField).(integerField)": [
- "100",
- "100"
], - "(multi referenceField).(doubleField)": [
- "200.1",
- "200.1"
], - "(multi referenceField).(dateField)": [
- "2020-04-30",
- "2020-04-30"
], - "(multi referenceField).(monthDayField)": [
- "04-30",
- "04-30"
], - "(multi referenceField).(timeField)": [
- "17:06:29",
- "17:06:29"
], - "(multi referenceField).(dateTimeField)": [
- "2020-04-30T17:06:29Z",
- "2020-04-30T17:06:29Z"
], - "(multi referenceField).(selectField)": [
- "0",
- "0"
]
}, - "options": {
- "(selectField)": {
- "(optionId)": "ラベル1"
}, - "(multiselectField)": {
- "(optionId)": "ラベル1"
}, - "(single referenceField).(selectField)": {
- "(optionId)": "ラベル1"
}, - "(single referenceField).(multiselectField)": {
- "(optionId)": "ラベル1"
}, - "(single referenceField).(single referenceField).(selectField)": {
- "(optionId)": "ラベル1"
}, - "(single referenceField).(single referenceField).(multiselectField)": {
- "(optionId)": "ラベル1"
}, - "(multi referenceField).(selectField)": {
- "(optionId)": "ラベル1"
}
}
}
レコード識別子とパスワードの一致を検証する レコードを識別する為の入力必須かつ重複不可のフィールドとパスワード型フィールドのあるデータベースに対して使用する
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
required | object レコードの識別に使用する入力必須かつ重複不可のフィールド フィールドの値が一致するレコードを検索して検証する |
required | object 検証対象のフィールド: パスワード、テキスト、電話、日付 検証する値と登録値の一致を確認する 登録値がnullの場合は、検証する値にnullを指定しても検証結果は失敗になる |
X-Spiral-App-Role | string Example: "employee" アプリロール |
verified | boolean 検証結果 trueの場合、レコードが存在し、パスワードが一致する。 falseの場合、なにかしらの理由でレコード識別子とパスワードの一致が確認できない。 true true false |
recordId | string レコードID |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "idField": {
- "customerId(textField or emailField)": "bc100325"
}, - "passwordField": {
- "loginPassword(passwordField)": "pK-4Pqec"
}
}
{- "verified": "true",
- "recordId": "10"
}
指定DBに最大1000件のレコードを一括登録する パスワード型フィールド、ファイル型フィールド、ユーザフィールドは対象外の為、指定するとエラー
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
required | Array of objects <= 1000 items レコードの配列 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
ids | Array of strings レコードIDの配列 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "records": [
- {
- "(textField)": "text",
- "(textareaField)": "textarea\ntextarea",
- "(emailField)": "spiral@example.com",
- "(phoneField)": "+81 80-1111-2222",
- "(integerField)": "100",
- "(doubleField)": "200.1",
- "(dateField)": "2020-04-30",
- "(monthDayField)": "04-30",
- "(timeField)": "17:06:29",
- "(dateTimeField)": "2020-04-30T17:06:29Z",
- "(selectField)": "0",
- "(multiselectField)": [
- "0",
- "1"
], - "(single referenceField)": "14",
- "(multi referenceField)": [
- "1",
- "3",
- "5"
]
}
]
}
{- "ids": [
- "1",
- "2"
]
}
レコードを一括更新する 最大1,000件まで指定可能 更新キーは、入力必須かつ重複不可フィールドまたはレコードIDで指定する。フィールド指定の場合はテキスト型またはメールアドレス型が指定可能。これら以外を指定するとエラー。 パスワード型フィールド、ファイル型フィールド、ユーザフィールドは更新不可。更新対象に指定した場合はエラー。 更新対象のレコードが存在しない場合は無視する 更新する値がない場合でも更新日時やリビジョン番号は更新される
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
required | Array of objects <= 1000 items レコードの配列 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
ids | Array of strings レコードIDの配列 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "records": [
- {
- "_id": "10",
- "_updateKey": {
- "customerId(textField or emailField)": "bc100325"
}, - "_revision": "10",
- "fullName(textField)": "田中太郎",
- "description(textareaField)": "特になし\n",
- "email(emailField)": "spiral@example.com",
- "phoneNumber(phoneField)": "+81 80-1111-2222",
- "age(integerField)": "30",
- "height(doubleField)": "170.1",
- "applyDate(dateField)": "2020-04-30",
- "birthDay(monthDayField)": "04-30",
- "requestTime(timeField)": "17:30:00",
- "orderedAt(dateTimeField)": "2020-04-30T17:06:29Z",
- "prefecture(selectField)": "3",
- "choice(multiselectField)": [
- "0",
- "1"
], - "charge(single referenceField)": "14",
- "favoriteShop(multi referenceField)": [
- "1",
- "3",
- "5"
]
}
]
}
{- "ids": [
- "1",
- "2"
]
}
指定した削除キーのレコードを最大1000件一括削除する
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
ids | Array of strings <= 1000 items レコードIDの配列 idsを指定した場合は、削除キーがレコードIDとなる idsまたはkeyのどちらかを必ず指定 |
key | string 削除キーに指定する入力必須かつ重複不可のフィールド テキスト、メールアドレス型のフィールドを識別名で指定する idsまたはkeyのどちらかを必ず指定 |
values | Array of strings <= 1000 items 削除キーを指定した場合の値を配列で指定 keyを指定した場合は必須 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "ids": [
- "10",
- "20"
], - "key": "CustomerId",
- "values": [
- "CU0001",
- "CU0002"
]
}
指定DBの一括出力依頼の一覧を取得 一括出力依頼が完了しているとstatusがsucceededに更新され、ファイルURLを取得できる 生成されたファイルは24時間後に自動削除される statusがcanceled、succeeded、failedの依頼は14日後に自動削除される
app required | string アプリID |
db required | string DBID |
sort | string Default: "createdAt:desc" Enum: "id:asc" "id:desc" "status:asc" "status:desc" "createdAt:asc" "createdAt:desc" "finishedAt:asc" "finishedAt:desc" ソートする対象 (一括出力依頼ID、ステータス、作成日時、処理終了日時) フィールド識別名の後に":asc"を入れると昇順、":desc"を入れると降順 |
offset | integer Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
Array of objects レコードの一括出力依頼のリスト | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "items": [
- {
- "id": "100",
- "operatedFrom": "ui",
- "fileName": "string",
- "fileFormat": "tsv",
- "characterCode": "utf-8",
- "hasHeader": true,
- "headerType": "name",
- "headerLanguage": "ja",
- "sort": "_id:DESC",
- "where": "string",
- "exists": {
- "type": "exists",
- "fieldId": "100",
- "otherDbId": "200",
- "otherDbFieldId": "200"
}, - "excludeEmailError": {
- "fieldId": "100",
- "count": 1
}, - "fields": [
- {
- "field": "_id"
}, - {
- "field": "_createdAt",
- "format": "dateTime"
}, - {
- "field": "1",
- "format": "E164"
}
], - "status": "waiting",
- "files": [
- {
- "fileSize": 104857600,
- "recordCount": 81752
}, - {
- "fileSize": 31457280,
- "recordCount": 21590
}
], - "errorMessage": [
- {
- "code": "internalError",
- "message": "internal error",
- "locationType": null,
- "location": null
}, - {
- "code": "invalidParameter",
- "message": "does not exist",
- "locationType": "body",
- "location": "/sort"
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z",
- "fileDeletedAt": "2019-08-24T14:15:22Z",
- "recordValueTimeZone": "Asia/Tokyo"
}
], - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
指定DBのレコードを一括出力依頼を作成 出力されたファイルは、レコードの一括出力依頼を確認APIでファイルURLを取得してダウンロードする ファイルは100MiB単位で分割される 生成されたファイルは1アカウントあたり最大30ファイルまで一時的に保存される 30ファイル分が一時保存されている状態で新規依頼をリクエストすると、作成日時が一番古いファイルから削除される また一時保存されているファイルは生成されてから24時間後に自動削除される statusがwaitingの依頼は最大5件まで依頼可能
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
fileName | string [ 1 .. 128 ] characters Default: "{DB識別名}_{依頼日時の年月日時分}" ファイル名 アルファベット大文字・小文字、数字のみ使用可能 |
fileFormat | string Default: "tsv" Enum: "tsv" "csv" ファイルフォーマット |
characterCode | string Default: "utf-8" Enum: "utf-8" "utf-8WithBOM" 文字コード |
hasHeader | boolean Default: true trueの場合、ヘッダありのファイルを出力 falseの場合、ヘッダなしのファイルを出力 |
headerType | string Default: "name" Enum: "name" "displayName" "fieldId" ヘッダに出力するタイプ
|
headerLanguage | string Default: "ja" Enum: "ja" "en" メタ情報フィールドのヘッダーの言語を指定するために使用する
|
sort | string Default: "_id:ASC" ファイル内のレコードの並び順 ソートできるフィールド対象 (レコードID、ユーザ作成フィールド) マルチセレクト、ファイル、パスワード、参照フィールド型および_createdBy、_updatedByは指定不可 フィールド識別名の後に":ASC"又は":asc"を入れると昇順、":DESC"又は":desc"を入れると降順 |
where | string [ 1 .. 4096 ] characters 高度な条件抽出 抽出条件式を記述する 詳細はサポートサイトをご確認ください。 |
object 他DBのフィールド値による抽出 未指定の場合、抽出しない | |
object 配信エラー除外 未指定の場合、抽出しない | |
Array of objects 出力するフィールドのリスト 指定したフィールドの並び順でファイルを出力 未指定の場合、全フィールドを出力 | |
recordValueTimeZone |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括出力依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
fileName | string ファイル名 |
fileFormat | string Enum: "tsv" "csv" ファイルフォーマット |
characterCode | string Enum: "utf-8" "utf-8WithBOM" 文字コード |
hasHeader | boolean trueの場合、ヘッダありのファイルを出力 falseの場合、ヘッダなしのファイルを出力 |
headerType | string Enum: "name" "displayName" "fieldId" ヘッダに出力するタイプ |
headerLanguage | string Default: "ja" Enum: "ja" "en" メタ情報フィールドのヘッダーの言語を指定するために使用する
|
sort | string ファイル内のレコードの並び順 ソートできるフィールド対象 (レコードID、ユーザ作成フィールド) マルチセレクト、ファイル、パスワード、参照フィールド型および_createdBy、_updatedByは指定不可 フィールド識別名の後に":ASC"又は":asc"を入れると昇順、":DESC"又は":desc"を入れると降順 |
where | string 高度な条件抽出 抽出条件式を記述する 詳細はサポートサイトをご確認ください。 |
object 他DBのフィールド値による抽出 未指定の場合、抽出しない | |
object 配信エラー除外 未指定の場合、抽出しない | |
Array of objects 出力するフィールドのリスト 指定したフィールドの並び順でファイルを出力 未指定の場合、全フィールドを出力 | |
recordValueTimeZone | string 日時フィールド、作成日時、更新日時を指定したタイムゾーンの時刻に変換して出力する タイムゾーンの一覧はサポートサイトをご確認ください。 |
status | string Enum: "waiting" "processing" "canceling" "canceled" "succeeded" "failed" 依頼状況ステータス |
createdAt | string <date-time> 作成日時 |
updatedAt | string <date-time> 更新日時 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "fileName": "recordExport",
- "fileFormat": "tsv",
- "characterCode": "utf-8",
- "hasHeader": true,
- "headerType": "name",
- "headerLanguage": "ja",
- "sort": "_id:DESC",
- "where": "@email ILIKE '%@example.com' OR @email ILIKE '%@example.net' AND @birthDay >= DATE('1990-01-01') AND @birthDay <= DATE('2000-12-31')",
- "exists": {
- "type": "exists",
- "fieldId": "100",
- "otherDbId": "200",
- "otherDbFieldId": "200"
}, - "excludeEmailError": {
- "fieldId": "100",
- "count": 1
}, - "fields": [
- {
- "field": "_id"
}, - {
- "field": "_createdAt",
- "format": "dateTime"
}, - {
- "field": "1",
- "format": "E164"
}
], - "recordValueTimeZone": "Asia/Tokyo"
}
{- "id": "100",
- "operatedFrom": "ui",
- "fileName": "string",
- "fileFormat": "tsv",
- "characterCode": "utf-8",
- "hasHeader": true,
- "headerType": "name",
- "headerLanguage": "ja",
- "sort": "_id:DESC",
- "where": "string",
- "exists": {
- "type": "exists",
- "fieldId": "100",
- "otherDbId": "200",
- "otherDbFieldId": "200"
}, - "excludeEmailError": {
- "fieldId": "100",
- "count": 1
}, - "fields": [
- {
- "field": "_id"
}, - {
- "field": "_createdAt",
- "format": "dateTime"
}, - {
- "field": "1",
- "format": "E164"
}
], - "recordValueTimeZone": "Asia/Tokyo",
- "status": "waiting",
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}
指定DBの一括出力依頼を取得 一括出力依頼が完了しているとstatusがsucceededに更新され、ファイルURLを取得できる 生成されたファイルは24時間後に自動削除される statusがcanceled、succeeded、failedの依頼は14日後に自動削除される
app required | string アプリID |
db required | string DBID |
recordExportId required | string 一括出力依頼ID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括出力依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
fileName | string ファイル名 |
fileFormat | string Enum: "tsv" "csv" ファイルフォーマット |
characterCode | string Enum: "utf-8" "utf-8WithBOM" 文字コード |
hasHeader | boolean trueの場合、ヘッダありのファイルを出力 falseの場合、ヘッダなしのファイルを出力 |
headerType | string Enum: "name" "displayName" "fieldId" ヘッダに出力するタイプ |
headerLanguage | string Default: "ja" Enum: "ja" "en" メタ情報フィールドのヘッダーの言語を指定するために使用する
|
sort | string ファイル内のレコードの並び順 ソートできるフィールド対象 (レコードID、ユーザ作成フィールド) マルチセレクト、ファイル、パスワード、参照フィールド型および_createdBy、_updatedByは指定不可 フィールド識別名の後に":ASC"又は":asc"を入れると昇順、":DESC"又は":desc"を入れると降順 |
where | string 高度な条件抽出 抽出条件式を記述する 詳細はサポートサイトをご確認ください。 |
object 他DBのフィールド値による抽出 未指定の場合、抽出しない | |
object 配信エラー除外 未指定の場合、抽出しない | |
Array of objects 出力するフィールドのリスト 指定したフィールドの並び順でファイルを出力 未指定の場合、全フィールドを出力 | |
status | string Enum: "waiting" "processing" "canceling" "canceled" "succeeded" "failed" 依頼状況ステータス |
Array of objects 一括出力で生成されたファイル | |
errorMessage | object エラーメッセージ statusがfailedの時に出力 |
createdAt | string <date-time> 作成日時 |
finishedAt | string <date-time> 処理終了日時 statusがcanceled、succeeded、failedの時に出力 |
fileDeletedAt | string <date-time> ファイル削除日時 statusがsucceededかつファイルが削除された時に出力 |
recordValueTimeZone | string 日時フィールド、作成日時、更新日時を指定したタイムゾーンの時刻に変換して出力する タイムゾーンの一覧はサポートサイトをご確認ください。 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "id": "100",
- "operatedFrom": "ui",
- "fileName": "string",
- "fileFormat": "tsv",
- "characterCode": "utf-8",
- "hasHeader": true,
- "headerType": "name",
- "headerLanguage": "ja",
- "sort": "_id:DESC",
- "where": "string",
- "exists": {
- "type": "exists",
- "fieldId": "100",
- "otherDbId": "200",
- "otherDbFieldId": "200"
}, - "excludeEmailError": {
- "fieldId": "100",
- "count": 1
}, - "fields": [
- {
- "field": "_id"
}, - {
- "field": "_createdAt",
- "format": "dateTime"
}, - {
- "field": "1",
- "format": "E164"
}
], - "status": "waiting",
- "files": [
- {
- "fileSize": 104857600,
- "recordCount": 81752
}, - {
- "fileSize": 31457280,
- "recordCount": 21590
}
], - "errorMessage": [
- {
- "code": "internalError",
- "message": "internal error",
- "locationType": null,
- "location": null
}, - {
- "code": "invalidParameter",
- "message": "does not exist",
- "locationType": "body",
- "location": "/sort"
}
], - "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z",
- "fileDeletedAt": "2019-08-24T14:15:22Z",
- "recordValueTimeZone": "Asia/Tokyo"
}
一括出力が完了していない依頼をキャンセル キャンセル可能な依頼のstatusはwaitingもしくはprocessing statusがwaitingの場合、statusがcanceledに更新される processingの場合、cancelingに更新される cancelingはサービス内部のキャンセル処理完了後にcanceledに更新される その他statusに対して実行するとエラー
app required | string アプリID |
db required | string DBID |
recordExportId required | string 一括出力依頼ID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括出力依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
fileName | string ファイル名 |
fileFormat | string Enum: "tsv" "csv" ファイルフォーマット |
characterCode | string Enum: "utf-8" "utf-8WithBOM" 文字コード |
hasHeader | boolean trueの場合、ヘッダありのファイルを出力 falseの場合、ヘッダなしのファイルを出力 |
headerType | string Enum: "name" "displayName" "fieldId" ヘッダに出力するタイプ |
headerLanguage | string Default: "ja" Enum: "ja" "en" メタ情報フィールドのヘッダーの言語を指定するために使用する
|
sort | string ファイル内のレコードの並び順 ソートできるフィールド対象 (レコードID、ユーザ作成フィールド) マルチセレクト、ファイル、パスワード、参照フィールド型および_createdBy、_updatedByは指定不可 フィールド識別名の後に":ASC"又は":asc"を入れると昇順、":DESC"又は":desc"を入れると降順 |
where | string 高度な条件抽出 抽出条件式を記述する 詳細はサポートサイトをご確認ください。 |
object 他DBのフィールド値による抽出 未指定の場合、抽出しない | |
object 配信エラー除外 未指定の場合、抽出しない | |
Array of objects 出力するフィールドのリスト 指定したフィールドの並び順でファイルを出力 未指定の場合、全フィールドを出力 | |
status | string Enum: "waiting" "processing" "canceling" "canceled" "succeeded" "failed" 依頼状況ステータス |
createdAt | string <date-time> 作成日時 |
finishedAt | string <date-time> 処理終了日時 statusがcanceled、succeeded、failedの時に出力 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "id": "100",
- "operatedFrom": "ui",
- "fileName": "string",
- "fileFormat": "tsv",
- "characterCode": "utf-8",
- "hasHeader": true,
- "headerType": "name",
- "headerLanguage": "ja",
- "sort": "_id:DESC",
- "where": "string",
- "exists": {
- "type": "exists",
- "fieldId": "100",
- "otherDbId": "200",
- "otherDbFieldId": "200"
}, - "excludeEmailError": {
- "fieldId": "100",
- "count": 1
}, - "fields": [
- {
- "field": "_id"
}, - {
- "field": "_createdAt",
- "format": "dateTime"
}, - {
- "field": "1",
- "format": "E164"
}
], - "status": "waiting",
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
指定DBの一括登録依頼の一覧を取得
app required | string アプリID |
db required | string DBID |
sort | string Default: "createdAt:desc" Enum: "id:asc" "id:desc" "status:asc" "status:desc" "createdAt:asc" "createdAt:desc" "finishedAt:asc" "finishedAt:desc" ソートする対象 (ID、ステータス、作成日時、終了日時) ":asc"を指定すると昇順。":desc"を指定すると降順 ステータスを指定した場合は処理が遷移する順番になります |
offset | integer Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
Array of objects | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "items": [
- {
- "id": "100",
- "operatedFrom": "ui",
- "status": "waiting",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string",
- "row": 0,
- "column": 0
}
], - "onError": "rollback",
- "fileName": "content.csv",
- "fileSize": 104857600,
- "numberRows": 100,
- "numberRowsSuccessful": 100,
- "numberRowsFailed": 100,
- "rowsFailed": "1,3,4",
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
], - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
レコードの一括登録依頼を作成 Multipart/form-data形式 同一DB上で、レコードの一括登録/一括更新/一括削除が処理中の場合は新たに依頼をすることはできません パスワード型フィールド・ファイル型フィールド・ユーザフィールドは対象外の為、インポートファイルのヘッダ行にパスワード型フィールド・ファイル型フィールド・ユーザフィールドの識別名が指定されているとエラー 詳細はサポートサイトをご確認ください。
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
onError | string Default: "rollback" Enum: "rollback" "ignore" 一括登録中にレコードに関する以下のエラーが発生した場合の処理の扱い
|
file required | string <binary> インポートファイル。以下の条件を満たす必要あり
|
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括登録依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
status | string Value: "waiting" ステータス |
Array of objects エラー情報 | |
onError | string Enum: "rollback" "ignore" 一括登録中にレコードに関するエラーが発生した場合の処理の扱い |
fileName | string インポートファイル名 |
fileSize | integer インポートファイルサイズ(byte) |
numberRows | integer インポートファイルの全行数 |
numberRowsSuccessful | integer 登録に成功した行数 |
numberRowsFailed | integer 登録に失敗した行数 |
rowsFailed | string 登録に失敗したレコード行の番号(カンマ区切り) |
createdAt | string <date-time> 作成日時 |
finishedAt | string <date-time> 一括登録完了日時 ステータスが"canceled"になった時に出力される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
name,email,phone,gender,age,birthday,mailGroup,registration,lastAccess 山田 太郎,taro.yamada@example.com,+81 90-1234-5678,1,30,01-01,"1,2",2020-01-01,2020-01-01T00:00:00Z 田中 次郎,jiro.tanaka@example.com,090-1234-5678,1,25,1-1,3,2020-1-1,2020-01-01T12:00:00+09:00 鈴木 花子,hanako.suzuki@example.com,9012345678,2,20,12-20,,2020-12-20,2020-12-30T12:00:00Z
{- "id": "100",
- "operatedFrom": "ui",
- "status": "waiting",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string",
- "row": 0,
- "column": 0
}
], - "onError": "rollback",
- "fileName": "content.csv",
- "fileSize": 104857600,
- "numberRows": 100,
- "numberRowsSuccessful": 100,
- "numberRowsFailed": 100,
- "rowsFailed": "1,3,4",
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
指定DBの一括登録依頼を取得
app required | string アプリID |
db required | string DBID |
batchInsertId required | string 一括登録依頼ID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括登録依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
status | string Enum: "waiting" "processing" "canceling" "succeeded" "failed" "canceled" ステータス |
Array of objects エラー情報 ステータスが"failed"になった時に出力される | |
onError | string Enum: "rollback" "ignore" 一括登録中にレコードに関するエラーが発生した場合の処理の扱い |
fileName | string インポートファイル名 |
fileSize | integer インポートファイルサイズ(byte) |
numberRows | integer インポートファイルの全行数 ステータスが"processing"になった時に出力される |
numberRowsSuccessful | integer 登録に成功した行数 ステータスが"processing"後に"succeeded"または"failed"または"canceled"になった時に出力される |
numberRowsFailed | integer 登録に失敗した行数 ステータスが"processing"後に"succeeded"または"failed"または"canceled"になった時に出力される |
rowsFailed | string 登録に失敗したレコード行の番号(カンマ区切り) |
createdAt | string <date-time> 作成日時 |
finishedAt | string <date-time> 一括登録完了日時 ステータスが"succeeded"または"failed"または"canceled"になった時に出力される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "id": "100",
- "operatedFrom": "ui",
- "status": "waiting",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string",
- "row": 0,
- "column": 0
}
], - "onError": "rollback",
- "fileName": "content.csv",
- "fileSize": 104857600,
- "numberRows": 100,
- "numberRowsSuccessful": 100,
- "numberRowsFailed": 100,
- "rowsFailed": "1,3,4",
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
レコードの一括登録依頼をキャンセルする statusが"waiting"または"processing"の時に有効
app required | string アプリID |
db required | string DBID |
batchInsertId required | string 一括登録依頼ID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括登録依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
status | string Enum: "canceling" "canceled" ステータス |
Array of objects エラー情報 | |
onError | string Enum: "rollback" "ignore" 一括登録中にレコードに関するエラーが発生した場合の処理の扱い |
fileName | string インポートファイル名 |
fileSize | integer インポートファイルサイズ(byte) |
numberRows | integer インポートファイルの全行数 |
numberRowsSuccessful | integer 登録に成功した行数 |
numberRowsFailed | integer 登録に失敗した行数 |
rowsFailed | string 登録に失敗したレコード行の番号(カンマ区切り) |
createdAt | string <date-time> 作成日時 |
finishedAt | string <date-time> 一括登録完了日時 ステータスが"canceled"になった時に出力される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "id": "100",
- "operatedFrom": "ui",
- "status": "canceling",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string",
- "row": 0,
- "column": 0
}
], - "onError": "rollback",
- "fileName": "content.csv",
- "fileSize": 104857600,
- "numberRows": 100,
- "numberRowsSuccessful": 100,
- "numberRowsFailed": 100,
- "rowsFailed": "1,3,4",
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
指定DBの一括更新依頼の一覧を取得
app required | string アプリID |
db required | string DBID |
upsert | boolean trueの場合、一括登録更新依頼を取得する falseの場合、一括更新依頼を取得する 未指定の場合、両方取得する |
sort | string Default: "createdAt:desc" Enum: "id:asc" "id:desc" "status:asc" "status:desc" "createdAt:asc" "createdAt:desc" "finishedAt:asc" "finishedAt:desc" ソートする対象 (ID、ステータス、作成日時、終了日時) ":asc"を指定すると昇順。":desc"を指定すると降順 ステータスを指定した場合は処理が遷移する順番になります |
offset | integer Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
Array of objects | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "items": [
- {
- "id": "100",
- "operatedFrom": "ui",
- "upsert": false,
- "updateKeyField": "_id",
- "status": "waiting",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string",
- "type": "update",
- "row": 0,
- "column": 0
}
], - "fileName": "content.csv",
- "fileSize": 104857600,
- "numberRows": 100,
- "numberRowsInsertSuccessful": 100,
- "numberRowsInsertFailed": 100,
- "numberRowsUpdateSuccessful": 100,
- "numberRowsUpdateFailed": 100,
- "rowsFailed": "1,3,4",
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
], - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
レコードの一括更新依頼を作成 Multipart/form-data形式 upsertを指定することで更新後の登録処理が可能 同一DB上で、レコードの一括登録/一括更新/一括削除が処理中の場合は新たに依頼をすることはできません パスワード型フィールド・ファイル型フィールド・ユーザフィールドは対象外の為、インポートファイルのヘッダ行にパスワード型フィールド・ファイル型フィールド・ユーザフィールドの識別名が指定されているとエラー 詳細はサポートサイトをご確認ください。
一括更新中に以下のエラーが発生した場合は全てのレコードの更新処理をせずにロールバックする
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
upsert | boolean Default: false 一括登録更新を行うためのフラグ trueの場合、DBのレコードに存在するデータを更新し、存在しないデータを新規登録する falseの場合、更新のみで新規登録はしない。 |
updateKeyField | string Default: "_id" 更新キー 入力必須かつ重複不可フィールドまたはレコードIDで指定 フィールド指定の場合はテキスト型またはメールアドレス型が指定可能 これら以外を指定するとエラー |
file required | string <binary> インポートファイル ファイル条件は以下
|
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括更新依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
upsert | boolean 登録処理の有無 |
updateKeyField | string 更新対象キーフィルド |
status | string Value: "waiting" ステータス |
Array of objects エラー情報 | |
fileName | string インポートファイル名 |
fileSize | integer インポートファイルサイズ(byte) |
numberRows | integer インポートファイルの全行数 |
numberRowsInsertSuccessful | integer 登録に成功した行数 |
numberRowsInsertFailed | integer 登録に失敗した行数 |
numberRowsUpdateSuccessful | integer 更新に成功した行数 |
numberRowsUpdateFailed | integer 更新に失敗した行数 |
rowsFailed | string 登録・更新に失敗した行 |
createdAt | string <date-time> 作成日時 |
finishedAt | string <date-time> 一括更新完了日時 ステータスが"canceled"になった時に出力される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
_id name,email,phone,gender,age,birthday,mailGroup,registration,lastAccess 1 山田 太郎,taro.yamada@example.com,+81 90-1234-5678,1,30,01-01,"1,2",2020-01-01,2020-01-01T00:00:00Z 2 田中 次郎,jiro.tanaka@example.com,090-1234-5678,1,25,1-1,3,2020-1-1,2020-01-01T12:00:00+09:00 3 鈴木 花子,hanako.suzuki@example.com,9012345678,2,20,12-20,,2020-12-20,2020-12-30T12:00:00Z
{- "id": "100",
- "operatedFrom": "ui",
- "upsert": false,
- "updateKeyField": "_id",
- "status": "waiting",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string",
- "type": "update",
- "row": 0,
- "column": 0
}
], - "fileName": "content.csv",
- "fileSize": 104857600,
- "numberRows": 100,
- "numberRowsInsertSuccessful": 100,
- "numberRowsInsertFailed": 100,
- "numberRowsUpdateSuccessful": 100,
- "numberRowsUpdateFailed": 100,
- "rowsFailed": "1,3,4",
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
指定DBの一括更新依頼を取得
app required | string アプリID |
db required | string DBID |
batchUpdateId required | string 一括更新依頼ID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括更新依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
upsert | boolean 登録処理の有無 |
updateKeyField | string 更新対象キーフィールド |
status | string Enum: "waiting" "processing" "canceling" "succeeded" "failed" "canceled" ステータス |
Array of objects エラー情報 ステータスが"failed"になった時に出力される | |
fileName | string インポートファイル名 |
fileSize | integer インポートファイルサイズ(byte) |
numberRows | integer インポートファイルの全行数 ステータスが"processing"になった時に出力される |
numberRowsInsertSuccessful | integer 登録に成功した行数 |
numberRowsInsertFailed | integer 登録に失敗した行数 |
numberRowsUpdateSuccessful | integer 更新に成功した行数 |
numberRowsUpdateFailed | integer 更新に失敗した行数 |
rowsFailed | string 登録・更新に失敗した行 |
createdAt | string <date-time> 作成日時 |
finishedAt | string <date-time> 一括更新完了日時 ステータスが"succeeded"または"failed"または"canceled"になった時に出力される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "id": "100",
- "operatedFrom": "ui",
- "upsert": false,
- "updateKeyField": "_id",
- "status": "waiting",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string",
- "type": "update",
- "row": 0,
- "column": 0
}
], - "fileName": "content.csv",
- "fileSize": 104857600,
- "numberRows": 100,
- "numberRowsInsertSuccessful": 100,
- "numberRowsInsertFailed": 100,
- "numberRowsUpdateSuccessful": 100,
- "numberRowsUpdateFailed": 100,
- "rowsFailed": "1,3,4",
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
レコードの一括更新依頼をキャンセルする statusが"waiting"または"processing"の時に有効
app required | string アプリID |
db required | string DBID |
batchUpdateId required | string 一括更新依頼ID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括更新依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
upsert | boolean 登録処理の有無 |
updateKeyField | string 更新対象キーフィルド |
status | string Enum: "canceling" "canceled" ステータス |
Array of objects エラー情報 | |
fileName | string インポートファイル名 |
fileSize | integer インポートファイルサイズ(byte) |
numberRows | integer インポートファイルの全行数 |
numberRowsInsertSuccessful | integer 登録に成功した行数 |
numberRowsInsertFailed | integer 登録に失敗した行数 |
numberRowsUpdateSuccessful | integer 更新に成功した行数 |
numberRowsUpdateFailed | integer 更新に失敗した行数 |
rowsFailed | string 登録・更新に失敗した行 |
createdAt | string <date-time> 作成日時 |
finishedAt | string <date-time> 一括更新完了日時 ステータスが"canceled"になった時に出力される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "id": "100",
- "operatedFrom": "ui",
- "upsert": false,
- "updateKeyField": "string",
- "status": "canceling",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string",
- "type": "update",
- "row": 0,
- "column": 0
}
], - "fileName": "content.csv",
- "fileSize": 104857600,
- "numberRows": 100,
- "numberRowsInsertSuccessful": 100,
- "numberRowsInsertFailed": 100,
- "numberRowsUpdateSuccessful": 100,
- "numberRowsUpdateFailed": 100,
- "rowsFailed": "1,3,4",
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
指定DBの一括削除依頼の一覧を取得
app required | string アプリID |
db required | string DBID |
sort | string Default: "createdAt:desc" Enum: "id:asc" "id:desc" "status:asc" "status:desc" "createdAt:asc" "createdAt:desc" "finishedAt:asc" "finishedAt:desc" ソートする対象 (ID、ステータス、作成日時、終了日時) ":asc"を指定すると昇順。":desc"を指定すると降順 ステータスを指定した場合は処理が遷移する順番になります |
offset | integer Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
Array of objects | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "items": [
- {
- "id": "100",
- "operatedFrom": "ui",
- "status": "waiting",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string"
}
], - "where": "@age >= 30 AND @name = 'yamada'",
- "numberRowsDeleted": 100,
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
], - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
レコードの一括削除依頼を作成 同一DB上で、レコードの一括登録/一括更新/一括削除が処理中の場合は新たに依頼をすることはできません
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
where | string 抽出条件式 条件未設定の場合は、条件なしとして扱う |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括削除依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
status | string Value: "waiting" ステータス |
Array of objects エラー情報 | |
where | string 抽出条件式 |
numberRowsDeleted | integer 削除した行数 |
createdAt | string <date-time> 作成日時 |
finishedAt | string <date-time> 一括削除完了日時 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "where": "@age >= 30 AND @name = 'yamada'"
}
{- "id": "100",
- "operatedFrom": "ui",
- "status": "waiting",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string"
}
], - "where": "@age >= 30 AND @name = 'yamada'",
- "numberRowsDeleted": 100,
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
指定DBの一括削除依頼を取得
app required | string アプリID |
db required | string DBID |
batchDeleteId required | string 一括削除依頼ID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括削除依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
status | string Enum: "waiting" "processing" "canceling" "succeeded" "failed" "canceled" ステータス |
Array of objects エラー情報 ステータスが"failed"になった時に出力される | |
where | string 抽出条件式 |
numberRowsDeleted | integer 削除した行数 ステータスが"succeeded"または"failed"または"canceled"になった時に出力される |
createdAt | string <date-time> 作成日時 |
finishedAt | string <date-time> 一括削除完了日時 ステータスが"succeeded"または"failed"または"canceled"になった時に出力される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "id": "100",
- "operatedFrom": "ui",
- "status": "waiting",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string"
}
], - "where": "@age >= 30 AND @name = 'yamada'",
- "numberRowsDeleted": 100,
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
レコードの一括削除依頼をキャンセルする statusが"waiting"または"processing"の時に有効
app required | string アプリID |
db required | string DBID |
batchDeleteId required | string 一括削除依頼ID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string 一括削除依頼ID |
operatedFrom | string Enum: "ui" "api" 操作元 |
status | string Enum: "canceling" "canceled" ステータス |
Array of objects エラー情報 | |
where | string 抽出条件式 |
numberRowsDeleted | integer 削除した行数 ステータスが"canceled"になった時に出力される |
createdAt | string <date-time> 作成日時 |
finishedAt | string <date-time> 一括削除完了日時 ステータスが"canceled"になった時に出力される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "id": "100",
- "operatedFrom": "ui",
- "status": "canceling",
- "errors": [
- {
- "code": "string",
- "message": "string",
- "locationType": "string",
- "location": "string"
}
], - "where": "@age >= 30 AND @name = 'yamada'",
- "numberRowsDeleted": 100,
- "createdAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
レコードのファイル型フィールドにファイルを登録する際に、事前にファイルをアップロードするに必要なトークンを発行する
アカウント単位で最大3個までトークンを発行できる
有効なトークンが3個ある状態でリクエストするとエラーになる
トークンは発行してから3分超過もしくはトークンを使用してファイルアップロードされると削除される
app required | string アプリID |
db required | string DBID |
field required | string フィールドID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
fileUploadToken | string ファイルアップロードトークン |
expireAt | string <date-time> ファイルアップロードトークンの期限切れ日時 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "fileUploadToken": "a0eebc999c0b4ef8bb6d6bb9bd380a11",
- "expireAt": "2019-07-17T01:51:04Z"
}
レコードのファイル型フィールドにファイルを登録する際に、事前に取得したトークンを用いてファイルをアップロードする
Multipart/form-data形式
アップロード後に取得できるファイルキーを用いて、レコードとファイルキーを関連づけることで、
アップロードしたファイルはアカウントのファイルストレージ容量の対象となる
レコードと関連付けされていないファイルは、アップロードしてから1時間後に削除される
app required | string アプリID |
db required | string DBID |
field required | string フィールドID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
file required | string <binary> ファイル
ファイル名に |
fileUploadToken required | string ファイルアップロードトークン 有効期限の切れたトークンならエラー |
X-Spiral-App-Role | string Example: "employee" アプリロール |
fileKey | string ファイルキー フォーマットは"シーケンシャルID_ファイルハッシュ値" |
fileName | string ファイル名 |
fileSize | integer ファイルサイズ(byte) |
object 登録者 | |
createdAt | string <date-time> 登録日時 |
expireAt | string <date-time> ファイルの期限切れ日時 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
----WebKitFormBoundary7MA4YWxkTrZu0gW Content-Disposition: form-data; name="file"; filename="sample.png" Content-Type: image/png [file content goes there] ------WebKitFormBoundary7MA4YWxkTrZu0gW Content-Disposition: form-data; name="fileUploadToken" a0eebc999c0b4ef8bb6d6bb9bd380a11 ------WebKitFormBoundary7MA4YWxkTrZu0gW--
{- "fileKey": "100_196a921286f74e15cd307dc42f1df4523b3e25808659789631092b458d57676e",
- "fileName": "sample.png",
- "fileSize": 2345,
- "createdBy": {
- "type": "user"
}, - "createdAt": "2019-07-17T00:51:04Z",
- "expireAt": "2019-07-17T01:51:04Z"
}
レコードのファイル型フィールドに登録したファイルをダウンロードする
fileKey
はレコード取得APIのファイル型フィールドのレスポンスにて取得できる
アカウント単位で最大3並列までファイルをダウンロードできる
ファイル型フィールドと関連づいていないファイルのダウンロードはエラーになる
app required | string アプリID |
db required | string DBID |
field required | string フィールドID |
fileKey required | string ファイルキー |
recordId required | string レコードID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
X-Spiral-App-Role | string Example: "employee" アプリロール |
EXPRESSメール設定の一覧を取得する
app required | string アプリID |
db required | string DBID |
expressStatus | string Enum: "setting" "ready" "closed" 検索するEXPRESSメールのステータス |
emailJobStatus | string Enum: "spooling" "failed" "waiting" "delivering" "finished" "forceCanceled" "canceled" 検索するEXPRESSメールのメール配信ジョブのステータス 本番メール配信ジョブのみが対象 |
statusCategory | string Enum: "settingStatus" "deliveredStatus" "settingStatus"の場合は設定中、予約完了、配信準備中、配信待機中のステータスのEXPRESSメールの一覧を取得する "deliveredStatus"の場合は配信中、配信終了、配信失敗、強制配信中止のステータスのEXPRESSメールの一覧を取得する expressStatus、emailJobStatusとの併用はできない |
subject | string 検索するEXPRESSメールの件名のキーワード 部分一致による検索 最大128byte |
sort | string Default: "updatedAt:desc" Enum: "startedAt:asc" "startedAt:desc" "status:asc" "status:desc" "updatedAt:asc" "updatedAt:desc" ソートする対象 (配信開始日時、ステータス、更新日時)。 後に":asc"を入れると昇順。":desc"を入れると降順。 |
offset | integer Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
Array of objects EXPRESSメール設定の一覧 | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "items": [
- {
- "excludeErrorCount": 1,
- "exists": {
- "type": "exists",
- "dbId": "100",
- "fieldId": "100"
}, - "from": {
- "displayName": "事務局",
- "email": "from@mail.example.com",
- "emailFromDomainId": 100
}, - "replyTo": "reply@example.com",
- "subject": {
- "content": "メール件名テスト"
}, - "contentsTimeZone": "Asia/Tokyo",
- "timing": "scheduled",
- "scheduleDate": "2017-01-01T12:00:00Z",
- "status": "setting",
- "emailJob": {
- "id": "100",
- "status": "finished",
- "deliveredCount": "10",
- "errorCount": "2",
- "startedAt": "2019-08-24T14:15:22Z",
- "requiredTime": "3600"
}, - "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}
], - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
EXPRESSメール設定を作成する
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
required | object 宛先設定 |
excludeErrorCount | integer [ 1 .. 3 ] Default: 1 配信エラー除外の対象とするエラーの発生回数 |
object 他DBのメールアドレスの有無による抽出 nullの場合抽出しない | |
required | object 差出人設定 |
replyTo | string [ 5 .. 256 ] characters 返信先設定 任意のメールアドレスを指定する |
required | object 件名 |
object プレーンテキストメールの本文 plainBody、htmlBodyの少なくともどちらかは必須 | |
object HTMLメールの本文 plainBody、htmlBodyの少なくともどちらかは必須 | |
contentsTimeZone | string Default: "UTC" タイムゾーンを扱う日時フィールド、作成日時、最終更新日時の差替えキーワードを件名か本文に含める場合に、差替え時のタイムゾーンを指定する タイムゾーンの一覧はサポートサイトをご確認ください。 |
timing required | string Enum: "scheduled" "now" 配信タイミング選択 scheduled(予約配信) か now(即時配信) を選択する |
scheduleDate | string <date-time> 予約日時 以下の範囲内の日時を指定可能 ・ 現在時刻から10分経過後かつ2年以内 ・ 毎時00分から5分刻み timingがscheduledのときは必須 timingがnowのときに指定するとエラー |
status | string Default: "setting" Enum: "setting" "ready" ステータス選択 setting(設定中)かready(設定完了)を選択する timingがnowのとき、readyを選択すると配信が開始される timingがscheduledのとき、readyを選択すると待機状態となる readyを指定した場合、以下のバリデーションが行われる
|
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string EXPRESSメールID |
object 宛先設定 | |
excludeErrorCount | integer 除外対象とするエラーの発生回数 |
object 他DBのメールアドレスの有無による抽出 nullの場合抽出しない | |
object 差出人設定 | |
replyTo | string 返信先設定 任意のメールアドレスを指定する |
object 件名 | |
object プレーンテキストメールの本文 | |
object HTMLメールの本文 | |
contentsTimeZone | string Default: "UTC" タイムゾーンを扱う日時フィールド、作成日時、最終更新日時の差替えキーワードを件名か本文に含める場合に、差替え時のタイムゾーンを指定する タイムゾーンの一覧はサポートサイトをご確認ください。 |
timing | string Enum: "scheduled" "now" 配信タイミング選択 scheduled(予約配信) か now(即時配信) を選択する |
scheduleDate | string <date-time> 予約日時 以下の範囲内の日時を指定可能 ・ 現在時刻から10分経過後かつ2年以内 ・ 毎時00分から5分刻み timingがscheduledのときは必須 timingがnowのときに指定するとエラー |
status | string Enum: "setting" "ready" "closed" EXPRESSメール配信設定のステータス |
object メール配信実行情報 本番配信が開始されるまではnull | |
object 作成者 | |
object 更新者 更新がないレコードの場合は作成者と同じ | |
createdAt | string <date-time> 作成日時 |
updatedAt | string <date-time> 更新日時 更新がないレコードの場合は作成日時と同じ |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "to": {
- "field": "100",
- "where": {
- "type": "simple",
- "value": {
- "operator": "or",
- "conditions": [
- {
- "field": "@email",
- "operator": "domain_is",
- "value1": "example.com"
}, - {
- "field": "@email",
- "operator": "domain_is",
- "value1": "example.net"
}
]
}
}
}, - "excludeErrorCount": 1,
- "exists": {
- "type": "exists",
- "db": "string",
- "field": "100"
}, - "from": {
- "displayName": "メルマガ事務局",
- "emailLocalPart": "info",
- "emailFromDomainId": 100
}, - "replyTo": "reply@example.com",
- "subject": {
- "content": "メール件名テスト"
}, - "plainBody": {
- "content": "{{@customerMst.nickname}}様\\nプレーンテキストメールの本文テスト\\n{{@_url.CC_001}}\\n{{@_url.CC_002}}",
- "clickCount": {
- "duplication": false,
- "parameter": "appId={{@_app.id}}&dbId={{@_db.id}}",
- "siteId": "1",
- "urls": [
]
}, - "clickLogin": [
- {
- "validPeriod": {
- "period": 7
}, - "keyword": "{{@_url.cl.mysite.top/register}}"
}
]
}, - "htmlBody": {
- "content": "<p>{{@customerMst.nickname}}様</p><p>HTMLメールの本文テスト</p><a href=\"{{@_url.CC_001}}\">URL Link1</a><a href=\"{{@_url.CC_002}}\">URL Link2</a>",
- "openCount": false,
- "clickCount": {
- "duplication": true,
- "parameter": "appId={{@_app.id}}&dbId={{@_db.id}}",
- "siteId": "1",
- "urls": [
]
}, - "clickLogin": [
- {
- "validPeriod": {
- "period": 7
}, - "keyword": "{{@_url.cl.mysite.top/register}}"
}
]
}, - "contentsTimeZone": "Asia/Tokyo",
- "timing": "scheduled",
- "scheduleDate": "2017-01-01T12:00:00Z",
- "status": "setting"
}
{- "excludeErrorCount": 1,
- "exists": {
- "type": "exists",
- "dbId": "100",
- "fieldId": "100"
}, - "from": {
- "displayName": "事務局",
- "email": "from@mail.example.com",
- "emailFromDomainId": 100
}, - "replyTo": "reply@example.com",
- "subject": {
- "content": "メール件名テスト"
}, - "plainBody": {
- "content": "{{@customerMst.nickname}}様\\nプレーンテキストメールの本文テスト\\n{{@_url.CC_001}}\\n{{@_url.CC_002}}",
- "clickCount": {
- "duplication": false,
- "parameter": "appId={{@_app.id}}&dbId={{@_db.id}}",
- "siteId": "1",
- "urls": [
]
}, - "clickLogin": [
- {
- "validPeriod": {
- "timeUnit": "day",
- "period": 7
}, - "keyword": "{{@_url.cl.mysite.top/register}}",
- "siteId": 301,
- "authenticationId": 401,
- "pageId": 501
}
]
}, - "htmlBody": {
- "content": "<p>{{@customerMst.nickname}}様</p><p>HTMLメールの本文テスト</p><a href=\"{{@_url.CC_001}}\">URL Link1</a><a href=\"{{@_url.CC_002}}\">URL Link2</a>",
- "openCount": false,
- "clickCount": {
- "duplication": true,
- "parameter": "appId={{@_app.id}}&dbId={{@_db.id}}",
- "siteId": "1",
- "urls": [
]
}, - "clickLogin": [
- {
- "validPeriod": {
- "timeUnit": "day",
- "period": 7
}, - "keyword": "{{@_url.cl.mysite.top/register}}",
- "siteId": 301,
- "authenticationId": 401,
- "pageId": 501
}
]
}, - "contentsTimeZone": "Asia/Tokyo",
- "timing": "scheduled",
- "scheduleDate": "2017-01-01T12:00:00Z",
- "status": "setting",
- "emailJob": {
- "id": "100",
- "status": "finished",
- "deliveredCount": "10",
- "errorCount": "2",
- "startedAt": "2019-08-24T14:15:22Z",
- "requiredTime": "3600"
}, - "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}
指定されたEXPRESSメール設定を取得する
app required | string アプリID |
db required | string DBID |
expressEmailId required | string EXPRESSメールID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string EXPRESSメールID |
object 宛先設定 | |
excludeErrorCount | integer 除外対象とするエラーの発生回数 |
object 他DBのメールアドレスの有無による抽出 nullの場合抽出しない | |
object 差出人設定 | |
replyTo | string 返信先設定 任意のメールアドレスを指定する |
object 件名 | |
object プレーンテキストメールの本文 | |
object HTMLメールの本文 | |
contentsTimeZone | string Default: "UTC" タイムゾーンを扱う日時フィールド、作成日時、最終更新日時の差替えキーワードを件名か本文に含める場合に、差替え時のタイムゾーンを指定する タイムゾーンの一覧はサポートサイトをご確認ください。 |
timing | string Enum: "scheduled" "now" 配信タイミング選択 scheduled(予約配信) か now(即時配信) を選択する |
scheduleDate | string <date-time> 予約日時 以下の範囲内の日時を指定可能 ・ 現在時刻から10分経過後かつ2年以内 ・ 毎時00分から5分刻み timingがscheduledのときは必須 timingがnowのときに指定するとエラー |
status | string Enum: "setting" "ready" "closed" EXPRESSメール配信設定のステータス |
object メール配信実行情報 本番配信が開始されるまではnull | |
object 作成者 | |
object 更新者 更新がないレコードの場合は作成者と同じ | |
createdAt | string <date-time> 作成日時 |
updatedAt | string <date-time> 更新日時 更新がないレコードの場合は作成日時と同じ |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "excludeErrorCount": 1,
- "exists": {
- "type": "exists",
- "dbId": "100",
- "fieldId": "100"
}, - "from": {
- "displayName": "事務局",
- "email": "from@mail.example.com",
- "emailFromDomainId": 100
}, - "replyTo": "reply@example.com",
- "subject": {
- "content": "メール件名テスト"
}, - "plainBody": {
- "content": "{{@customerMst.nickname}}様\\nプレーンテキストメールの本文テスト\\n{{@_url.CC_001}}\\n{{@_url.CC_002}}",
- "clickCount": {
- "duplication": false,
- "parameter": "appId={{@_app.id}}&dbId={{@_db.id}}",
- "siteId": "1",
- "urls": [
]
}, - "clickLogin": [
- {
- "validPeriod": {
- "timeUnit": "day",
- "period": 7
}, - "keyword": "{{@_url.cl.mysite.top/register}}",
- "siteId": 301,
- "authenticationId": 401,
- "pageId": 501
}
]
}, - "htmlBody": {
- "content": "<p>{{@customerMst.nickname}}様</p><p>HTMLメールの本文テスト</p><a href=\"{{@_url.CC_001}}\">URL Link1</a><a href=\"{{@_url.CC_002}}\">URL Link2</a>",
- "openCount": false,
- "clickCount": {
- "duplication": true,
- "parameter": "appId={{@_app.id}}&dbId={{@_db.id}}",
- "siteId": "1",
- "urls": [
]
}, - "clickLogin": [
- {
- "validPeriod": {
- "timeUnit": "day",
- "period": 7
}, - "keyword": "{{@_url.cl.mysite.top/register}}",
- "siteId": 301,
- "authenticationId": 401,
- "pageId": 501
}
]
}, - "contentsTimeZone": "Asia/Tokyo",
- "timing": "scheduled",
- "scheduleDate": "2017-01-01T12:00:00Z",
- "status": "setting",
- "emailJob": {
- "id": "100",
- "status": "finished",
- "deliveredCount": "10",
- "errorCount": "2",
- "startedAt": "2019-08-24T14:15:22Z",
- "requiredTime": "3600"
}, - "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}
指定されたEXPRESSメール設定を更新する ステータスが"setting"/"ready"のもの以外を指定するとエラー ステータスが"ready"のときはstatusのみ変更できる(それ以外のパラメータは変更できない)
app required | string アプリID |
db required | string DBID |
expressEmailId required | string EXPRESSメールID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
object 宛先設定 | |
excludeErrorCount | integer [ 1 .. 3 ] 配信エラー除外の対象とするエラーの発生回数 |
object 他DBのメールアドレスの有無による抽出 nullの場合抽出しない | |
object 差出人設定 | |
replyTo | string [ 5 .. 256 ] characters 返信先設定 任意のメールアドレスを指定する |
object 件名 | |
object プレーンテキストメールの本文 nullの場合は本文を削除する | |
object HTMLメールの本文 nullの場合は本文を削除する | |
contentsTimeZone | string Default: "UTC" タイムゾーンを扱う日時フィールド、作成日時、最終更新日時の差替えキーワードを件名か本文に含める場合に、差替え時のタイムゾーンを指定する タイムゾーンの一覧はサポートサイトをご確認ください。 |
timing | string Enum: "scheduled" "now" 配信タイミング選択 scheduled(予約配信) か now(即時配信) を選択する |
scheduleDate | string <date-time> 予約日時 以下の範囲内の日時を指定可能 ・ 現在時刻から10分経過後かつ2年以内 ・ 毎時00分から5分刻み timingがscheduledのときは必須 timingがnowのときに指定するとエラー |
status | string Enum: "setting" "ready" ステータス選択 setting(設定中)かready(設定完了)を選択する timingがnowのとき、readyを選択すると配信が開始される timingがscheduledのとき、readyを選択すると待機状態となる readyを指定した場合、以下のバリデーションが行われる
|
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string EXPRESSメールID |
object 宛先設定 | |
excludeErrorCount | integer 除外対象とするエラーの発生回数 |
object 他DBのメールアドレスの有無による抽出 nullの場合抽出しない | |
object 差出人設定 | |
replyTo | string 返信先設定 任意のメールアドレスを指定する |
object 件名 | |
object プレーンテキストメールの本文 | |
object HTMLメールの本文 | |
contentsTimeZone | string Default: "UTC" タイムゾーンを扱う日時フィールド、作成日時、最終更新日時の差替えキーワードを件名か本文に含める場合に、差替え時のタイムゾーンを指定する タイムゾーンの一覧はサポートサイトをご確認ください。 |
timing | string Enum: "scheduled" "now" 配信タイミング選択 scheduled(予約配信) か now(即時配信) を選択する |
scheduleDate | string <date-time> 予約日時 以下の範囲内の日時を指定可能 ・ 現在時刻から10分経過後かつ2年以内 ・ 毎時00分から5分刻み timingがscheduledのときは必須 timingがnowのときに指定するとエラー |
status | string Enum: "setting" "ready" "closed" EXPRESSメール配信設定のステータス |
object メール配信実行情報 本番配信が開始されるまではnull | |
object 作成者 | |
object 更新者 更新がないレコードの場合は作成者と同じ | |
createdAt | string <date-time> 作成日時 |
updatedAt | string <date-time> 更新日時 更新がないレコードの場合は作成日時と同じ |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "to": {
- "field": "100",
- "where": {
- "type": "simple",
- "value": {
- "operator": "or",
- "conditions": [
- {
- "field": "@email",
- "operator": "domain_is",
- "value1": "example.com"
}, - {
- "field": "@email",
- "operator": "domain_is",
- "value1": "example.net"
}
]
}
}
}, - "excludeErrorCount": 1,
- "exists": {
- "type": "exists",
- "db": "string",
- "field": "100"
}, - "from": {
- "displayName": "メルマガ事務局",
- "emailLocalPart": "info",
- "emailFromDomainId": 100
}, - "replyTo": "reply@example.com",
- "subject": {
- "content": "メール件名テスト"
}, - "plainBody": {
- "content": "{{@customerMst.nickname}}様\\nプレーンテキストメールの本文テスト\\n{{@_url.CC_001}}\\n{{@_url.CC_002}}",
- "clickCount": {
- "duplication": false,
- "parameter": "appId={{@_app.id}}&dbId={{@_db.id}}",
- "siteId": "1",
- "urls": [
]
}, - "clickLogin": [
- {
- "validPeriod": {
- "period": 7
}, - "keyword": "{{@_url.cl.mysite.top/register}}"
}
]
}, - "htmlBody": {
- "content": "<p>{{@customerMst.nickname}}様</p><p>HTMLメールの本文テスト</p><a href=\"{{@_url.CC_001}}\">URL Link1</a><a href=\"{{@_url.CC_002}}\">URL Link2</a>",
- "openCount": false,
- "clickCount": {
- "duplication": true,
- "parameter": "appId={{@_app.id}}&dbId={{@_db.id}}",
- "siteId": "1",
- "urls": [
]
}, - "clickLogin": [
- {
- "validPeriod": {
- "period": 7
}, - "keyword": "{{@_url.cl.mysite.top/register}}"
}
]
}, - "contentsTimeZone": "Asia/Tokyo",
- "timing": "scheduled",
- "scheduleDate": "2017-01-01T12:00:00Z",
- "status": "setting"
}
{- "excludeErrorCount": 1,
- "exists": {
- "type": "exists",
- "dbId": "100",
- "fieldId": "100"
}, - "from": {
- "displayName": "事務局",
- "email": "from@mail.example.com",
- "emailFromDomainId": 100
}, - "replyTo": "reply@example.com",
- "subject": {
- "content": "メール件名テスト"
}, - "plainBody": {
- "content": "{{@customerMst.nickname}}様\\nプレーンテキストメールの本文テスト\\n{{@_url.CC_001}}\\n{{@_url.CC_002}}",
- "clickCount": {
- "duplication": false,
- "parameter": "appId={{@_app.id}}&dbId={{@_db.id}}",
- "siteId": "1",
- "urls": [
]
}, - "clickLogin": [
- {
- "validPeriod": {
- "timeUnit": "day",
- "period": 7
}, - "keyword": "{{@_url.cl.mysite.top/register}}",
- "siteId": 301,
- "authenticationId": 401,
- "pageId": 501
}
]
}, - "htmlBody": {
- "content": "<p>{{@customerMst.nickname}}様</p><p>HTMLメールの本文テスト</p><a href=\"{{@_url.CC_001}}\">URL Link1</a><a href=\"{{@_url.CC_002}}\">URL Link2</a>",
- "openCount": false,
- "clickCount": {
- "duplication": true,
- "parameter": "appId={{@_app.id}}&dbId={{@_db.id}}",
- "siteId": "1",
- "urls": [
]
}, - "clickLogin": [
- {
- "validPeriod": {
- "timeUnit": "day",
- "period": 7
}, - "keyword": "{{@_url.cl.mysite.top/register}}",
- "siteId": 301,
- "authenticationId": 401,
- "pageId": 501
}
]
}, - "contentsTimeZone": "Asia/Tokyo",
- "timing": "scheduled",
- "scheduleDate": "2017-01-01T12:00:00Z",
- "status": "setting",
- "emailJob": {
- "id": "100",
- "status": "finished",
- "deliveredCount": "10",
- "errorCount": "2",
- "startedAt": "2019-08-24T14:15:22Z",
- "requiredTime": "3600"
}, - "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}
指定されたEXPRESSメール設定を削除する ステータスが"setting"のもの以外を指定するとエラー
app required | string アプリID |
db required | string DBID |
expressEmailId required | string EXPRESSメールID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
X-Spiral-App-Role | string Example: "employee" アプリロール |
DBのレコードに対してテスト配信を実行する
app required | string アプリID |
db required | string DBID |
expressEmailId required | string EXPRESSメールID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
required | object 宛先設定 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
emailJobId | string メール配信ジョブID |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "to": {
- "records": [
- "1",
- "2"
]
}
}
{- "emailJobId": "100"
}
EXPRESSメール配信ジョブの一覧を取得する
app required | string アプリID |
db required | string DBID |
ids | Array of strings 検索するメール配信ジョブIDのリスト 最大リストサイズ200 |
isTest | boolean trueを指定するとテスト配信のジョブに絞り込まれる falseを指定すると本番配信のジョブに絞り込まれる |
offset | integer Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
Array of objects EXPRESSメール配信ジョブの一覧 | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "items": [
- {
- "id": "100",
- "expressEmailId": "string",
- "deliveredCount": "10",
- "errorCount": "2",
- "startedAt": "2019-08-24T14:15:22Z",
- "requiredTime": "3600",
- "isTest": true,
- "status": "finished",
- "errorCode": "U101",
- "errorDetail": "EmailTypeNotSupport"
}
], - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
指定のemailJobIdのEXPRESSメール配信ジョブを取得する
app required | string アプリID |
db required | string DBID |
emailJobId required | string メール配信ジョブID |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string メール配信ジョブID |
expressEmailId | string EXPRESSメールID |
deliveredCount | string 配信通数 配信が開始されるまではnull |
errorCount | string 配信エラー件数 配信が開始された後、初めて配信エラーを受け取るまではnull |
startedAt | string <date-time> 配信開始時刻 配信が開始されるまではnull 配信件数が0件の場合は配信準備開始時刻 |
requiredTime | string <second> 所要時間 配信が開始されるまではnull |
isTest | boolean テスト配信の場合true |
status | string Enum: "spooling" "failed" "waiting" "delivering" "finished" "forceCanceled" 配信ステータス |
errorCode | string ステータスがfailedの時のみエラーコードが表示される |
errorDetail | string エラーコードの詳細 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "id": "100",
- "expressEmailId": "string",
- "deliveredCount": "10",
- "errorCount": "2",
- "startedAt": "2019-08-24T14:15:22Z",
- "requiredTime": "3600",
- "isTest": true,
- "status": "finished",
- "errorCode": "U101",
- "errorDetail": "EmailTypeNotSupport"
}
指定した条件でEXPRESSメール配信ログ一覧を取得 各検索条件は全てANDで結合される
app required | string アプリID |
db required | string DBID |
string 検索する宛先メールアドレス 部分一致による検索 | |
messageId | string 検索するメッセージID |
sinceDeliveryDate | string <date-time> Example: sinceDeliveryDate=1970-01-01T00:00:00Z 検索する配信日時 指定した日時以降のメール配信ログで絞り込む |
untilDeliveryDate | string <date-time> Example: untilDeliveryDate=1970-01-01T00:00:00Z 検索する配信日時 指定した日時以前のメール配信ログで絞り込む |
emailJobId | string 検索するメール配信ジョブID |
recordId | string 検索する配信元レコードID |
errorCode | string <5.x.x or 4.x.x or NULL or NOT NULL> 検索する配信エラーコード 前方一致で検索を行う |
enableTotalCount | boolean Default: false trueの場合検索結果の対象件数を取得する |
sort | string Default: "messageId:desc" Enum: "messageId:asc" "messageId:desc" "deliveryDate:asc" "deliveryDate:desc" ソートする対象 (メッセージID、配信日時) 後に":asc"を入れると昇順。":desc"を入れると降順 |
offset | integer Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Role | string Example: "employee" アプリロール |
Array of objects EXPRESSメール配信ログの一覧 | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "items": [
- {
- "email": "yamada.taro@example.com",
- "messageId": "100",
- "deliveryDate": "2019-08-24T14:15:22Z",
- "subject": "8月のメールマガジン",
- "emailJobId": "100",
- "expressEmailId": "100",
- "fieldId": "100",
- "recordId": "100",
- "errorCode": "5.1.1",
- "errorMessage": "5.1.1 user unknown"
}
], - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
アプリの一覧を取得
X-Spiral-App-Authority
ヘッダーが use
(利用)の場合、アプリパッケージでインポート中のアプリはレスポンスに含まれない
ids | Array of strings <= 200 items 検索するアプリIDのリスト 最大リストサイズ200 |
query | string 検索するアプリのキーワード (表示名、説明)。 |
sort | string Default: "createdAt:desc" Enum: "id:asc" "id:desc" "name:asc" "name:desc" "displayName:asc" "displayName:desc" "createdAt:asc" "createdAt:desc" "updatedAt:asc" "updatedAt:desc" ソートする対象 (ID、識別名、表示名、作成日時、更新日時)。 |
offset | integer Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Authority | string Default: use Enum: "use" "manage" Example: manage アプリ権限種別 利用または管理のどちらの立場としてAPIを実行しようとしているのかを指定する
ヘッダーの指定を省略した場合、 |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
Array of objects アプリの一覧 | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
{- "items": [
- {
- "id": "100",
- "name": "Name",
- "displayName": "アプリ",
- "description": "アプリ説明",
- "revision": 2,
- "version": 1,
- "defaultPhpVersion": "7.4",
- "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}
], - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
アプリを作成
name | string [ 1 .. 64 ] characters 識別名 重複不可 アルファベット大文字・小文字、数字、アンダースコアのみ使用可能 ただし最初の文字はアルファベットでなければならない 未指定の場合、自動発行 |
displayName required | string [ 1 .. 64 ] characters 表示名 重複不可 |
description | string [ 0 .. 512 ] characters 説明 |
id | string ID |
name | string [ 1 .. 64 ] characters 識別名 |
displayName | string 表示名 |
description | string 説明 |
revision | integer リビジョン。アプリを変更するとカウントアップする数値 |
version | integer バージョン |
defaultPhpVersion | string Enum: "7.4" "8.1" "system_default" 現在指定可能なPHPバージョンは7.4, 8.1, system_defaultの3種類。 ※system_defaultは、サービス推奨バージョン 現在のsystem_defaultは8.1。 system_defaultを選択している場合、将来PHPサービス推奨バージョンが更新されると自動的にサービス推奨バージョンを参照します。 |
object 作成者 | |
object 更新者 更新がないレコードの場合は作成者と同じ | |
createdAt | string <date-time> 作成日時 |
{- "name": "app",
- "displayName": "アプリ",
- "description": "アプリ説明"
}
{- "id": "100",
- "name": "app",
- "displayName": "アプリ",
- "description": "アプリ説明",
- "revision": 2,
- "version": 1,
- "defaultPhpVersion": "7.4",
- "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2019-08-24T14:15:22Z"
}
アプリを取得
X-Spiral-App-Authority
ヘッダーが use
(利用)の場合、アプリパッケージでインポート中のアプリは取得できない
appId required | string アプリID |
X-Spiral-App-Authority | string Default: use Enum: "use" "manage" Example: manage アプリ権限種別 利用または管理のどちらの立場としてAPIを実行しようとしているのかを指定する
ヘッダーの指定を省略した場合、 |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
id | string ID |
name | string [ 1 .. 64 ] characters 識別名 重複不可 アルファベット大文字・小文字、数字、アンダースコアのみ使用可能 ただし最初の文字はアルファベットでなければならない 未指定の場合、自動発行 |
displayName | string 表示名 |
description | string 説明 |
revision | integer リビジョン。アプリを変更するとカウントアップする数値 |
version | integer バージョン |
defaultPhpVersion | string Enum: "7.4" "8.1" "system_default" 現在指定可能なPHPバージョンは7.4, 8.1, system_defaultの3種類。 ※system_defaultは、サービス推奨バージョン 現在のsystem_defaultは8.1。 system_defaultを選択している場合、将来PHPサービス推奨バージョンが更新されると自動的にサービス推奨バージョンを参照します。 |
object 作成者 | |
object 更新者 更新がないレコードの場合は作成者と同じ | |
createdAt | string <date-time> 作成日時 |
updatedAt | string <date-time> 更新日時 更新がないレコードの場合は作成日時と同じ |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
{- "id": "100",
- "name": "Name",
- "displayName": "アプリ",
- "description": "アプリ説明",
- "revision": 2,
- "version": 1,
- "defaultPhpVersion": "7.4",
- "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z"
}
アプリを変更
appId required | string アプリID |
name | string [ 1 .. 64 ] characters 識別名 重複不可 アルファベット大文字・小文字、数字、アンダースコアのみ使用可能 ただし最初の文字はアルファベットでなければならない |
displayName | string [ 1 .. 64 ] characters 表示名 重複不可 |
description | string [ 0 .. 512 ] characters 説明 |
defaultPhpVersion | string Enum: "7.4" "8.1" "system_default" 現在指定可能なPHPバージョンは7.4, 8.1, system_defaultの3種類。 ※system_defaultは、サービス推奨バージョン 現在のsystem_defaultは8.1。 system_defaultを選択している場合、将来PHPサービス推奨バージョンが更新されると自動的にサービス推奨バージョンを参照します。 |
id | string ID |
name | string [ 1 .. 64 ] characters 識別名 |
displayName | string 表示名 |
description | string 説明 |
revision | integer リビジョン。アプリを変更するとカウントアップする数値 |
version | integer バージョン |
defaultPhpVersion | string Enum: "7.4" "8.1" "system_default" 現在指定可能なPHPバージョンは7.4, 8.1, system_defaultの3種類。 ※system_defaultは、サービス推奨バージョン 現在のsystem_defaultは8.1。 system_defaultを選択している場合、将来PHPサービス推奨バージョンが更新されると自動的にサービス推奨バージョンを参照します。 |
object 作成者 | |
object 更新者 更新がないレコードの場合は作成者と同じ | |
createdAt | string <date-time> 作成日時 |
{- "name": "Name",
- "displayName": "アプリ",
- "description": "アプリ説明",
- "defaultPhpVersion": "7.4"
}
{- "id": "100",
- "name": "app",
- "displayName": "アプリ",
- "description": "アプリ説明",
- "revision": 2,
- "version": 1,
- "defaultPhpVersion": "7.4",
- "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2019-08-24T14:15:22Z"
}
DBの一覧を取得する
app required | string アプリID |
query | string 検索するDBのキーワード (表示名、説明)。 |
sort | string Default: "createdAt:desc" Enum: "id:asc" "id:desc" "name:asc" "name:desc" "displayName:asc" "displayName:desc" "createdAt:asc" "createdAt:desc" "updatedAt:asc" "updatedAt:desc" ソートする対象 (ID、識別名、表示名、作成日時、更新日時)。 |
offset | integer Example: offset=20 リストのオフセット |
limit | integer [ 1 .. 200 ] Default: 20 Example: limit=20 リストの上限 |
X-Spiral-App-Authority | string Default: use Enum: "use" "manage" Example: manage アプリ権限種別 利用または管理のどちらの立場としてAPIを実行しようとしているのかを指定する
ヘッダーの指定を省略した場合、 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール
ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
Array of objects DBの一覧 | |
prevOffset | integer 前のリストのオフセット。前のリストが存在しない場合はnull |
nextOffset | integer 次のリストのオフセット。次のリストが存在しない場合はnull |
totalCount | integer 検索結果の全件数 |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "items": [
- {
- "id": "100",
- "name": "inquirydb",
- "displayName": "問い合わせ管理DB",
- "description": "問い合わせを管理するDBです",
- "revision": "1",
- "fields": [
- {
- "id": "1",
- "name": "name",
- "displayName": "氏名",
- "size": 128,
- "fieldOrder": 0,
- "type": "text",
- "required": true,
- "unique": false,
- "index": true,
- "minLength": "1",
- "maxLength": "128",
- "allowCharTypes": [
- "alphabet",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "2",
- "name": "inquiry_detail",
- "displayName": "問い合わせ内容",
- "size": 1024,
- "fieldOrder": 1,
- "type": "textarea",
- "required": false,
- "unique": false,
- "index": false,
- "minLength": "1",
- "maxLength": "20000",
- "allowCharTypes": [
- "numeral",
- "alphabet",
- "sign",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "3",
- "name": "email",
- "displayName": "メールアドレス",
- "size": 256,
- "fieldOrder": 2,
- "type": "email",
- "required": true,
- "unique": true,
- "index": true,
- "regexp": "^[a-z]+[.]+[a-z]*@.*",
- "allowDomains": [
- "pi-pe.co.jp"
], - "denyDomains": [
- "example.co.jp"
]
}, - {
- "id": "4",
- "name": "gender",
- "displayName": "性別",
- "size": 8,
- "fieldOrder": 3,
- "type": "select",
- "required": true,
- "index": true,
- "options": [
- {
- "id": "1",
- "label": "男性"
}, - {
- "id": "2",
- "label": "女性"
}
]
}, - {
- "id": "5",
- "name": "inquiry_type",
- "displayName": "問い合わせ種別",
- "size": 125,
- "fieldOrder": 4,
- "type": "multiselect",
- "required": true,
- "index": false,
- "minSelection": "1",
- "maxSelection": "4",
- "options": [
- {
- "id": "1",
- "label": "資料請求"
}, - {
- "id": "2",
- "label": "見積"
}, - {
- "id": "3",
- "label": "サポート"
}, - {
- "id": "4",
- "label": "その他"
}
]
}, - {
- "id": "6",
- "name": "inquiry_ID",
- "displayName": "問い合わせID",
- "size": 8,
- "fieldOrder": 5,
- "type": "integer",
- "required": true,
- "unique": true,
- "index": true,
- "minRange": "1",
- "maxRange": "10000"
}, - {
- "id": "7",
- "name": "weight",
- "displayName": "重量",
- "size": 8,
- "fieldOrder": 6,
- "type": "double",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "0",
- "maxRange": "100.0",
- "decimalDigit": {
- "digitNumber": "1",
- "enableRoundDown": false
}
}, - {
- "id": "8",
- "name": "phone",
- "displayName": "電話番号",
- "size": 19,
- "fieldOrder": 7,
- "type": "phone",
- "required": true,
- "unique": true,
- "index": true,
- "phoneRegionCode": "JP"
}, - {
- "id": "9",
- "name": "response_date_time",
- "displayName": "対応日時",
- "size": 8,
- "fieldOrder": 8,
- "type": "dateTime",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "1989-12-31T15:00:00Z",
- "maxRange": "2021-12-31T14:30:00Z"
}, - {
- "id": "10",
- "name": "response_date",
- "displayName": "対応日付",
- "size": 4,
- "fieldOrder": 9,
- "type": "date",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "1900-01-01",
- "maxRange": "2021-12-31"
}, - {
- "id": "11",
- "name": "preferred_date",
- "displayName": "希望日",
- "size": 8,
- "fieldOrder": 10,
- "type": "monthDay",
- "required": false,
- "unique": false,
- "index": false,
- "minRange": "01-01",
- "maxRange": "12-31"
}, - {
- "id": "12",
- "name": "preferred_time",
- "displayName": "希望時刻",
- "size": 8,
- "fieldOrder": 11,
- "type": "time",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "06:00:00",
- "maxRange": "12:00:00"
}, - {
- "id": "13",
- "name": "file",
- "displayName": "添付ファイル",
- "size": "null",
- "fieldOrder": 12,
- "type": "file",
- "required": true,
- "allowFileExtensionCategories": [
- "text"
], - "allowFileExtensions": [
- "jpe",
- "jpg",
- "txt",
- "csv",
- "tsv"
], - "maxFiles": "10",
- "maxFileSize": "104857600"
}, - {
- "id": "14",
- "name": "password",
- "displayName": "パスワード",
- "size": 128,
- "fieldOrder": 13,
- "type": "password",
- "required": true,
- "minLength": "8",
- "maxLength": "128",
- "allowCharTypes": [
- "numeral",
- "sign",
- "lowercase_alphabet",
- "uppercase_alphabet"
], - "minCharTypes": "4"
}, - {
- "id": "15",
- "name": "customer",
- "displayName": "顧客",
- "size": 8,
- "fieldOrder": 14,
- "type": "reference",
- "required": true,
- "referenceDb": {
- "id": "1",
- "name": "customer_address",
- "displayName": "顧客アドレス"
}, - "referenceMultiple": true,
- "referenceLabelField": {
- "type": "_id",
- "id": "_id",
- "name": "_id",
- "displayName": "(ID)"
}, - "referenceUnique": false,
- "minReference": "1",
- "maxReference": "10",
- "onReferenceDelete": "restrict",
- "multipleUnique": "1"
}, - {
- "id": "16",
- "name": "response_person",
- "displayName": "問い合わせ担当者",
- "size": 320,
- "fieldOrder": 15,
- "type": "user",
- "defaultValue": {
- "type": "dynamic",
- "valueType": 5,
- "isOverwrite": true
}, - "required": true,
- "unique": false,
- "index": false
}
], - "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2021-01-28T03:57:23Z",
- "updatedAt": "2021-01-28T03:57:23Z"
}
], - "prevOffset": 0,
- "nextOffset": 40,
- "totalCount": 200
}
DBを作成
app required | string アプリID |
name | string [ 1 .. 64 ] characters 識別名 アプリ内で重複不可 アルファベット大文字・小文字、数字、アンダースコアのみ使用可能 ただし最初の文字はアルファベットでなければならない 未指定の場合、自動発行 |
displayName required | string [ 1 .. 64 ] characters DB表示名 アプリ内で重複不可 |
description | string [ 0 .. 512 ] characters DB説明 |
Array of objects フィールドのリスト |
id | string DBID |
name | string [ 1 .. 64 ] characters 識別名 重複不可 アルファベット大文字・小文字、数字、アンダースコアのみ使用可能 ただし最初の文字はアルファベットでなければならない 未指定の場合、自動発行 |
displayName | string [ 1 .. 64 ] characters DB表示名 |
description | string [ 0 .. 512 ] characters DB説明 |
revision | string DBリビジョン |
Array of objects フィールド一覧 | |
object 作成者 | |
object 更新者 更新がないレコードの場合は作成者と同じ | |
createdAt | string <date-time> 作成日時 |
updatedAt | string <date-time> 更新日時 更新がないレコードの場合は作成日時と同じ |
{- "name": "inquirydb",
- "displayName": "問い合わせ管理DB",
- "description": "問い合わせを管理するDBです。",
- "fields": [
- {
- "name": "name",
- "displayName": "氏名",
- "type": "text",
- "required": true,
- "unique": false,
- "index": true,
- "minLength": "1",
- "maxLength": "128",
- "allowCharTypes": [
- "alphabet",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "name": "inquiry_detail",
- "displayName": "問い合わせ内容",
- "type": "textarea",
- "required": false,
- "unique": false,
- "index": false,
- "minLength": "1",
- "maxLength": "20000",
- "allowCharTypes": [
- "numeral",
- "alphabet",
- "sign",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "name": "email",
- "displayName": "メールアドレス",
- "type": "email",
- "required": true,
- "unique": true,
- "index": true,
- "regexp": "^[a-z]+[.]+[a-z]*@.*",
- "allowDomains": [
- "pi-pe.co.jp"
], - "denyDomains": [
- "example.co.jp"
]
}, - {
- "name": "gender",
- "displayName": "性別",
- "type": "select",
- "required": true,
- "index": true,
- "options": [
- {
- "id": "1",
- "label": "男性"
}, - {
- "id": "2",
- "label": "女性"
}
]
}, - {
- "name": "inquiry_type",
- "displayName": "問い合わせ種別",
- "type": "multiselect",
- "required": true,
- "index": false,
- "minSelection": "1",
- "maxSelection": "4",
- "options": [
- {
- "id": "1",
- "label": "資料請求"
}, - {
- "id": "2",
- "label": "見積"
}, - {
- "id": "3",
- "label": "サポート"
}, - {
- "id": "4",
- "label": "その他"
}
]
}, - {
- "name": "inquiry_ID",
- "displayName": "問い合わせID",
- "type": "integer",
- "required": true,
- "unique": true,
- "index": true,
- "minRange": "1",
- "maxRange": "10000"
}, - {
- "name": "weight",
- "displayName": "重量",
- "type": "double",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "0",
- "maxRange": "100.0",
- "decimalDigit": {
- "digitNumber": "1",
- "enableRoundDown": false
}
}, - {
- "name": "phone",
- "displayName": "電話番号",
- "type": "phone",
- "required": true,
- "unique": true,
- "index": true,
- "phoneRegionCode": "JP"
}, - {
- "name": "response_date_time",
- "displayName": "対応日時",
- "type": "dateTime",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "1989-12-31T15:00:00Z",
- "maxRange": "2021-12-31T14:30:00Z"
}, - {
- "name": "response_date",
- "displayName": "対応日付",
- "type": "date",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "1900-01-01",
- "maxRange": "2021-12-31"
}, - {
- "name": "preferred_day",
- "displayName": "希望日",
- "type": "monthDay",
- "required": false,
- "unique": false,
- "index": false,
- "minRange": "01-01",
- "maxRange": "12-31"
}, - {
- "name": "preferred_time",
- "displayName": "希望時刻",
- "type": "time",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "06:00:00",
- "maxRange": "12:00:00"
}, - {
- "name": "file",
- "displayName": "添付ファイル",
- "type": "file",
- "required": true,
- "allowFileExtensionCategories": [
- "text"
], - "allowFileExtensions": [
- "jpeg",
- "jpg",
- "txt"
], - "maxFiles": "10",
- "maxFileSize": "104857600"
}, - {
- "name": "password",
- "displayName": "パスワード",
- "type": "password",
- "required": true,
- "minLength": "8",
- "maxLength": "128",
- "allowCharTypes": [
- "numeral",
- "sign",
- "lowercase_alphabet",
- "uppercase_alphabet"
], - "minCharTypes": "4"
}, - {
- "name": "customer",
- "displayName": "顧客",
- "type": "reference",
- "required": true,
- "referenceDbId": "1",
- "referenceMultiple": true,
- "referenceLabelFieldId": "_id",
- "referenceUnique": false,
- "minReference": "1",
- "maxReference": "10",
- "onReferenceDelete": "restrict",
- "multipleUnique": "1"
}, - {
- "name": "response_person",
- "displayName": "問い合わせ担当者",
- "type": "user",
- "defaultValue": {
- "type": "dynamic",
- "valueType": 5,
- "isOverwrite": true
}, - "required": true,
- "unique": false,
- "index": false
}
]
}
{- "id": "100",
- "name": "inquirydb",
- "displayName": "問い合わせ管理DB",
- "description": "問い合わせを管理するDBです",
- "revision": "1",
- "fields": [
- {
- "id": "1",
- "name": "name",
- "displayName": "氏名",
- "size": 128,
- "fieldOrder": 0,
- "type": "text",
- "required": true,
- "unique": false,
- "index": true,
- "minLength": "1",
- "maxLength": "128",
- "allowCharTypes": [
- "alphabet",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "2",
- "name": "inquiry_detail",
- "displayName": "問い合わせ内容",
- "size": 1024,
- "fieldOrder": 1,
- "type": "textarea",
- "required": false,
- "unique": false,
- "index": false,
- "minLength": "1",
- "maxLength": "20000",
- "allowCharTypes": [
- "numeral",
- "alphabet",
- "sign",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "3",
- "name": "email",
- "displayName": "メールアドレス",
- "size": 256,
- "fieldOrder": 2,
- "type": "email",
- "required": true,
- "unique": true,
- "index": true,
- "regexp": "^[a-z]+[.]+[a-z]*@.*",
- "allowDomains": [
- "pi-pe.co.jp"
], - "denyDomains": [
- "example.co.jp"
]
}, - {
- "id": "4",
- "name": "gender",
- "displayName": "性別",
- "size": 8,
- "fieldOrder": 3,
- "type": "select",
- "required": true,
- "index": true,
- "options": [
- {
- "id": "1",
- "label": "男性"
}, - {
- "id": "2",
- "label": "女性"
}
]
}, - {
- "id": "5",
- "name": "inquiry_type",
- "displayName": "問い合わせ種別",
- "size": 125,
- "fieldOrder": 4,
- "type": "multiselect",
- "required": true,
- "index": false,
- "minSelection": "1",
- "maxSelection": "4",
- "options": [
- {
- "id": "1",
- "label": "資料請求"
}, - {
- "id": "2",
- "label": "見積"
}, - {
- "id": "3",
- "label": "サポート"
}, - {
- "id": "4",
- "label": "その他"
}
]
}, - {
- "id": "6",
- "name": "inquiry_ID",
- "displayName": "問い合わせID",
- "size": 8,
- "fieldOrder": 5,
- "type": "integer",
- "required": true,
- "unique": true,
- "index": true,
- "minRange": "1",
- "maxRange": "10000"
}, - {
- "id": "7",
- "name": "weight",
- "displayName": "重量",
- "size": 8,
- "fieldOrder": 6,
- "type": "double",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "0",
- "maxRange": "100.0",
- "decimalDigit": {
- "digitNumber": "1",
- "enableRoundDown": false
}
}, - {
- "id": "8",
- "name": "phone",
- "displayName": "電話番号",
- "size": 19,
- "fieldOrder": 7,
- "type": "phone",
- "required": true,
- "unique": true,
- "index": true,
- "phoneRegionCode": "JP"
}, - {
- "id": "9",
- "name": "response_date_time",
- "displayName": "対応日時",
- "size": 8,
- "fieldOrder": 8,
- "type": "dateTime",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "1989-12-31T15:00:00Z",
- "maxRange": "2021-12-31T14:30:00Z"
}, - {
- "id": "10",
- "name": "response_date",
- "displayName": "対応日付",
- "size": 4,
- "fieldOrder": 9,
- "type": "date",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "1900-01-01",
- "maxRange": "2021-12-31"
}, - {
- "id": "11",
- "name": "preferred_date",
- "displayName": "希望日",
- "size": 8,
- "fieldOrder": 10,
- "type": "monthDay",
- "required": false,
- "unique": false,
- "index": false,
- "minRange": "01-01",
- "maxRange": "12-31"
}, - {
- "id": "12",
- "name": "preferred_time",
- "displayName": "希望時刻",
- "size": 8,
- "fieldOrder": 11,
- "type": "time",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "06:00:00",
- "maxRange": "12:00:00"
}, - {
- "id": "13",
- "name": "file",
- "displayName": "添付ファイル",
- "size": "null",
- "fieldOrder": 12,
- "type": "file",
- "required": true,
- "allowFileExtensionCategories": [
- "text"
], - "allowFileExtensions": [
- "jpe",
- "jpg",
- "txt",
- "csv",
- "tsv"
], - "maxFiles": "10",
- "maxFileSize": "104857600"
}, - {
- "id": "14",
- "name": "password",
- "displayName": "パスワード",
- "size": 128,
- "fieldOrder": 13,
- "type": "password",
- "required": true,
- "minLength": "8",
- "maxLength": "128",
- "allowCharTypes": [
- "numeral",
- "sign",
- "lowercase_alphabet",
- "uppercase_alphabet"
], - "minCharTypes": "4"
}, - {
- "id": "15",
- "name": "customer",
- "displayName": "顧客",
- "size": 8,
- "fieldOrder": 14,
- "type": "reference",
- "required": true,
- "referenceDb": {
- "id": "1",
- "name": "customer_address",
- "displayName": "顧客アドレス"
}, - "referenceMultiple": true,
- "referenceLabelField": {
- "type": "_id",
- "id": "_id",
- "name": "_id",
- "displayName": "(ID)"
}, - "referenceUnique": false,
- "minReference": "1",
- "maxReference": "10",
- "onReferenceDelete": "restrict",
- "multipleUnique": "1"
}, - {
- "id": "16",
- "name": "response_person",
- "displayName": "問い合わせ担当者",
- "size": 320,
- "fieldOrder": 15,
- "type": "user",
- "defaultValue": {
- "type": "dynamic",
- "valueType": 5,
- "isOverwrite": true
}, - "required": true,
- "unique": false,
- "index": false
}
], - "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2021-01-28T03:57:23Z",
- "updatedAt": "2021-01-28T03:57:23Z"
}
DBを取得
app required | string アプリID |
db required | string DBID |
X-Spiral-App-Authority | string Default: use Enum: "use" "manage" Example: manage アプリ権限種別 利用または管理のどちらの立場としてAPIを実行しようとしているのかを指定する
ヘッダーの指定を省略した場合、 |
X-Spiral-App-Role | string Default: _fullAccess Example: employee アプリロール
ヘッダーの指定を省略した場合、「全権限」のアプリロールが指定されたものとしてAPIが実行される |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
id | string DBID |
name | string [ 1 .. 64 ] characters 識別名 重複不可 アルファベット大文字・小文字、数字、アンダースコアのみ使用可能 ただし最初の文字はアルファベットでなければならない 未指定の場合、自動発行 |
displayName | string [ 1 .. 64 ] characters DB表示名 |
description | string [ 0 .. 512 ] characters DB説明 |
revision | string DBリビジョン |
Array of objects フィールド一覧 | |
object 作成者 | |
object 更新者 更新がないレコードの場合は作成者と同じ | |
createdAt | string <date-time> 作成日時 |
updatedAt | string <date-time> 更新日時 更新がないレコードの場合は作成日時と同じ |
X-Spiral-App-Authority | string Enum: "use" "manage" Example: "manage" アプリ権限種別 |
X-Spiral-App-Role | string Example: "employee" アプリロール |
{- "id": "100",
- "name": "inquirydb",
- "displayName": "問い合わせ管理DB",
- "description": "問い合わせを管理するDBです",
- "revision": "1",
- "fields": [
- {
- "id": "1",
- "name": "name",
- "displayName": "氏名",
- "size": 128,
- "fieldOrder": 0,
- "type": "text",
- "required": true,
- "unique": false,
- "index": true,
- "minLength": "1",
- "maxLength": "128",
- "allowCharTypes": [
- "alphabet",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "2",
- "name": "inquiry_detail",
- "displayName": "問い合わせ内容",
- "size": 1024,
- "fieldOrder": 1,
- "type": "textarea",
- "required": false,
- "unique": false,
- "index": false,
- "minLength": "1",
- "maxLength": "20000",
- "allowCharTypes": [
- "numeral",
- "alphabet",
- "sign",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "3",
- "name": "email",
- "displayName": "メールアドレス",
- "size": 256,
- "fieldOrder": 2,
- "type": "email",
- "required": true,
- "unique": true,
- "index": true,
- "regexp": "^[a-z]+[.]+[a-z]*@.*",
- "allowDomains": [
- "pi-pe.co.jp"
], - "denyDomains": [
- "example.co.jp"
]
}, - {
- "id": "4",
- "name": "gender",
- "displayName": "性別",
- "size": 8,
- "fieldOrder": 3,
- "type": "select",
- "required": true,
- "index": true,
- "options": [
- {
- "id": "1",
- "label": "男性"
}, - {
- "id": "2",
- "label": "女性"
}
]
}, - {
- "id": "5",
- "name": "inquiry_type",
- "displayName": "問い合わせ種別",
- "size": 125,
- "fieldOrder": 4,
- "type": "multiselect",
- "required": true,
- "index": false,
- "minSelection": "1",
- "maxSelection": "4",
- "options": [
- {
- "id": "1",
- "label": "資料請求"
}, - {
- "id": "2",
- "label": "見積"
}, - {
- "id": "3",
- "label": "サポート"
}, - {
- "id": "4",
- "label": "その他"
}
]
}, - {
- "id": "6",
- "name": "inquiry_ID",
- "displayName": "問い合わせID",
- "size": 8,
- "fieldOrder": 5,
- "type": "integer",
- "required": true,
- "unique": true,
- "index": true,
- "minRange": "1",
- "maxRange": "10000"
}, - {
- "id": "7",
- "name": "weight",
- "displayName": "重量",
- "size": 8,
- "fieldOrder": 6,
- "type": "double",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "0",
- "maxRange": "100.0",
- "decimalDigit": {
- "digitNumber": "1",
- "enableRoundDown": false
}
}, - {
- "id": "8",
- "name": "phone",
- "displayName": "電話番号",
- "size": 19,
- "fieldOrder": 7,
- "type": "phone",
- "required": true,
- "unique": true,
- "index": true,
- "phoneRegionCode": "JP"
}, - {
- "id": "9",
- "name": "response_date_time",
- "displayName": "対応日時",
- "size": 8,
- "fieldOrder": 8,
- "type": "dateTime",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "1989-12-31T15:00:00Z",
- "maxRange": "2021-12-31T14:30:00Z"
}, - {
- "id": "10",
- "name": "response_date",
- "displayName": "対応日付",
- "size": 4,
- "fieldOrder": 9,
- "type": "date",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "1900-01-01",
- "maxRange": "2021-12-31"
}, - {
- "id": "11",
- "name": "preferred_date",
- "displayName": "希望日",
- "size": 8,
- "fieldOrder": 10,
- "type": "monthDay",
- "required": false,
- "unique": false,
- "index": false,
- "minRange": "01-01",
- "maxRange": "12-31"
}, - {
- "id": "12",
- "name": "preferred_time",
- "displayName": "希望時刻",
- "size": 8,
- "fieldOrder": 11,
- "type": "time",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "06:00:00",
- "maxRange": "12:00:00"
}, - {
- "id": "13",
- "name": "file",
- "displayName": "添付ファイル",
- "size": "null",
- "fieldOrder": 12,
- "type": "file",
- "required": true,
- "allowFileExtensionCategories": [
- "text"
], - "allowFileExtensions": [
- "jpe",
- "jpg",
- "txt",
- "csv",
- "tsv"
], - "maxFiles": "10",
- "maxFileSize": "104857600"
}, - {
- "id": "14",
- "name": "password",
- "displayName": "パスワード",
- "size": 128,
- "fieldOrder": 13,
- "type": "password",
- "required": true,
- "minLength": "8",
- "maxLength": "128",
- "allowCharTypes": [
- "numeral",
- "sign",
- "lowercase_alphabet",
- "uppercase_alphabet"
], - "minCharTypes": "4"
}, - {
- "id": "15",
- "name": "customer",
- "displayName": "顧客",
- "size": 8,
- "fieldOrder": 14,
- "type": "reference",
- "required": true,
- "referenceDb": {
- "id": "1",
- "name": "customer_address",
- "displayName": "顧客アドレス"
}, - "referenceMultiple": true,
- "referenceLabelField": {
- "type": "_id",
- "id": "_id",
- "name": "_id",
- "displayName": "(ID)"
}, - "referenceUnique": false,
- "minReference": "1",
- "maxReference": "10",
- "onReferenceDelete": "restrict",
- "multipleUnique": "1"
}, - {
- "id": "16",
- "name": "response_person",
- "displayName": "問い合わせ担当者",
- "size": 320,
- "fieldOrder": 15,
- "type": "user",
- "defaultValue": {
- "type": "dynamic",
- "valueType": 5,
- "isOverwrite": true
}, - "required": true,
- "unique": false,
- "index": false
}
], - "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2021-01-28T03:57:23Z",
- "updatedAt": "2021-01-28T03:57:23Z"
}
指定のDBを変更する
app required | string アプリID |
db required | string DBID |
name | string [ 1 .. 64 ] characters 識別名 アプリ内で重複不可 アルファベット大文字・小文字、数字、アンダースコアのみ使用可能 ただし最初の文字はアルファベットでなければならない |
displayName | string [ 1 .. 64 ] characters DB表示名 アプリ内で重複不可 |
description | string [ 0 .. 512 ] characters DB説明 |
revision | string DBリビジョン。 変更元のリビジョンを指定する。 指定されたリビジョンが最新のものでない場合はエラー。 指定しない場合はチェックを行わない。 |
Array of objects 追加するフィールドの配列 | |
Array of objects 更新するフィールドの配列 | |
deleteFields | Array of strings 削除するフィールドのフィールドID、あるいはフィールド識別名の配列
|
fieldOrder | Array of strings フィールドの並び順をフィールド識別名にて配列の並び順で指定。 |
id | string DBID |
name | string [ 1 .. 64 ] characters 識別名 重複不可 アルファベット大文字・小文字、数字、アンダースコアのみ使用可能 ただし最初の文字はアルファベットでなければならない 未指定の場合、自動発行 |
displayName | string [ 1 .. 64 ] characters DB表示名 |
description | string [ 0 .. 512 ] characters DB説明 |
revision | string DBリビジョン |
Array of objects フィールド一覧 | |
object 作成者 | |
object 更新者 更新がないレコードの場合は作成者と同じ | |
createdAt | string <date-time> 作成日時 |
updatedAt | string <date-time> 更新日時 更新がないレコードの場合は作成日時と同じ |
{- "name": "inquirydb",
- "displayName": "問い合わせ管理DB",
- "description": "問い合わせを管理するDBです",
- "revision": "1",
- "addFields": [
- {
- "name": "name",
- "displayName": "氏名",
- "type": "text",
- "required": true,
- "unique": false,
- "index": true,
- "minLength": "1",
- "maxLength": "128",
- "allowCharTypes": [
- "alphabet",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "name": "inquiry_detail",
- "displayName": "問い合わせ内容",
- "type": "textarea",
- "required": false,
- "unique": false,
- "index": false,
- "minLength": "1",
- "maxLength": "20000",
- "allowCharTypes": [
- "numeral",
- "alphabet",
- "sign",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "name": "email",
- "displayName": "メールアドレス",
- "type": "email",
- "required": true,
- "unique": true,
- "index": true,
- "regexp": "^[a-z]+[.]+[a-z]*@.*",
- "allowDomains": [
- "pi-pe.co.jp"
], - "denyDomains": [
- "example.co.jp"
]
}, - {
- "name": "gender",
- "displayName": "性別",
- "type": "select",
- "required": true,
- "index": true,
- "options": [
- {
- "id": "1",
- "label": "男性"
}, - {
- "id": "2",
- "label": "女性"
}
]
}, - {
- "name": "inquiry_type",
- "displayName": "問い合わせ種別",
- "type": "multiselect",
- "required": true,
- "index": false,
- "minSelection": "1",
- "maxSelection": "4",
- "options": [
- {
- "id": "1",
- "label": "資料請求"
}, - {
- "id": "2",
- "label": "見積"
}, - {
- "id": "3",
- "label": "サポート"
}, - {
- "id": "4",
- "label": "その他"
}
]
}, - {
- "name": "inquiry_ID",
- "displayName": "問い合わせID",
- "type": "integer",
- "required": true,
- "unique": true,
- "index": true,
- "minRange": "1",
- "maxRange": "10000"
}, - {
- "name": "weight",
- "displayName": "重量",
- "type": "double",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "0",
- "maxRange": "100.0",
- "decimalDigit": {
- "digitNumber": "1",
- "enableRoundDown": false
}
}, - {
- "name": "phone",
- "displayName": "電話番号",
- "type": "phone",
- "required": true,
- "unique": true,
- "index": true,
- "phoneRegionCode": "JP"
}, - {
- "name": "response_date_time",
- "displayName": "対応日時",
- "type": "dateTime",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "1989-12-31T15:00:00Z",
- "maxRange": "2021-12-31T14:30:00Z"
}, - {
- "name": "response_date",
- "displayName": "対応日付",
- "type": "date",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "1900-01-01",
- "maxRange": "2021-12-31"
}, - {
- "name": "preferred_day",
- "displayName": "希望日",
- "type": "monthDay",
- "required": false,
- "unique": false,
- "index": false,
- "minRange": "01-01",
- "maxRange": "12-31"
}, - {
- "name": "preferred_time",
- "displayName": "希望時刻",
- "type": "time",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "06:00:00",
- "maxRange": "12:00:00"
}, - {
- "name": "file",
- "displayName": "添付ファイル",
- "type": "file",
- "required": true,
- "allowFileExtensionCategories": [
- "text"
], - "allowFileExtensions": [
- "jpeg",
- "jpg",
- "txt"
], - "maxFiles": "10",
- "maxFileSize": "104857600"
}, - {
- "name": "password",
- "displayName": "パスワード",
- "type": "password",
- "required": true,
- "minLength": "8",
- "maxLength": "128",
- "allowCharTypes": [
- "numeral",
- "sign",
- "lowercase_alphabet",
- "uppercase_alphabet"
], - "minCharTypes": "4"
}, - {
- "name": "customer",
- "displayName": "顧客",
- "type": "reference",
- "required": true,
- "referenceDbId": "1",
- "referenceMultiple": true,
- "referenceLabelFieldId": "_id",
- "referenceUnique": false,
- "minReference": "1",
- "maxReference": "10",
- "onReferenceDelete": "restrict",
- "multipleUnique": "1"
}, - {
- "name": "response_person",
- "displayName": "問い合わせ担当者",
- "type": "user",
- "defaultValue": {
- "type": "dynamic",
- "valueType": 5,
- "isOverwrite": true
}, - "required": true,
- "unique": false,
- "index": false
}
], - "updateFields": [
- {
- "id": "1",
- "name": "name",
- "displayName": "氏名",
- "required": true,
- "unique": true,
- "index": true,
- "minLength": "1",
- "maxLength": "128",
- "allowCharTypes": [
- "alphabet",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "2",
- "name": "inquiry_detail",
- "displayName": "問い合わせ内容",
- "required": false,
- "unique": false,
- "index": false,
- "minLength": "1",
- "maxLength": "20000",
- "allowCharTypes": [
- "numeral",
- "alphabet",
- "sign",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "3",
- "name": "email",
- "displayName": "メールアドレス",
- "required": true,
- "unique": true,
- "index": true,
- "regexp": "^[a-z]+[.]+[a-z]*@.*",
- "allowDomains": [
- "pi-pe.co.jp"
], - "denyDomains": [
- "example.co.jp"
]
}, - {
- "id": "4",
- "name": "gender",
- "displayName": "性別",
- "required": true,
- "index": true,
- "addOptions": [
- {
- "id": "3",
- "label": "他"
}
], - "updateOptions": [
- {
- "id": "1",
- "label": "男性"
}, - {
- "id": "2",
- "label": "女性"
}
], - "deleteOptions": [
- 2
]
}, - {
- "id": "5",
- "name": "inquiry_type",
- "displayName": "問い合わせ種別",
- "required": true,
- "index": false,
- "minSelection": "1",
- "maxSelection": "4",
- "addOptions": [
- {
- "id": "99",
- "label": "その他"
}
], - "updateOptions": [
- {
- "id": "1",
- "label": "資料請求"
}, - {
- "id": "2",
- "label": "見積"
}, - {
- "id": "3",
- "label": "サポート"
}
], - "deleteOptions": [
- 4
]
}, - {
- "id": "6",
- "name": "inquiry_ID",
- "displayName": "問い合わせID",
- "required": true,
- "unique": true,
- "index": true,
- "minRange": "1",
- "maxRange": "10000"
}, - {
- "id": "7",
- "name": "weight",
- "displayName": "重量",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "0",
- "maxRange": "100.0",
- "decimalDigit": {
- "digitNumber": "1",
- "enableRoundDown": false
}
}, - {
- "id": "8",
- "name": "phone",
- "displayName": "電話番号",
- "required": true,
- "unique": true,
- "index": true,
- "phoneRegionCode": "JP"
}, - {
- "id": "9",
- "name": "response_date_time",
- "displayName": "対応日時",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "1989-12-31T15:00:00Z",
- "maxRange": "2021-12-31T14:30:00Z"
}, - {
- "id": "10",
- "name": "response_date",
- "displayName": "対応日付",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "1900-01-01",
- "maxRange": "2021-12-31"
}, - {
- "id": "11",
- "name": "preferred_date",
- "displayName": "希望日",
- "required": false,
- "unique": false,
- "index": false,
- "minRange": "01-01",
- "maxRange": "12-31"
}, - {
- "id": "12",
- "name": "preferred_time",
- "displayName": "希望時刻",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "06:00:00",
- "maxRange": "12:00:00"
}, - {
- "id": "13",
- "name": "file",
- "displayName": "添付ファイル",
- "required": true,
- "allowFileExtensionCategories": [
- "text"
], - "allowFileExtensions": [
- "jpeg",
- "jpg",
- "txt"
], - "maxFiles": "10",
- "maxFileSize": "104857600"
}, - {
- "id": "14",
- "name": "password",
- "displayName": "パスワード",
- "required": true,
- "minLength": "8",
- "maxLength": "128",
- "allowCharTypes": [
- "numeral",
- "sign",
- "lowercase_alphabet",
- "uppercase_alphabet"
], - "minCharTypes": "4"
}, - {
- "id": "15",
- "name": "customer",
- "displayName": "顧客",
- "required": true,
- "referenceLabelFieldId": "_id",
- "referenceUnique": false,
- "minReference": "1",
- "maxReference": "10",
- "onReferenceDelete": "restrict",
- "multipleUnique": "1"
}, - {
- "id": "16",
- "name": "response_person",
- "displayName": "問い合わせ担当者",
- "defaultValue": {
- "type": "dynamic",
- "valueType": 5,
- "isOverwrite": true
}, - "required": true,
- "unique": false,
- "index": false
}
], - "deleteFields": [
- 10,
- 11
], - "fieldOrder": [
- "inquiry_ID",
- "inquiry_type",
- "inquiry_detail",
- "response_date_time",
- "preferred_time"
], - "multipleUnique": [
- 100,
- 200
]
}
{- "id": "100",
- "name": "inquirydb",
- "displayName": "問い合わせ管理DB",
- "description": "問い合わせを管理するDBです",
- "revision": "1",
- "fields": [
- {
- "id": "1",
- "name": "name",
- "displayName": "氏名",
- "size": 128,
- "fieldOrder": 0,
- "type": "text",
- "required": true,
- "unique": false,
- "index": true,
- "minLength": "1",
- "maxLength": "128",
- "allowCharTypes": [
- "alphabet",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "2",
- "name": "inquiry_detail",
- "displayName": "問い合わせ内容",
- "size": 1024,
- "fieldOrder": 1,
- "type": "textarea",
- "required": false,
- "unique": false,
- "index": false,
- "minLength": "1",
- "maxLength": "20000",
- "allowCharTypes": [
- "numeral",
- "alphabet",
- "sign",
- "multibyte"
], - "regexp": "example.*"
}, - {
- "id": "3",
- "name": "email",
- "displayName": "メールアドレス",
- "size": 256,
- "fieldOrder": 2,
- "type": "email",
- "required": true,
- "unique": true,
- "index": true,
- "regexp": "^[a-z]+[.]+[a-z]*@.*",
- "allowDomains": [
- "pi-pe.co.jp"
], - "denyDomains": [
- "example.co.jp"
]
}, - {
- "id": "4",
- "name": "gender",
- "displayName": "性別",
- "size": 8,
- "fieldOrder": 3,
- "type": "select",
- "required": true,
- "index": true,
- "options": [
- {
- "id": "1",
- "label": "男性"
}, - {
- "id": "2",
- "label": "女性"
}
]
}, - {
- "id": "5",
- "name": "inquiry_type",
- "displayName": "問い合わせ種別",
- "size": 125,
- "fieldOrder": 4,
- "type": "multiselect",
- "required": true,
- "index": false,
- "minSelection": "1",
- "maxSelection": "4",
- "options": [
- {
- "id": "1",
- "label": "資料請求"
}, - {
- "id": "2",
- "label": "見積"
}, - {
- "id": "3",
- "label": "サポート"
}, - {
- "id": "4",
- "label": "その他"
}
]
}, - {
- "id": "6",
- "name": "inquiry_ID",
- "displayName": "問い合わせID",
- "size": 8,
- "fieldOrder": 5,
- "type": "integer",
- "required": true,
- "unique": true,
- "index": true,
- "minRange": "1",
- "maxRange": "10000"
}, - {
- "id": "7",
- "name": "weight",
- "displayName": "重量",
- "size": 8,
- "fieldOrder": 6,
- "type": "double",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "0",
- "maxRange": "100.0",
- "decimalDigit": {
- "digitNumber": "1",
- "enableRoundDown": false
}
}, - {
- "id": "8",
- "name": "phone",
- "displayName": "電話番号",
- "size": 19,
- "fieldOrder": 7,
- "type": "phone",
- "required": true,
- "unique": true,
- "index": true,
- "phoneRegionCode": "JP"
}, - {
- "id": "9",
- "name": "response_date_time",
- "displayName": "対応日時",
- "size": 8,
- "fieldOrder": 8,
- "type": "dateTime",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "1989-12-31T15:00:00Z",
- "maxRange": "2021-12-31T14:30:00Z"
}, - {
- "id": "10",
- "name": "response_date",
- "displayName": "対応日付",
- "size": 4,
- "fieldOrder": 9,
- "type": "date",
- "required": true,
- "unique": false,
- "index": true,
- "minRange": "1900-01-01",
- "maxRange": "2021-12-31"
}, - {
- "id": "11",
- "name": "preferred_date",
- "displayName": "希望日",
- "size": 8,
- "fieldOrder": 10,
- "type": "monthDay",
- "required": false,
- "unique": false,
- "index": false,
- "minRange": "01-01",
- "maxRange": "12-31"
}, - {
- "id": "12",
- "name": "preferred_time",
- "displayName": "希望時刻",
- "size": 8,
- "fieldOrder": 11,
- "type": "time",
- "required": true,
- "unique": false,
- "index": false,
- "minRange": "06:00:00",
- "maxRange": "12:00:00"
}, - {
- "id": "13",
- "name": "file",
- "displayName": "添付ファイル",
- "size": "null",
- "fieldOrder": 12,
- "type": "file",
- "required": true,
- "allowFileExtensionCategories": [
- "text"
], - "allowFileExtensions": [
- "jpe",
- "jpg",
- "txt",
- "csv",
- "tsv"
], - "maxFiles": "10",
- "maxFileSize": "104857600"
}, - {
- "id": "14",
- "name": "password",
- "displayName": "パスワード",
- "size": 128,
- "fieldOrder": 13,
- "type": "password",
- "required": true,
- "minLength": "8",
- "maxLength": "128",
- "allowCharTypes": [
- "numeral",
- "sign",
- "lowercase_alphabet",
- "uppercase_alphabet"
], - "minCharTypes": "4"
}, - {
- "id": "15",
- "name": "customer",
- "displayName": "顧客",
- "size": 8,
- "fieldOrder": 14,
- "type": "reference",
- "required": true,
- "referenceDb": {
- "id": "1",
- "name": "customer_address",
- "displayName": "顧客アドレス"
}, - "referenceMultiple": true,
- "referenceLabelField": {
- "type": "_id",
- "id": "_id",
- "name": "_id",
- "displayName": "(ID)"
}, - "referenceUnique": false,
- "minReference": "1",
- "maxReference": "10",
- "onReferenceDelete": "restrict",
- "multipleUnique": "1"
}, - {
- "id": "16",
- "name": "response_person",
- "displayName": "問い合わせ担当者",
- "size": 320,
- "fieldOrder": 15,
- "type": "user",
- "defaultValue": {
- "type": "dynamic",
- "valueType": 5,
- "isOverwrite": true
}, - "required": true,
- "unique": false,
- "index": false
}
], - "createdBy": {
- "type": "user",
- "userId": "100"
}, - "updatedBy": {
- "type": "user",
- "userId": "100"
}, - "createdAt": "2021-01-28T03:57:23Z",
- "updatedAt": "2021-01-28T03:57:23Z"
}
指定のDBを削除する DBに依存する設定がある場合は削除できずにエラーとなる 一部の設定はDB削除時に連動して削除される場合がある 詳細はサポートサイトをご確認ください
app required | string アプリID |
db required | string DBID |
アクションを実行する
app required | string アプリID |
actionId required | string アクションID |
アクション毎に異なる。
詳細はサポートサイトをご確認ください。
{ }
本番環境の認証エリアにログインしてセッションに紐づくエリア認証トークンを発行する エリア認証トークンの有効期限は認証エリアで設定したセッション有効期限に準ずる APIエージェントのみ使用可能
siteId required | string サイトID |
authenticationId required | string 認証エリアID |
id required | string 認証エリアで指定されたIDフィールドの値 |
password required | string 認証エリアで指定されたパスワードフィールドの値 |
recordId | string ID・パスワードによって認証したレコードID |
token | string エリア認証トークン |
expireTime | integer エリア認証トークンの有効期限日時(エポック秒) |
{- "id": "spiral.taro",
- "password": "7jSkFW5,.T_D~hE"
}
{- "recordId": "100",
- "token": "59220e7f-b813-47d8-8a1e-95cacd88a13e",
- "expireTime": 1588266389
}
セッションに紐づくエリア認証トークンの有効性を確認する 指定するエリア認証トークンを発行したAPIエージェントのみ使用可能 デフォルトで有効性確認と同時にセッションの有効期限を延長する
siteId required | string サイトID |
authenticationId required | string 認証エリアID |
token required | string エリア認証トークン |
extendExpireTime | boolean Default: true エリア認証トークンの有効期限の延長 延長時間は認証エリアで設定したセッション有効期限に準ずる trueの場合は有効期限を延長する |
status | boolean エリア認証トークンの有効性 有効の場合はtrueを返す 無効の場合はfalseを返す |
expireTime | integer エリア認証トークンの有効期限日時(エポック秒)
|
{- "token": "59220e7f-b813-47d8-8a1e-95cacd88a13e",
- "extendExpireTime": true
}
{- "status": true,
- "expireTime": 1588266389
}
有効なエリア認証トークンを用いて認証エリアにブラウザでログインするためのワンタイムURLを発行する ワンタイムURLは一度アクセスすると無効化され再アクセスできなくなる 指定するエリア認証トークンを発行したAPIエージェントのみ使用可能
siteId required | string サイトID |
authenticationId required | string 認証エリアID |
token required | string エリア認証トークン 無効の場合はエラーとなる |
path required | string ログイン後に表示する認証エリアのページパス ログインAPIでログインした認証エリアのみ指定可能 |
url | string 指定したページパスにログインするためのクエリパラメータ付きURL 有効期間はURLが発行されてから1分間 1度アクセスされるか、ページパスに関係なく同一のエリア認証トークンで新たにURLが発行されると無効になる |
{- "token": "59220e7f-b813-47d8-8a1e-95cacd88a13e",
- "path": "/memberAuth/update"
}
本番環境の認証エリアからログアウトする ログアウトするとエリア認証トークンは無効となる ワンタイムURLで認証エリアにログインしている場合もログアウトされる 指定するエリア認証トークンを発行したAPIエージェントのみ使用可能
siteId required | string サイトID |
authenticationId required | string 認証エリアID |
token required | string エリア認証トークン 無効の場合はエラーとなる |
{- "token": "59220e7f-b813-47d8-8a1e-95cacd88a13e"
}