トラッキングコードを登録後、BowNow APIをご利用いただけるようになります。
APIはRESTfulに設計されており、レスポンスボディ内にJSONで返却し、エラーを示すHTTPレスポンスステータスコードを返却します。
APIをコールするまでに必要な手順を説明します。
認証はトラッキングコード単位で行います。
左メニューの「設定」-「システムを設定する」画面から、トラッキングコード名を選択します。
遷移先の「コード情報」内の「トラッキングID」と「APIキー」が認証情報になります。
※ 当該認証情報を利用して、リード情報の作成/更新/削除などが実行することが可能となりますので、十分に注意して取扱ください。
※ APIキーが漏洩した可能性がある場合はAPIキーの変更を実施してください。APIキーの変更を実施した場合は発行済みのアクセストークン及びリフレッシュトークンが削除されます。
「アクセストークン発行」エンドポイントにてトークンを取得します。
発行されたアクセストークンの有効期限は短く設定されているので、同レスポンスに含まれる refresh_token を使用して、「アクセストークン更新」エンドポイントへコールすることで、認証状態を永続化することも可能です。
$ curl --location --request POST "https://api.bownow.jp/v1/auth/token" \
--header "Tracking-ID: <トラッキングID>" \
--header "Content-Type: application/json" \
--data-raw "{
"api_key": "<APIキー>"
}"
認証状態を維持するために使用します。 有効期限は6時間です。
アクセストークンの有効期限が切れた際に更新するために使用します。 有効期限は1ヶ月です。
複数クライアントでのログイン状態を保持するために使用します。
BowNow REST APIは、トラッキングコードIDとクライアントトークン、アクセストークンを要求します。
$ curl --location --request POST "https://api.bownow.jp/v1/statuses/search" \
--header "Tracking-ID: <トラッキングID>" \
--header "Client-Token: <クライアントトークン>" \
--header "Authorization: Bearer <アクセストークン>" \
--header "Content-Type: application/json" \
--data-raw "{
"ids": [
1,2,3,4,5
]
}"
APIは一定期間内でのリクエスト数を制限しています。
制限を超過した場合は 429 Too Many Requests を返却します。
クォータは、ライセンス単位で管理されます。
以下のように、プランごとにクォータが適用されます。
| BowNowプラン名 | 1日単位のクォータ |
|---|---|
| フリープラン | 1,000リクエスト |
| 有料プラン | 10,000リクエスト |
429 Too Many Requests
{
"message": "too_many_requests",
"description": "The request limit has been exceeded."
}
リクエストクライアントのIP単位で管理されます。
以下のように、レートが設定されます。
| BowNowプラン名 | レート |
|---|---|
| フリープラン | 300リクエスト |
| 有料プラン | 300リクエスト |
429 Too Many Requests
Retry later
APIはリクエスト内容が不正だった場合や、想定外のエラーが発生した場合に共通のエラーをレスポンスします。
エラー内容ごとにHTTPレスポンスステータスコードが割り当てられます。
message にはエラーの種別、descriptionにはエラー内容、errorsにはエラーが発生した原因をそれぞれ示しています。
| HTTPレスポンスステータスコード | message | 主な原因 |
|---|---|---|
| 400 | bad_request | リクエストボディの項目が不正な値である。 |
| 401 | unauthorized | 認証されていないリクエストである。 |
| 403 | forbidden | アクセスが拒否された。 |
| 404 | not_found | 指定されたリソースが存在しない。 |
| 422 | unprocessable_entity | リクエストボディの構造自体に誤りがある (JSON内のカンマが不足しているなど) 。 |
| 423 | locked | 指定されたリソースがロック中で処理できない。 |
| 429 | too_many_requests | 期間内に上限を超えるリクエストを実行された。 |
| 500 | internal_server_error | BowNow REST APIで理解できない例外が発生した。 |
Webhookを設定するために必要な手順を説明します。
Webhookの作成はトラッキングコード単位で行います。
左メニューの「設定」-「Webhookを設定する」画面よりWebhookを作成します。
| 項目 | 必須 | 説明 |
|---|---|---|
| Webhook名 | ○ | Webhookに名称を付けることができます。 |
| 対象URL | ○ | Webhook通知を送信するURLを設定します。HTTPSのURLであることが必須です。 「対象URL」に、クエリ (URL末尾の ? 以降) が含まれていてもリクエスト時には無視されます。 |
| 送信形式 | ○ | Webhook通知内容の送信形式を設定します。詳しくは送信形式を参照ください。 |
| 通知する条件 | Webhook通知のトリガとなるイベントを設定します。 | |
| 状態 | 「無効」に設定した場合はWebhook通知されません。 |
「通知する条件」に該当する操作が実行されると、「対象URL」にBowNowから操作内容と共にPOSTリクエストが送信されます。
受け取った情報をSlackに連携、メールで送信、お客様のデータベースに登録して一覧で表示するなどさまざまな用途に使用することができます。
BowNowから送信されるPOSTリクエストのリクエストボディは「通知内容」を参照ください。
Webhook通知が送信されると、通知ログがBowNowに登録されます。
通知ログから、登録された「対象URL」への通知が成功しているか、また失敗した場合どのようなステータスコードがレスポンスされたかを確認することができます。
Webhookを登録したけど通知が来ない場合はこちらの通知ログをご確認ください。
詳細は「通知ログ」を参照ください。
Webhook通知の送信形式はJSON形式、Slack向け、Microsoft Teams向けの3種類から設定可能です。
JSON形式を選択すると、通知内容全体がJSON構造で送信されます。
Slack向け、Microsoft Teams向けを選択すると、各アプリのWebhookに対応した形式及びライセンスアカウントの使用言語に応じて通知が行われます。
たとえば、使用言語が英語の場合は通知内容が英語となります。
なお、Slack向け、Microsoft Teams向けを選択した場合、通知する条件でリード情報更新の一括登録・操作(新規登録/変更/削除)はご利用できません。
Slack向け通知を行う際、Slack側のデータ変数は以下にて作成及びメッセージ通知設定をしてください。
キー:text
データタイプ:テキスト
具体的な通知内容は通知内容を参照ください。
各Webhookイベントごとの通知内容について説明します。
全Webhook通知で共通の通知項目を説明します。
| 項目 | 説明 |
|---|---|
| event | Webhook通知のトリガとなったイベントです。 |
| resource_name | 操作対象のリソース名です。 |
| message | Webhook通知のトリガとなったイベントの詳細です。 イベントにより、この項目が存在しない場合があります。 |
| records | 操作対象のリソースを特定する情報です。 |
リード情報を更新した際に通知されます。
通知内容は下記の通りです。
| 項目 | 値 | 説明 |
|---|---|---|
| event | ・新規登録:create ・変更:update ・削除:destroy ・一括登録・操作(新規登録/変更/削除):bulk |
|
| resource_name | lead | |
| message | ・一括登録・操作(新規登録/変更/削除)のみこの項目が含まれます ・具体的なmessageはmessage一覧を参照 |
|
| records | 更新対象の配列 | |
| records.sid | 更新対象リードのsid(リード固有のid) | |
| records.url | 更新対象のリード詳細URL | ・リード削除及び一括登録・操作の削除時はこの項目は含まれません |
{
"event": "bulk",
"resource_name": "lead",
"message": "Status bulk update has been executed.",
"records": [
{
"sid": "sid_xxxxxxxxxxxxxxxxxxxx",
"url": "https://bownow.jp/users/xxxxx/details"
},
{
"sid": "sid_xxxxxxxxxxxxxxxxxxxx",
"url": "https://bownow.jp/users/xxxxx/details"
}
]
}
| 項目 | 値 | 説明 |
|---|---|---|
| 共通タイトル | BowNow Webhook | |
| イベントタイトル | リード情報が更新されました。 | |
| 更新内容 | ・新規登録:登録 ・変更:変更 ・削除:削除 |
|
| sid | 更新対象リードのsid(リード固有のid) | |
| リード詳細URL | 更新対象のリード詳細URL | ・リード削除及び一括登録・操作の削除時はこの項目は含まれません |
BowNow Webhook
リード情報が更新されました。
更新内容:登録
sid:sid_xxxxxxxxxxxxxxxxxxxx
リード詳細URL:https://bownow.jp/users/xxxxx/details
一括登録・操作時は、更新対象データをまとめて一括で通知します。
一回の通知に含まれるレコード数は最大1000件です。
更新対象データが1000件を超える場合は、1000件ごとに分けて通知されます。
| message | 通知対象操作 |
|---|---|
| Status bulk update has been executed. | ・リードを探すにて「ステータス」の変更による一括操作時 ・メールの詳細にて「ステータス」の変更による一括操作時 ・トラッキングコード変更にてステータス名の変更時 |
| Status bulk delete has been executed. | ・トラッキングコード変更にてステータスの削除時 |
| Status bulk update has been executed by ABM template. | ・ABMテンプレート開始時 ・ABMテンプレートの日次処理によるステータスの変更時 |
| Group bulk update has been executed. | ・リードを探すにて「グループ」の変更による一括操作時 ・メールの詳細にて「グループ」の変更による一括操作時 ・トラッキングコード変更にてグループ名の変更時 |
| Group bulk delete has been executed. | ・トラッキングコード変更にてグループの削除時 |
| Responsible person bulk update has been executed. | ・リードを探すにて「担当者」の追加、上書き、設定解除による一括操作時 ・メールの詳細にて「担当者」の追加、上書き、設定解除による一括操作時 ・アカウントの担当者名の変更時 |
| Responsible person bulk delete has been executed. | ・アカウントの削除時 |
| Tag bulk update has been executed. | ・リードを探すにて「タグ」の追加、上書き、設定解除による一括操作時 ・メールの詳細にて「タグ」の追加、上書き、設定解除による一括操作時 ・フォームの詳細にて「タグ」の追加、上書き、設定解除による一括操作時 |
| Tag bulk delete has been executed. | ・トラッキングコード変更にてタグの削除時 |
| Old email distribution group bulk update has been executed. | ・リードを探すにて「旧メール配信グループ」の追加、上書き、設定解除による一括操作時 ・メールの詳細にて「旧メール配信グループ」の追加、上書き、設定解除による一括操作時 |
| Old email distribution group bulk delete has been executed. | ・トラッキングコード変更にて旧メール配信グループの削除時 |
| Lead sources bulk delete has been executed. | ・トラッキングコード変更にてリード獲得元の削除時 |
| Member registered form bulk update has been executed. | ・リードを探すにて「会員登録済みのフォーム」の追加、上書き、設定解除による一括操作時 |
| Bulk registration has been executed. | ・リードを一括登録するよりリード新規登録及び変更時 |
| Bulk delete has been executed. | ・リードを探すにてリード情報の削除による一括操作時 |
リードがフォームコンバージョンした際に通知されます。
通知内容は下記の通りです。
| 項目 | 値 | 説明 |
|---|---|---|
| event | ・新規リード(新規登録のリード):new_lead_cv ・既存リード(登録済みのリード):existing_lead_cv |
|
| resource_name | contact | |
| records | 操作対象の配列 | |
| records.contact_sid | コンバージョンしたフォームのsid(フォーム固有のid) | |
| records.contact_name | コンバージョンしたフォーム名 | |
| records.management_number | コンバージョンしたフォーム内の管理番号 | |
| records.contact_type | ・通常フォーム:normal_form ・会員登録フォーム:member_registration_form ・連携フォーム:linking_form |
|
| records.lead_sid | コンバージョンしたリードのsid(リード固有のid) | |
| records.lead_url | コンバージョンしたリードのリード詳細URL |
{
"event": "new_lead_cv",
"resource_name": "contact",
"records": [
{
"contact_sid": "sid_xxxxxxxxxxxxxxxxxxxx",
"contact_name": "xxxxxxxxxxx",
"management_number": "xxxxxxxxxxx"
"contact_type": "normal_form",
"lead_sid": "sid_xxxxxxxxxxxxxxxxxxxx",
"lead_url": "https://bownow.jp/users/xxxxx/details"
}
]
}
| 項目 | 値 | 説明 |
|---|---|---|
| 共通タイトル | BowNow Webhook | |
| イベントタイトル | ・新規リード(新規登録のリード):新規登録のリードがフォームコンバージョンしました。 ・既存リード(登録済みのリード):登録済みのリードがフォームコンバージョンしました。 |
|
| 種類 | ・通常フォーム:通常フォーム ・会員登録フォーム:会員登録フォーム ・連携フォーム:連携フォーム |
|
| フォームID | コンバージョンしたフォームのsid(フォーム固有のid) | |
| フォーム名 | コンバージョンしたフォーム名 | |
| 管理番号 | コンバージョンしたフォーム内の管理番号 | |
| リードsid | コンバージョンしたリードのsid(リード固有のid) | |
| リード詳細URL | コンバージョンしたリードのリード詳細URL |
BowNow Webhook
新規登録のリードがフォームコンバージョンしました。
種類:通常フォーム
フォームID:sid_xxxxxxxxxxxxxxxxxxxx
フォーム名:xxxxxxxxxx
管理番号:xxxxxxxxxx
リードsid:sid_xxxxxxxxxxxxxxxxxxxx
リード詳細URL:https://bownow.jp/users/xxxxx/details
「Webhookを設定する」画面より登録したWebhook単位で通知ログを参照することができます。
Webhook通知に失敗した場合はHTTPレスポンスステータスコードが表示されます。
通知ログは直近10件のみの表示となります。
また、通知にはリトライ機能が存在しません。タイムアウト (30秒) が発生した場合、HTTPレスポンスステータスコードは表示されません。
Webhook通知の送信者がBowNowであることの署名をリクエストヘッダで送信します。 リクエストヘッダを検証することでリプレイ攻撃を防ぎ、不正なリクエストを弾くことができます。
| リクエストヘッダ名 | 説明 |
|---|---|
| BowNow-Signature | APIキー、BowNow-Request-Token、タイムスタンプ、リクエストボディを : 繋ぎで連結した文字列をSHA-256でハッシュ化した値をURLセーフなBase64形式にエンコードした値です。 |
| BowNow-Request-Token | Webhook通知ごとに生成される一意なトークン (UUID) です。 |
| BowNow-Timestamp | リクエスト時のUNIX時刻です。 |
署名生成時と同じアルゴリズムで計算することで、リクエストを検証することができます。
: 繋ぎで生成します 。BowNow-Signature の値が一致することを確認します。header_signature = request.headers["BowNow-Signature"]
header_token = request.headers["BowNow-Request-Token"]
header_timestamp = request.headers["BowNow-Timestamp"]
api_key = "your_api_key"
signature = Digest::SHA256.hexdigest("#{api_key}:#{header_token}:#{header_timestamp}:#{request.body.read}")
encoded_signature = Base64.urlsafe_encode64(signature)
raise "Invalid request" if !(encoded_signature.eql?(header_signature))
APIクライアントを認証し、アクセストークンとリフレッシュトークンを発行します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| api_key required | string リソース操作対象のAPIキー |
{- "api_key": "6a355fce835c0fee3ddf1b69c817c815"
}{- "access_token": "kFapsdK0m2b3zlL-77FpqoeyHj6BONepIaZG5OCLQonQ6lmmh4L1NfJzQ-UYhkIiSySNde4S56KK02VJbohWXQ",
- "expires_in": 21600,
- "client_token": "xWoM4ZwpZewA8ZC4VLtjvViYHLUj4v4A_E9fgjXAA3k",
- "refresh_token": "WdhyJ5KypjBG9_vvR-kgvYinrf8c0-RLRsS7bPHDNRghHcHseLKyTzve4jIxo2TK1kkMfLxs35GDxtrTSTOOng",
- "token_type": "bearer"
}有効期限が切れたアクセストークンを、リフレッシュトークンを使って更新します。
※リフレッシュトークンも同時に更新されます
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| refresh_token required | string 「アクセストークン発行」エンドポイントで取得した |
{- "refresh_token": "WdhyJ5KypjBG9_vvR-kgvYinrf8c0-RLRsS7bPHDNRghHcHseLKyTzve4jIxo2TK1kkMfLxs35GDxtrTSTOOng"
}{- "access_token": "gnamY8OT0RnruB5GE_hheiCnE6FwOXpxC7fjXsrJMaTCy39NwB51Pxr-6NMtXraOQ16IBgpC8QvydYE9D3BIBQ",
- "expires_in": 21600,
- "client_token": "xWoM4ZwpZewA8ZC4VLtjvViYHLUj4v4A_E9fgjXAA3k",
- "refresh_token": "5GVXwNSjglRejIR1coqBneUin-p319f0pHDOCCjSNgIcKOGDsJv0PflcKG7LNPOR0iv7UWJnrQJLLBQbDnb78A",
- "token_type": "bearer"
}Authorizationヘッダに指定されたアクセストークンを削除します。
※リフレッシュトークンも同時に削除されます
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
{- "message": "unauthorized",
- "description": "Invalid authentication parameter."
}リードの検索結果を一覧で取得します。
同時リクエストは最大で1000件としています。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| ids | array 取得したいリードのids |
| sids | array SID ※一度のリクエストで取得できる最大件数は1,000件 "sid_"+20桁ユニークID(数字・英字組合せ) null(デフォルト)の場合は全件を返却 |
| cids | array 取得したいリードの所属企業のcid |
string [ 1 .. 255 ] characters メールアドレス | |
| address | string [ 1 .. 255 ] characters 住所 |
| tag_ids | Array of integers[ items ] タグID |
| status_ids | Array of strings ステータスID |
| group_ids | Array of strings グループID |
| sort | string Enum: "asc" "desc" 並び順 |
| page | integer 指定ページ |
| per_page | integer 1ページに含まれる要素数 |
{- "ids": [
- 3,
- 6,
- 7
], - "sids": [
- "sid_e866bb38b6cec06cef6a",
- "sid_6801e5360fd4e832faed",
- "sid_bc03db91f5b950ca9ad3"
], - "cids": [
- "cid_bc03db91f5b950ca9ad3",
- "cid_4921154630d9404713d5"
], - "email": "taro.bownow@cloudcircus.co.jp",
- "address": "東京都",
- "tag_ids": [
- 2,
- 5
], - "status_ids": [
- 1,
- 3
], - "group_ids": [
- 4,
- 6
], - "sort": "desc",
- "page": 1,
- "per_page": 500
}{- "leads": [
- {
- "id": 3,
- "sid": "sid_e866bb38b6cec06cef6a",
- "cid": "cid_bc03db91f5b950ca9ad3",
- "email": "taro.bownow@cloudcircus.co.jp",
- "description": "ステータスの割り振りは後でまとめて行います。",
- "tracking_state_id": 1,
- "tracking_state_name": "受注",
- "tracking_group_id": 4,
- "tracking_group_name": "新規",
- "mail_groups": [
- {
- "id": 1,
- "name": "既存"
}
], - "tags": [
- {
- "id": 2,
- "name": "問い合わせ"
}, - {
- "id": 5,
- "name": "資料DL"
}
], - "lead_sources": [
- {
- "id": 1,
- "name": "検索エンジン"
}
], - "members": [
- {
- "id": 1,
- "name": "吠哭太郎"
}
], - "contacts": [
- {
- "id": 1,
- "name": "会員登録フォーム"
}
], - "accept_email": true,
- "family_name": "吠今",
- "given_name": "太郎",
- "family_kana": "バウナウ",
- "given_kana": "タロウ",
- "birthday": "1990-01-01",
- "mobile_phone_number": "08000000000",
- "org_name": "クラウドサーカス株式会社",
- "org_tel": "0440000000",
- "org_fax": "0440000000",
- "section": "営業部",
- "position": "Engineer",
- "j_address": true,
- "country": "日本",
- "zip_code": "163-0919",
- "pref_name": "東京都",
- "city_name": "新宿区西新宿2丁目",
- "address_1": "3-1",
- "address_2": "モノリス新宿",
- "user_custom_fields": [
- {
- "id": 1,
- "name": "テキスト入力",
- "value": "メッセージ"
}, - {
- "id": 2,
- "name": "テキスト複数入力",
- "value": "テキストメッセージ"
}, - {
- "id": 4,
- "name": "ラジオボタン",
- "value": [
- {
- "id": 11,
- "value": "ラジオA"
}
]
}, - {
- "id": 5,
- "name": "プルダウン",
- "value": [
- {
- "id": 21,
- "value": "プルダウンA"
}
]
}, - {
- "id": 6,
- "name": "チェックボックス",
- "value": [
- {
- "id": 31,
- "value": "チェックボックスA"
}, - {
- "id": 32,
- "value": "チェックボックスB"
}
]
}, - {
- "id": 7,
- "name": "リスト選択",
- "value": [
- {
- "id": 41,
- "value": "リスト選択A"
}, - {
- "id": 42,
- "value": "リスト選択B"
}, - {
- "id": 43,
- "value": "リスト選択C"
}
]
}
], - "created_at": "2022-05-02 09:01:54 UTC",
- "updated_at": "2022-07-02 09:10:04 UTC"
}
]
}リードを新規で作成します。
同時リクエストは最大で1000件としています。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| family_name required | string [ 1 .. 50 ] characters 姓 |
| given_name | string [ 1 .. 50 ] characters 名 |
| family_kana | string [ 1 .. 50 ] characters 姓 (フリガナ) |
| given_kana | string [ 1 .. 50 ] characters 名 (フリガナ) |
| birthday | string yyyy-mm-dd 生年月日 |
| email required | string [ 6 .. 255 ] characters メールアドレス |
| org_name | string [ 1 .. 255 ] characters 会社・組織名 |
| org_tel | string [ 1 .. 50 ] characters 電話番号 |
| org_fax | string [ 1 .. 50 ] characters FAX番号 |
| mobile_phone_number | string [ 1 .. 50 ] characters 携帯番号 |
| section | string [ 1 .. 200 ] characters 所属部署 |
| position | string [ 1 .. 200 ] characters 役職 |
| j_address | boolean Default: true 住所の表示方式 |
| zip_code | string 郵便番号/Zip Code |
| pref_name | string [ 1 .. 100 ] characters 都道府県/State |
| city_name | string [ 1 .. 255 ] characters 市区町村/City |
| address_1 | string [ 1 .. 255 ] characters 住所1/Address 1 |
| address_2 | string [ 1 .. 255 ] characters 住所2/Address 2 |
| country_name | string [ 1 .. 100 ] characters Country j_address: true の場合は無視される(country_name: nil) |
| org_url | string [ 1 .. 255 ] characters ウェブサイト |
| accept_email | boolean Default: false メール配信 |
| mail_group_ids | Array of integers[ items ] 旧メール配信グループID |
Array of objects[ items ] 会員登録済みのフォーム | |
| tracking_state_id | integer ステータスID |
| tracking_group_id | integer グループID |
| tag_ids | Array of integers[ items ] タグID |
| lead_source_ids | Array of integers[ items ] リード獲得元ID |
| member_ids | Array of integers[ items ] アカウントID |
| user_custom_fields | Hash in Array input_type: text => { "id": integer, "value": string } input_type: text_area => { "id": integer, "value": string } input_type: url => { "id": integer, "value": string } input_type: radio_button => { "id": integer, "value": integer } input_type: select_single => { "id": integer, "value": integer } input_type: checkbox => { "id": integer, "value": [integer, integer,...] } input_type: select_multiple => { "id": integer, "value": [integer, integer,...] } カスタム項目 |
| description | string 備考 |
{- "family_name": "吠今",
- "given_name": "太郎",
- "family_kana": "バウナウ",
- "given_kana": "タロウ",
- "birthday": "1990-01-01",
- "email": "bownow@cloudcircus.com",
- "org_name": "クラウドサーカス株式会社",
- "org_tel": "0440000000",
- "org_fax": "0440000000",
- "mobile_phone_number": "08000000000",
- "section": "事業部",
- "position": "部長",
- "j_address": true,
- "zip_code": "163-0919",
- "pref_name": "東京都",
- "city_name": "新宿区西新宿2丁目",
- "address_1": "3-1",
- "address_2": "モノリス新宿",
- "country_name": "United State",
- "accept_email": true,
- "mail_group_ids": [
- 1,
- 3,
- 5
], - "contacts": [
- {
- "id": 1,
- "activate": true
}
], - "tracking_state_id": 1,
- "tracking_group_id": 1,
- "tag_ids": [
- 2,
- 3
], - "lead_source_ids": [
- 5,
- 6
], - "member_ids": [
- 1
], - "user_custom_fields": [
- {
- "id": 1,
- "value": "メッセージ"
}, - {
- "id": 2,
- "value": "テキストメッセージ"
}, - {
- "id": 4,
- "value": 11
}, - {
- "id": 5,
- "value": 21
}, - {
- "id": 6,
- "value": [
- 31,
- 32
]
}, - {
- "id": 7,
- "value": [
- 41,
- 42,
- 43
]
}
], - "description": "問い合わせがありましたので、早めの対応をお願いします。"
}{- "lead": {
- "id": 1,
- "sid": "sid_e866bb38b6cec06cef6a",
- "cid": "cid_bc03db91f5b950ca9ad3",
- "email": "bownow@cloudcircus.com",
- "description": "問い合わせがありましたので、早めの対応をお願いします。",
- "tracking_state_id": 1,
- "tracking_state_name": "受注",
- "tracking_group_id": 1,
- "tracking_group_name": "新規",
- "mail_groups": [
- {
- "id": 1,
- "name": "既存"
}, - {
- "id": 3,
- "name": "新規見込み客"
}, - {
- "id": 5,
- "name": "関連会社"
}
], - "tags": [
- {
- "id": 2,
- "name": "問い合わせ"
}, - {
- "id": 3,
- "name": "資料DL"
}
], - "lead_sources": [
- {
- "id": 5,
- "name": "検索エンジン"
}, - {
- "id": 6,
- "name": "展示会"
}
], - "members": [
- {
- "id": 1,
- "name": "吠哭太郎"
}
], - "contacts": [
- {
- "id": 1,
- "name": "会員登録フォーム"
}
], - "accept_email": true,
- "family_name": "吠今",
- "given_name": "太郎",
- "family_kana": "バウナウ",
- "given_kana": "タロウ",
- "birthday": "1990-01-01",
- "mobile_phone_number": "08000000000",
- "org_name": "クラウドサーカス株式会社",
- "org_tel": "0440000000",
- "org_fax": "0440000000",
- "section": "事業部",
- "position": "部長",
- "j_address": true,
- "country": "日本",
- "zip_code": "163-0919",
- "pref_name": "東京都",
- "city_name": "新宿区西新宿2丁目",
- "address_1": "3-1",
- "address_2": "モノリス新宿",
- "user_custom_fields": [
- {
- "id": 1,
- "name": "テキスト入力",
- "value": "メッセージ"
}, - {
- "id": 2,
- "name": "テキスト複数入力",
- "value": "テキストメッセージ"
}, - {
- "id": 4,
- "name": "ラジオボタン",
- "value": [
- {
- "id": 11,
- "value": "ラジオA"
}
]
}, - {
- "id": 5,
- "name": "プルダウン",
- "value": [
- {
- "id": 21,
- "value": "プルダウンA"
}
]
}, - {
- "id": 6,
- "name": "チェックボックス",
- "value": [
- {
- "id": 31,
- "value": "チェックボックスA"
}, - {
- "id": 32,
- "value": "チェックボックスB"
}
]
}, - {
- "id": 7,
- "name": "リスト選択",
- "value": [
- {
- "id": 41,
- "value": "リスト選択A"
}, - {
- "id": 42,
- "value": "リスト選択B"
}, - {
- "id": 43,
- "value": "リスト選択C"
}
]
}
], - "created_at": "2022-05-02 09:01:54 UTC",
- "updated_at": "2022-07-02 09:10:04 UTC"
}
}リードの詳細を取得します。
同時リクエストは最大で1000件としています。
| sid required | string Example: sid_xxxxxxxxxxxxxxxxxxxx 対象リードのsid "sid_"+20桁ユニークID(数字・英字組合せ) |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
{- "lead": {
- "id": 1,
- "sid": "sid_e866bb38b6cec06cef6a",
- "cid": "cid_bc03db91f5b950ca9ad3",
- "email": "bownow@cloudcircus.com",
- "description": "問い合わせがありましたので、早めの対応をお願いします。",
- "tracking_state_id": 1,
- "tracking_state_name": "受注",
- "tracking_group_id": 1,
- "tracking_group_name": "新規",
- "mail_groups": [
- {
- "id": 1,
- "name": "既存"
}, - {
- "id": 3,
- "name": "新規見込み客"
}, - {
- "id": 5,
- "name": "関連会社"
}
], - "tags": [
- {
- "id": 2,
- "name": "問い合わせ"
}, - {
- "id": 3,
- "name": "資料DL"
}
], - "lead_sources": [
- {
- "id": 5,
- "name": "検索エンジン"
}, - {
- "id": 6,
- "name": "展示会"
}
], - "members": [
- {
- "id": 1,
- "name": "吠哭太郎"
}
], - "contacts": [
- {
- "id": 1,
- "name": "会員登録フォーム"
}
], - "accept_email": true,
- "family_name": "吠今",
- "given_name": "太郎",
- "family_kana": "バウナウ",
- "given_kana": "タロウ",
- "birthday": "1990-01-01",
- "mobile_phone_number": "08000000000",
- "org_name": "クラウドサーカス株式会社",
- "org_tel": "0440000000",
- "org_fax": "0440000000",
- "section": "事業部",
- "position": "部長",
- "j_address": true,
- "country": "日本",
- "zip_code": "163-0919",
- "pref_name": "東京都",
- "city_name": "新宿区西新宿2丁目",
- "address_1": "3-1",
- "address_2": "モノリス新宿",
- "user_custom_fields": [
- {
- "id": 1,
- "name": "テキスト入力",
- "value": "メッセージ"
}, - {
- "id": 2,
- "name": "テキスト複数入力",
- "value": "テキストメッセージ"
}, - {
- "id": 4,
- "name": "ラジオボタン",
- "value": [
- {
- "id": 11,
- "value": "ラジオA"
}
]
}, - {
- "id": 5,
- "name": "プルダウン",
- "value": [
- {
- "id": 21,
- "value": "プルダウンA"
}
]
}, - {
- "id": 6,
- "name": "チェックボックス",
- "value": [
- {
- "id": 31,
- "value": "チェックボックスA"
}, - {
- "id": 32,
- "value": "チェックボックスB"
}
]
}, - {
- "id": 7,
- "name": "リスト選択",
- "value": [
- {
- "id": 41,
- "value": "リスト選択A"
}, - {
- "id": 42,
- "value": "リスト選択B"
}, - {
- "id": 43,
- "value": "リスト選択C"
}
]
}
], - "created_at": "2022-05-02 09:01:54 UTC",
- "updated_at": "2022-07-02 09:10:04 UTC"
}
}リードを更新します。
同時リクエストは最大で1000件としています。
※ 値にnullを指定した場合、その属性はnullとして更新されるのでご注意ください。
| sid required | string Example: sid_xxxxxxxxxxxxxxxxxxxx 対象リードのsid "sid_"+20桁ユニークID(数字・英字組合せ) |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| family_name | string [ 1 .. 50 ] characters 姓 |
| given_name | string [ 1 .. 50 ] characters 名 |
| family_kana | string [ 1 .. 50 ] characters 姓 (フリガナ) |
| given_kana | string [ 1 .. 50 ] characters 名 (フリガナ) |
| birthday | string yyyy-mm-dd 生年月日 |
string [ 6 .. 255 ] characters メールアドレス | |
| org_name | string [ 1 .. 255 ] characters 会社・組織名 |
| org_tel | string [ 1 .. 50 ] characters 電話番号 |
| org_fax | string [ 1 .. 50 ] characters FAX番号 |
| mobile_phone_number | string [ 1 .. 50 ] characters 携帯番号 |
| section | string [ 1 .. 200 ] characters 所属部署 |
| position | string [ 1 .. 200 ] characters 役職 |
| j_address | boolean 住所の表示方式 |
| zip_code | string 郵便番号/Zip Code |
| pref_name | string [ 1 .. 100 ] characters 都道府県/State |
| city_name | string [ 1 .. 255 ] characters 市区町村/City |
| address_1 | string [ 1 .. 255 ] characters 住所1/Address 1 |
| address_2 | string [ 1 .. 255 ] characters 住所2/Address 2 |
| country_name | string [ 1 .. 100 ] characters Country
|
| org_url | string [ 1 .. 255 ] characters ウェブサイト |
| accept_email | boolean メール配信 |
| mail_group_ids | Array of integers[ items ] 旧メール配信グループID |
Array of objects[ items ] 会員登録済みのフォーム 新たにフォームを紐づける場合は以下のように指定
フォームの紐づけを解除したい場合は以下のように指定
| |
| tracking_state_id | integer ステータスID |
| tracking_group_id | integer グループID |
| tag_ids | Array of integers[ items ] タグID |
| lead_source_ids | Array of integers[ items ] リード獲得元ID |
| member_ids | Array of integers[ items ] アカウントID |
| user_custom_fields | Hash in Array input_type: text => { "id": integer, "value": string } input_type: text_area => { "id": integer, "value": string } input_type: url => { "id": integer, "value": string } input_type: radio_button => { "id": integer, "value": integer } input_type: select_single => { "id": integer, "value": integer } input_type: checkbox => { "id": integer, "value": [integer, integer,...] } input_type: select_multiple => { "id": integer, "value": [integer, integer,...] } カスタム項目 |
| description | string 備考 |
{- "family_name": "吠今",
- "given_name": "太郎",
- "family_kana": "バウナウ",
- "given_kana": "タロウ",
- "birthday": "1990-01-01",
- "email": "bownow@cloudcircus.com",
- "org_name": "クラウドサーカス株式会社",
- "org_tel": "0440000000",
- "org_fax": "0440000000",
- "mobile_phone_number": "08000000000",
- "section": "事業部",
- "position": "部長",
- "j_address": true,
- "zip_code": "163-0919",
- "pref_name": "東京都",
- "city_name": "新宿区西新宿2丁目",
- "address_1": "3-1",
- "address_2": "モノリス新宿",
- "country_name": "United State",
- "accept_email": true,
- "mail_group_ids": [
- 1,
- 3,
- 5
], - "contacts": [
- {
- "id": 1,
- "activate": true
}
], - "tracking_state_id": 1,
- "tracking_group_id": 1,
- "tag_ids": [
- 2,
- 3
], - "lead_source_ids": [
- 5,
- 6
], - "member_ids": [
- 1
], - "user_custom_fields": [
- {
- "id": 1,
- "value": "メッセージ"
}, - {
- "id": 2,
- "value": "テキストメッセージ"
}, - {
- "id": 4,
- "value": 11
}, - {
- "id": 5,
- "value": 21
}, - {
- "id": 6,
- "value": [
- 31,
- 32
]
}, - {
- "id": 7,
- "value": [
- 41,
- 42,
- 43
]
}
], - "description": "問い合わせがありましたので、早めの対応をお願いします。"
}{- "lead": {
- "id": 1,
- "sid": "sid_e866bb38b6cec06cef6a",
- "cid": "cid_bc03db91f5b950ca9ad3",
- "email": "bownow@cloudcircus.com",
- "description": "問い合わせがありましたので、早めの対応をお願いします。",
- "tracking_state_id": 1,
- "tracking_state_name": "受注",
- "tracking_group_id": 1,
- "tracking_group_name": "新規",
- "mail_groups": [
- {
- "id": 1,
- "name": "既存"
}, - {
- "id": 3,
- "name": "新規見込み客"
}, - {
- "id": 5,
- "name": "関連会社"
}
], - "tags": [
- {
- "id": 2,
- "name": "問い合わせ"
}, - {
- "id": 3,
- "name": "資料DL"
}
], - "lead_sources": [
- {
- "id": 5,
- "name": "検索エンジン"
}, - {
- "id": 6,
- "name": "展示会"
}
], - "members": [
- {
- "id": 1,
- "name": "吠哭太郎"
}
], - "contacts": [
- {
- "id": 1,
- "name": "会員登録フォーム"
}
], - "accept_email": true,
- "family_name": "吠今",
- "given_name": "太郎",
- "family_kana": "バウナウ",
- "given_kana": "タロウ",
- "birthday": "1990-01-01",
- "mobile_phone_number": "08000000000",
- "org_name": "クラウドサーカス株式会社",
- "org_tel": "0440000000",
- "org_fax": "0440000000",
- "section": "事業部",
- "position": "部長",
- "j_address": true,
- "country": "日本",
- "zip_code": "163-0919",
- "pref_name": "東京都",
- "city_name": "新宿区西新宿2丁目",
- "address_1": "3-1",
- "address_2": "モノリス新宿",
- "user_custom_fields": [
- {
- "id": 1,
- "name": "テキスト入力",
- "value": "メッセージ"
}, - {
- "id": 2,
- "name": "テキスト複数入力",
- "value": "テキストメッセージ"
}, - {
- "id": 4,
- "name": "ラジオボタン",
- "value": [
- {
- "id": 11,
- "value": "ラジオA"
}
]
}, - {
- "id": 5,
- "name": "プルダウン",
- "value": [
- {
- "id": 21,
- "value": "プルダウンA"
}
]
}, - {
- "id": 6,
- "name": "チェックボックス",
- "value": [
- {
- "id": 31,
- "value": "チェックボックスA"
}, - {
- "id": 32,
- "value": "チェックボックスB"
}
]
}, - {
- "id": 7,
- "name": "リスト選択",
- "value": [
- {
- "id": 41,
- "value": "リスト選択A"
}, - {
- "id": 42,
- "value": "リスト選択B"
}, - {
- "id": 43,
- "value": "リスト選択C"
}
]
}
], - "created_at": "2022-05-02 09:01:54 UTC",
- "updated_at": "2022-07-02 09:10:04 UTC"
}
}リードを削除します。
同時リクエストは最大で1000件としています。
| sid required | string Example: sid_xxxxxxxxxxxxxxxxxxxx 対象リードのsid "sid_"+20桁ユニークID(数字・英字組合せ) |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
{- "message": "unauthorized",
- "description": "Invalid authentication parameter."
}リード一括登録を実行します。
APIを利用してリード一括登録を行うために必要な手順を説明します。
※処理中のリード一括登録が完了するまで、次のリード一括登録は受け付けません。
※エラーCSVや未登録企業一覧CSVは登録日から2か月後に削除されます。
リード一括登録用のCSVヘッダを取得します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| csv_lang required | string Enum: "ja" "en" "th" "vi" CSVの言語 ・ja:日本語 |
{- "csv_lang": "ja"
}"姓","名","姓(フリガナ)","名(フリガナ)","生年月日","メールアドレス","会社・組織名","部署","役職","住所の表示方式","国(Country)","郵便番号(Zip Code)","都道府県(State)","市区町村(City)","住所1(Address 1)","住所2(Address 2)","電話番号","FAX番号","携帯番号","ウェブサイト","リード獲得元","メール配信","備考","ステータス","グループ","担当者","旧メール配信グループ","会員登録済みのフォーム","タグ","カスタム項目A","カスタム項目B","カスタム項目C"
CSVファイルをアップロードし、非同期でリードを一括登録します。
CSVファイルのサイズに応じてレスポンス時間が変わります。
目安時間は10MBあたり5秒となります。
レスポンスまでの時間はご利用のネットワーク帯域により変動します。参考値となりますのでご留意ください。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| import_csv required | string <binary> CSVファイル ・CSVヘッダ取得APIで取得したCSVを元に作成する |
| csv_lang required | string Enum: "ja" "en" "th" "vi" CSVの言語 ・ja:日本語 |
| import_type required | string Enum: "new" "edit" インポート方法 ・new:新規登録(重複を省く) |
| blank_values | string Enum: "keep" "nullify" 空白セルの扱い ・keep:更新しない(未入力としてインポートしない) |
| create_corporates | boolean Default: true 企業情報の登録 ・新規のリード情報から企業情報を登録する場合はtrue |
| salesforce_sync | boolean Default: false Salesforce連携 ・インポートするリード情報を同期する場合はtrue(Salesforce側の新規登録、更新のルールはマニュアルサイト参照) |
| kintone_sync | boolean Default: false kintone連携 ・インポートするリード情報を同期する場合はtrue(kintone側の新規登録、更新のルールはマニュアルサイト参照) |
{- "lead_import": {
- "id": 1,
- "status": "processing",
- "csv_count": 1,
- "new_count": 1,
- "update_count": 1,
- "error_count": 1,
- "has_error": true,
- "has_uncreated_corporates": true,
- "messages": [
- "予期せぬエラーにより一括登録に失敗しました。"
], - "created_at": "2022-05-02 09:01:54 UTC",
- "updated_at": "2022-07-02 09:10:04 UTC"
}
}リード一括登録処理のステータスを取得します。
| id required | string Example: 1 リード一括登録処理のID |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
{- "lead_import": {
- "id": 1,
- "status": "processing",
- "csv_count": 1,
- "new_count": 1,
- "update_count": 1,
- "error_count": 1,
- "has_error": true,
- "has_uncreated_corporates": true,
- "messages": [
- "予期せぬエラーにより一括登録に失敗しました。"
], - "created_at": "2022-05-02 09:01:54 UTC",
- "updated_at": "2022-07-02 09:10:04 UTC"
}
}リード一括登録でエラーとなったリード一覧のCSVを取得します。
エラーが発生している場合のみ取得できます。
| id required | string Example: 1 リード一括登録処理のID |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
"姓","名","姓(フリガナ)","名(フリガナ)","生年月日","メールアドレス","会社・組織名","部署","役職","住所の表示方式","国(Country)","郵便番号(Zip Code)","都道府県(State)","市区町村(City)","住所1(Address 1)","住所2(Address 2)","電話番号","FAX番号","携帯番号","ウェブサイト","リード獲得元","メール配信","備考","ステータス","グループ","担当者","旧メール配信グループ","会員登録済みのフォーム","タグ","カスタム項目A","カスタム項目B","カスタム項目C","エラー内容","行番号" "BowNow","太郎","バウナウ","タロウ","1990-01-01","bownowsample@bow-now.jp","BowNow株式会社","営業部","一般","0","","163-0919","東京都","新宿区西新宿2-3-1","新宿モノリス19F","","03-5339-2105","03-5339-2110","090-1234-5678","https://manual.bow-now.jp/","","0","リード一括登録のサンプルです","","","","","","","","","","メールアドレスは既に登録済みです。","2" "BowNow","太郎","バウナウ","タロウ","1990-01-01","bownowsample@bow-now.jp","BowNow株式会社","営業部","一般","0","","163-0919","東京都","新宿区西新宿2-3-1","新宿モノリス19F","","03-5339-2105","03-5339-2110","090-1234-5678","https://manual.bow-now.jp/","","0","リード一括登録のサンプルです","","","","","","","","","","メールアドレスは既に登録済みです。","3" "BowNow","太郎","バウナウ","タロウ","1990-01-01","bownowsample@bow-now.jp","BowNow株式会社","営業部","一般","0","","163-0919","東京都","新宿区西新宿2-3-1","新宿モノリス19F","","03-5339-2105","03-5339-2110","090-1234-5678","https://manual.bow-now.jp/","","0","リード一括登録のサンプルです","","","","","","","","","","",""
リード一括登録で登録できなかった企業一覧のCSVを取得します。
未登録企業が存在する場合のみ取得できます。
| id required | string Example: 1 リード一括登録処理のID |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
"会社・組織名","未登録理由","企業登録画面URL" "BowNow株式会社","該当企業なし","https://bownow.jp/corporates/new?org_name=BowNow%E6%A0%AA%E5%BC%8F%E4%BC%9A%E7%A4%BE" "BowNow株式会社","該当企業なし","https://bownow.jp/corporates/new?org_name=BowNow%E6%A0%AA%E5%BC%8F%E4%BC%9A%E7%A4%BE" "BowNow株式会社","該当企業なし","https://bownow.jp/corporates/new?org_name=BowNow%E6%A0%AA%E5%BC%8F%E4%BC%9A%E7%A4%BE"
リード情報を一括ダウンロードします。
APIを利用してリード全件ダウンロードを行うために必要な手順を説明します。
bulk_process_id を使用して、処理状況を確認できます。download_url からデータをダウンロードできます。※同一トラッキングコードで処理中のリード一括ダウンロードが完了するまで、次のリード一括ダウンロードは受け付けません。
※ダウンロードURLは完了後5日間有効です。5日経過後は自動的に削除されます。
リード情報の一括ダウンロード処理を開始します。
このAPIは非同期処理のため、リクエスト受付時点でレスポンスを返却します。 実際のファイル生成処理はバックグラウンドで実行されます。
処理完了時に webhook_url を指定している場合、指定したURLにPOSTリクエストが送信されます。
制約事項:
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| webhook_url | string <uri> 処理完了時のコールバックURL http/httpsのみ対応します。 処理が完了した際に、このURLにPOSTリクエストが送信されます。 status: success または failure リクエストボディ:
|
| updated_from | string <date-time> ISO 8601形式の日時(YYYY-MM-DDTHH:MM:SSZ) この日時以降にリードまたは紐づく企業が更新されたデータのみ出力します。 未来の日時は指定できません。 |
{- "updated_from": "2025-01-01T00:00:00Z"
}{- "bulk_process_id": "550e8400-e29b-41d4-a716-446655440000",
- "created_at": "2025-10-10T10:00:00Z"
}処理の現在の状態、進捗、結果を取得します。
ステータス遷移:
pending → processing → success/failure
タイムアウト:
| bulk_process_id required | string <uuid> Example: 550e8400-e29b-41d4-a716-446655440000 処理作成時に返されたUUID |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
{- "status": "pending",
- "download_url": null,
- "created_at": "2025-10-10T10:00:00Z",
- "started_at": null,
- "completed_at": null,
- "expired_at": null
}全件データをJSONL形式でダウンロードします。
データフォーマット:
\n)application/x-ndjson; charset=utf-8データ構造: 各行は1つのJSONオブジェクトで、以下の構造を持ちます:
{
"lead": { /* BowNow leadDetail API相当のデータ */ },
"corporate": { /* BowNow corporateDetail API相当のデータ */ }
}
企業情報がない場合、corporateはnullになります。
有効期限:
サンプルコード(curl):
curl -H "Tracking-ID: <トラッキングID>" \
-H "Client-Token: <クライアントトークン>" \
-H "Authorization: Bearer <アクセストークン>" \
"https://bownow.jp/api/v1/leads/bulk_download/lead_export_xxx.jsonl" \
-o leads.jsonl
| export_key required | string Example: lead_export_550e8400-e29b-41d4-a716-446655440000 ファイル識別子 拡張子 例: |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
"{\"lead\":{\"id\":12345,\"sid\":\"sid_e866bb38b6cec06cef6a\",\"cid\":\"cid_bc03db91f5b950ca9ad3\",\"email\":\"test@example.com\",\"accept_email\":true,\"family_name\":\"山田\",\"given_name\":\"太郎\",\"org_name\":\"株式会社サンプル\",\"sessions_count\":25,\"visits_count\":15,\"contacts_count\":3,\"created_at\":\"2025-08-15 09:05:00 UTC\",\"updated_at\":\"2025-10-10 12:00:00 UTC\"},\"corporate\":{\"id\":3,\"cid\":\"cid_bc03db91f5b950ca9ad3\",\"name\":\"株式会社サンプル\",\"url\":\"https://example.com\",\"created_at\":\"2022-05-02 09:01:54 UTC\",\"updated_at\":\"2022-07-02 09:10:04 UTC\"}}\n{\"lead\":{\"id\":12346,\"sid\":\"sid_6801e5360fd4e832faed\",\"cid\":null,\"email\":\"test2@example.com\",\"accept_email\":false,\"family_name\":\"佐藤\",\"given_name\":\"花子\",\"org_name\":null,\"sessions_count\":10,\"visits_count\":5,\"contacts_count\":1,\"created_at\":\"2025-09-01 14:20:00 UTC\",\"updated_at\":\"2025-10-11 08:30:00 UTC\"},\"corporate\":null}"メモを新規で作成します。
| sid required | string Example: sid_xxxxxxxxxxxxxxxxxxxx 対象リードのsid "sid_"+20桁ユニークID(数字・英字組合せ) |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| title required | string [ 1 .. 255 ] characters タイトル名 |
| actioned_at required | string 日時 ・YYYY-MM-DD HH:MM のフォーマットで日時を指定 ※協会世界時(UTC)にてリクエストしてください。画面表示する際に日本標準時(JST)に変換されます。 |
| memo required | string [ 1 .. 3000 ] characters 本文 |
| creator_id | integer 作成者ID アカウントIDで作成者・更新者を指定できます。 指定しない場合、作成者・更新者は「システム」とします。 |
{- "title": "タイトル",
- "actioned_at": "2025-01-01 0:00",
- "memo": "本文",
- "creator_id": 1
}{- "memo": {
- "id": 10,
- "title": "タイトル",
- "memo": "本文",
- "actioned_at": "2025-01-01 00:00:00:UTC",
- "created_at": "2023-11-06 09:30:04 UTC",
- "updated_at": "2023-11-10 10:21:15 UTC"
}
}トラッキングコードに設定されている旧メール配信グループの要素の検索結果を一覧で取得します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| ids | array 取得したい旧メール配信グループのids |
| name | string [ 1 .. 50 ] characters 旧メール配信グループに含まれる名前 |
| sort | string Enum: "asc" "desc" 並び順 |
| page | integer 指定ページ |
| per_page | integer 1ページに含まれる要素数 |
{- "ids": [
- 1,
- 5,
- 8
], - "name": "既存",
- "sort": "asc",
- "page": 1,
- "per_page": 25
}{- "mail_groups": [
- {
- "id": 1,
- "name": "既存",
- "updated_at": "2022-02-12 10:23:04 UTC"
}
]
}フォームの中で、種類が「会員登録フォーム」の要素の検索結果を一覧で取得します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| ids | array 取得したいフォームのids |
| name | string [ 1 .. 50 ] characters フォームに含まれる名前 |
| state | string Enum: "active" "suspended" フォームの利用状況 |
| sort | string Enum: "asc" "desc" 並び順 |
| page | integer 指定ページ |
| per_page | integer 1ページに含まれる要素数 |
{- "ids": [
- 1,
- 3,
- 5
], - "name": "BowNow",
- "state": "active",
- "sort": "asc",
- "page": 1,
- "per_page": 25
}{- "registration_forms": [
- {
- "id": 1,
- "sid": "sid_ade36f083941c51a700b",
- "name": "IZANAI BowNow 会員登録フォーム",
- "state": "active",
- "contacts_count": 10,
- "updated_by": {
- "name": "吠哭太郎",
- "email": "taro.bownow@cloudcircus.co.jp"
}, - "updated_at": "2022-08-31 10:23:04 UTC"
}, - {
- "id": 3,
- "sid": "sid_e808c06e9a92d8babf19",
- "name": "BlueMonkey BowNow会員登録フォーム",
- "state": "active",
- "contacts_count": 10,
- "updated_by": {
- "name": "青猿太郎",
- "email": "taro.bluemonkey@cloudcircus.co.jp"
}, - "updated_at": "2022-07-12 12:20:23 UTC"
}, - {
- "id": 5,
- "sid": "sid_aef0caf06f56134eb3c8",
- "name": "Fullstar BowNow会員登録フォーム",
- "state": "active",
- "contacts_count": 10,
- "updated_by": {
- "name": "満星太郎",
- "email": "taro.fullstar@cloudcircus.co.jp"
}, - "updated_at": "2022-10-15 15:50:03 UTC"
}
]
}トラッキングコードに設定されているステータスの要素の検索結果を一覧で取得します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| ids | array 取得したいステータスのids |
| positions | array ステータスの表示順序 |
| name | string [ 1 .. 50 ] characters ステータスに含まれる名前 |
| default | boolean Enum: true false ステータスのデフォルトフラグ |
| display | boolean Enum: true false ステータスの表示フラグ |
| sort | string Enum: "asc" "desc" 並び順 |
| page | integer 指定ページ |
| per_page | integer 1ページに含まれる要素数 |
{- "ids": [
- 3,
- 6,
- 7
], - "positions": [
- 6,
- 7,
- 8
], - "name": "潜在",
- "default": true,
- "display": false,
- "sort": "desc",
- "page": 2,
- "per_page": 50
}{- "statuses": [
- {
- "id": 3,
- "position": 6,
- "default": true,
- "name": "潜在",
- "description": "直近のニーズを感じていない顧客。ナーチャリング中の顧客。\t",
- "display": false,
- "updated_at": "2022-05-02 09:01:54 UTC"
}
]
}トラッキングコードに設定されているグループの要素の検索結果を一覧で取得します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| ids | array 取得したいグループのids |
| positions | array グループの表示順序 |
| name | string [ 1 .. 50 ] characters グループに含まれる名前 |
| default | boolean Enum: true false グループのデフォルトフラグ |
| display | boolean Enum: true false グループの表示フラグ |
| sort | string Enum: "asc" "desc" 並び順 |
| page | integer 指定ページ |
| per_page | integer 1ページに含まれる要素数 |
{- "ids": [
- 1,
- 3,
- 7
], - "positions": [
- 5,
- 8,
- 9
], - "name": "潜在",
- "default": false,
- "display": true,
- "sort": "asc",
- "page": 3,
- "per_page": 25
}{- "groups": [
- {
- "id": 1,
- "position": 5,
- "default": false,
- "name": "潜在",
- "description": "新規で獲得した顧客",
- "display": true,
- "updated_at": "2022-07-02 09:10:04 UTC"
}
]
}トラッキングコードに設定されているタグの要素の検索結果を一覧で取得します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| ids | array 取得したいタグのids |
| name | string [ 1 .. 50 ] characters タグに含まれる名前 |
| sort | string Enum: "asc" "desc" 並び順 |
| page | integer 指定ページ |
| per_page | integer 1ページに含まれる要素数 |
{- "ids": [
- 2,
- 3,
- 6
], - "name": "セミナー",
- "sort": "asc",
- "page": 1,
- "per_page": 25
}{- "tags": [
- {
- "id": 6,
- "name": "セミナー",
- "updated_at": "2022-05-02 09:30:04 UTC"
}
]
}タグを新規で作成します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| name required | string [ 1 .. 50 ] characters タグ名 |
{- "name": "新規"
}{- "tag": {
- "id": 10,
- "position": 5,
- "name": "新規",
- "created_at": "2023-11-06 09:30:04 UTC",
- "updated_at": "2023-11-10 10:21:15 UTC"
}
}トラッキングコードに設定されているリード獲得元の要素の検索結果を一覧で取得します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| ids | array 取得したいリード獲得元のids |
| name | string [ 1 .. 50 ] characters リード獲得元に含まれる名前 |
| sort | string Enum: "asc" "desc" 並び順 |
| page | integer 指定ページ |
| per_page | integer 1ページに含まれる要素数 |
{- "ids": [
- 4,
- 6,
- 7
], - "name": "検索エンジン",
- "sort": "asc",
- "page": 1,
- "per_page": 25
}{- "lead_sources": [
- {
- "id": 4,
- "name": "検索エンジン",
- "updated_at": "2022-06-30 10:23:04 UTC"
}
]
}BowNowに作成したアカウントの要素の検索結果を一覧で取得します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| ids | array 取得したいアカウントのids |
| login_id | string [ 1 .. 32 ] characters アカウントに含まれるログインID |
| name | string [ 1 .. 50 ] characters アカウントに含まれる担当者名 |
| master | boolean Enum: true false ライセンスアカウントであるか |
string [ 1 .. 255 ] characters アカウントに含まれるメールアドレス | |
| available_tracking_codes | array 利用可能なトラッキングコード |
| sort | string Enum: "asc" "desc" 並び順 |
| page | integer 指定ページ |
| per_page | integer 1ページに含まれる要素数 |
{- "ids": [
- 1,
- 5,
- 8
], - "login_id": "Bownow.login",
- "name": "太郎",
- "master": true,
- "email": "taro.bownow@cloudcircus.co.jp",
- "available_tracking_codes": [
- "自社HP用トラッキングコード",
- "LP分析トラッキングコード"
], - "sort": "asc",
- "page": 1,
- "per_page": 25
}{- "members": [
- {
- "id": 1,
- "login_id": "Bownow.login",
- "name": "吠哭太郎",
- "master": true,
- "email": "taro.bownow@cloudcircus.co.jp",
- "available_tracking_codes": [
- "自社HP用トラッキングコード"
], - "sign_in_at": "2022-02-12 09:15:20 UTC",
- "updated_at": "2022-02-13 10:23:04 UTC"
}
]
}トラッキングコードに設定されているカスタム項目の要素の検索結果を一覧で取得します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| ids | Array of integers[ items ] 取得したいカスタム項目のids |
| positions | Array of integers[ items ] カスタム項目の表示順序 |
| name | string [ 1 .. 50 ] characters カスタム項目に含まれる名前 |
| input_types | Array of strings カスタム項目の入力タイプ |
| sort | string Enum: "asc" "desc" 並び順 |
| page | integer 指定ページ |
| per_page | integer 1ページに含まれる要素数 |
{- "ids": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10
], - "positions": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10
], - "name": "",
- "input_types": [
- "text",
- "text_area",
- "url",
- "radio_button",
- "select_single",
- "checkbox",
- "select_multiple"
], - "sort": "asc",
- "page": 3,
- "per_page": 25
}{- "user_custom_fields": [
- {
- "id": 1,
- "position": 1,
- "name": "テキスト入力",
- "input_type": "text",
- "options": null,
- "updated_at": "2022-02-01T07:55:29.000Z"
}, - {
- "id": 2,
- "position": 2,
- "name": "テキスト複数入力",
- "input_type": "text_area",
- "value": "テキストメッセージ",
- "options": null,
- "updated_at": "2022-02-01T07:55:29.000Z"
}, - {
- "id": 3,
- "position": 3,
- "name": "URL",
- "input_type": "url",
- "options": null,
- "updated_at": "2022-02-01T07:55:29.000Z"
}, - {
- "id": 4,
- "position": 4,
- "name": "ラジオボタン",
- "input_type": "radio_button",
- "options": [
- {
- "id": 11,
- "name": "ラジオA"
}, - {
- "id": 12,
- "name": "ラジオB"
}, - {
- "id": 13,
- "name": "ラジオC"
}
], - "updated_at": "2022-02-01T07:55:29.000Z"
}, - {
- "id": 5,
- "position": 5,
- "name": "プルダウン",
- "input_type": "select_single",
- "options": [
- {
- "id": 21,
- "name": "プルダウンA"
}, - {
- "id": 21,
- "name": "プルダウンB"
}, - {
- "id": 22,
- "name": "プルダウンC"
}
], - "updated_at": "2022-02-01T07:55:29.000Z"
}, - {
- "id": 6,
- "position": 6,
- "name": "チェックボックス",
- "input_type": "checkbox",
- "options": [
- {
- "id": 31,
- "name": "チェックボックスA"
}, - {
- "id": 32,
- "name": "チェックボックスB"
}, - {
- "id": 32,
- "name": "チェックボックスC"
}
], - "updated_at": "2022-02-01T07:55:29.000Z"
}, - {
- "id": 7,
- "position": 7,
- "name": "リスト選択",
- "input_type": "select_multiple",
- "options": [
- {
- "id": 41,
- "value": "リスト選択A"
}, - {
- "id": 42,
- "value": "リスト選択B"
}, - {
- "id": 43,
- "value": "リスト選択C"
}
], - "updated_at": "2022-02-01T07:55:29.000Z"
}
]
}企業の詳細を取得します。
同時リクエストは最大で1000件としています。
| cid required | string Example: cid_xxxxxxxxxxxxxxxxxxxx 対象企業のcid "cid_"+20桁ユニークID(数字・英字組合せ) |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
{- "corporate": {
- "id": 3,
- "cid": "cid_bc03db91f5b950ca9ad3",
- "corporate_number": "6011101082301",
- "name": "クラウドサーカス株式会社",
- "host": "cloudcircus.jp",
- "remote_ips": [
- "241.80.254.118",
- "134.55.204.175"
], - "phone_number": "03-5339-2105",
- "fax_number": "03-3345-2500",
- "zip_code": "163-0919",
- "country_name": "Japan",
- "pref_name": "東京都",
- "city_name": "新宿区",
- "address_1": "西新宿 2-3-1",
- "address_2": "新宿モノリス 21F",
- "state_exists": true,
- "state_ng": false,
- "ipo": true,
- "capital_code": "3",
- "capital_name": "1億-10億未満",
- "employees_code": "4",
- "employees_name": "300-1000人未満",
- "revenue_code": "2",
- "revenue_name": "3億-20億未満",
- "parent_business_categories": [
- {
- "code": "0101",
- "name": "小売・卸売"
}, - {
- "code": "0201",
- "name": "飲食・宿泊"
}
], - "children_business_categories": [
- {
- "code": "1101",
- "name": "百貨店・スーパー"
}, - {
- "code": "0203",
- "name": "食堂・レストラン"
}
], - "marketing_tags": [
- {
- "type_name": "企業活動",
- "category_number": "1",
- "category_name": "各種展示会出展状況",
- "tag_number": "0101",
- "tag_name": "展示会通信IT"
}, - {
- "type_name": "製品・サービス",
- "category_number": "26",
- "category_name": "eラーニング",
- "tag_number": "1605",
- "tag_name": "教育"
}
], - "leads_info": {
- "leads_count": 2000,
- "uu_count": 5000,
- "session_count": 2500
}, - "corporate_custom_fields": [
- {
- "id": 1,
- "name": "テキスト入力",
- "value": "メッセージ"
}, - {
- "id": 2,
- "name": "テキスト複数入力",
- "value": "テキストメッセージ"
}, - {
- "id": 4,
- "name": "ラジオボタン",
- "value": [
- {
- "id": 11,
- "value": "ラジオA"
}
]
}, - {
- "id": 5,
- "name": "プルダウン",
- "value": [
- {
- "id": 21,
- "value": "プルダウンA"
}
]
}, - {
- "id": 6,
- "name": "チェックボックス",
- "value": [
- {
- "id": 31,
- "value": "チェックボックスA"
}, - {
- "id": 32,
- "value": "チェックボックスB"
}
]
}, - {
- "id": 7,
- "name": "リスト選択",
- "value": [
- {
- "id": 41,
- "value": "リスト選択A"
}, - {
- "id": 42,
- "value": "リスト選択B"
}, - {
- "id": 43,
- "value": "リスト選択C"
}
]
}
], - "created_at": "2022-05-02 09:01:54 UTC",
- "updated_at": "2022-07-02 09:10:04 UTC"
}
}連携フォームを新規で作成します。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| contacts_name required | string [ 1 .. 50 ] characters 連携フォーム名 |
| handler_url required | string <uri> [ 1 .. 255 ] characters 連携フォーム設置URL |
| use_handler_completed_url | integer Default: 0 Enum: 0 1 登録完了後の転送先指定有無 ・入力値: 0, 1(0: 連携フォーム設置URLに転送する, 1: 指定したURLに転送する) ※1以外の値、未入力の場合は0を設定 |
| handler_completed_url | string <uri> [ 1 .. 255 ] characters 登録完了後の転送先 ・「登録完了後の転送先指定有無」が1の場合、入力必須 |
| use_handler_failed_url | integer Default: 0 Enum: 0 1 登録失敗後の転送先指定有無 ・入力値: 0, 1(0: 連携フォーム設置URLに転送する, 1: 指定したURLに転送する) ※1以外の値、未入力の場合は0を設定 |
| handler_failed_url | string <uri> [ 1 .. 255 ] characters 登録失敗後の転送先指定 ・「登録失敗後の転送先指定有無」が1の場合、入力必須 |
| validate_email | integer Default: 1 Enum: 0 1 CVしたリードのメールアドレスチェック実行有無 ・入力値: 0, 1(0: メールアドレスチェックを実行しない, 1: メールアドレスチェックを実行する) ※0以外の値、未入力の場合は1を設定 |
required | object 氏名を登録するための項目を設定 ▼リクエストデータイメージ 姓名で分けて送るパターン
一行で送るパターン
|
required | object メールアドレスを登録するための項目を設定 ▼リクエストデータイメージ
|
object カナ名を登録するための項目を設定 カナ名が不要である場合、送信不要 ▼リクエストデータイメージ 姓名で分けて送るパターン
一行で送るパターン
| |
object 生年月日を登録するための項目を設定 生年月日が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 会社・組織名を登録するための項目を設定 会社・組織名が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 部署を登録するための項目を設定 部署が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 役職を登録するための項目を設定 役職が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 電話番号を登録するための項目を設定 電話番号が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object FAX番号を登録するための項目を設定 FAX番号が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 携帯番号を登録するための項目を設定 携帯番号が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 住所(すべて)を登録するための項目を設定 住所(すべて)が不要である場合、送信不要 ▼リクエストデータイメージ 日本の住所で送るパターン
日本以外の住所で送るパターン
| |
object ウェブサイトを登録するための項目を設定 ウェブサイトが不要である場合、送信不要 ▼リクエストデータイメージ
| |
object メール配信の同意確認を登録するための項目を設定 メール配信の同意確認が不要である場合、送信不要 メール配信の同意確認を行わずにメール配信を行った場合、違法になる可能性があるため、本項目は相談した上で外すこと ▼リクエストデータイメージ
| |
object ステータスを登録するための項目を設定 ステータスが不要である場合、送信不要 ▼リクエストデータイメージ
| |
object グループを登録するための項目を設定 グループが不要である場合、送信不要 ▼リクエストデータイメージ
| |
object リード取得元を登録するための項目を設定 リード取得元が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 個人情報の取扱規程を登録するための項目を設定 個人情報の取扱規程が不要である場合、送信不要 ▼リクエストデータイメージ
| |
Array of objects[ items ] タグを登録するための項目を設定 タグが不要である場合、送信不要 ▼リクエストデータイメージ
| |
Array of objects[ items ] テキスト入力(単一行)を登録するための項目を設定 テキスト入力(単一行)が不要である場合、送信不要 ▼リクエストデータイメージ
| |
Array of objects[ items ] テキスト入力(複数行)を登録するための項目を設定 テキスト入力(複数行)が不要である場合、送信不要 ▼リクエストデータイメージ
| |
Array of objects[ items ] 添付ファイル(単一)を登録するための項目を設定 添付ファイル(単一)が不要である場合、送信不要 ▼リクエストデータイメージ
| |
| mail_from | string <email> [ 6 .. 255 ] characters 送信元メールアドレス ・未入力の場合、ライセンスアカウントのメールアドレスを設定 |
| send_thanks | integer Default: 0 Enum: 0 1 サンクスメール設定-メール送信有無 ・入力値: 0, 1(0: サンクスメールを送信しない, 1: サンクスメールを送信する) ※1以外の値、未入力の場合は0を設定 ▼リクエストデータイメージ サンクスメールを送信するパターン
サンクスメールを送信しないパターン
|
| thanks_title | string [ 1 .. 255 ] characters サンクスメール設定-件名 ・未入力の場合、「{連携フォーム名}」+「サンクスメール」を値として設定 ・サンクスメール設定-メール送信が1(サンクスメールを送信する)の場合、入力必須 |
| thanks_body | string [ 1 .. 10000 ] characters サンクスメール設定-メールテンプレート ・未入力の場合、管理番号+設定した項目を一覧にして設定 ▼イメージ(氏名とメールアドレスのみ設定した場合)
|
| thanks_bcc | string <email> [ 6 .. 500 ] characters ^[a-zA-Z0-9+\.\/?_\-]+@[a-zA-Z0-9](\.[a-zA-Z0... サンクスメール設定-サンクスメール控え送信先(BCC) ・サンクスメール設定-メール送信が1(サンクスメールを送信する)の場合、任意で入力 ・未入力の場合、空文字を設定 ・複数のメールアドレスを登録する場合はカンマ区切りで指定 ・形式: @より前は英数特定記号、@直後は英数字、.前後は英数字のみ |
| send_admin | integer Default: 0 Enum: 0 1 管理者用メール設定-メール送信有無 ・入力値: 0, 1(0: 管理者用メールを送信しない, 1: 管理者用メールを送信する) ※1以外の値、未入力の場合は0を設定 ▼リクエストデータイメージ 管理者用メールを送信するパターン
管理者用メールを送信しないパターン
|
| admin_to | string <email> [ 6 .. 500 ] characters ^[a-zA-Z0-9+\.\/?_\-]+@[a-zA-Z0-9](\.[a-zA-Z0... 管理者用メール設定-管理メール送信先 ・管理者用メール設定-メール送信が1(管理メールを送信する)の場合、入力必須 ・複数のメールアドレスを登録する場合はカンマ区切りで指定 ・形式: @より前は英数特定記号、@直後は英数字、.前後は英数字のみ |
| admin_title | string [ 1 .. 255 ] characters 管理者用メール設定-件名 ・未入力の場合、「{連携フォーム名}」+「管理用メール」を値として設定 ・管理者用メール設定-メール送信が1(管理メールを送信する)の場合、入力必須 |
| admin_body | string [ 1 .. 10000 ] characters 管理者用メール設定-メールテンプレート ・未入力の場合、管理番号+リード詳細ページ+設定した項目を一覧にして設定 ▼イメージ(氏名とメールアドレスのみ設定した場合)
|
{- "contacts_name": "BowNow連携フォーム",
- "use_handler_completed_url": 1,
- "use_handler_failed_url": 0,
- "validate_email": 1,
- "name": {
- "only_name": 0,
- "label": null,
- "handler_label": null,
- "family_name_label": "姓",
- "handler_family_name_label": "family_name",
- "given_name_label": "名",
- "handler_given_name_label": "given_name"
}, - "email": {
- "label": "メールアドレス",
- "handler_label": "email"
}, - "kana": {
- "required": 0,
- "only_kana": 0,
- "label": "氏名(フリガナ)",
- "handler_label": "kana",
- "family_kana_label": "セイ",
- "handler_family_kana_label": "family_kana",
- "given_kana_label": "メイ",
- "handler_given_kana_label": "given_kana"
}, - "birthday": {
- "required": 0,
- "label": "生年月日",
- "handler_label": "birthday"
}, - "company_name": {
- "required": 1,
- "label": "会社・組織名",
- "handler_label": "company_name"
}, - "section_name": {
- "required": 1,
- "label": "部署",
- "handler_label": "section_name"
}, - "position_name": {
- "required": 1,
- "label": "役職",
- "handler_label": "position_name"
}, - "phone_number": {
- "required": 1,
- "label": "電話番号",
- "handler_label": "phone_number"
}, - "fax_number": {
- "required": 1,
- "label": "FAX番号",
- "handler_label": "fax_number"
}, - "mobile_phone_number": {
- "required": 1,
- "label": "携帯番号",
- "handler_label": "mobile_phone_number"
}, - "address": {
- "required": 1,
- "label": "住所(すべて)",
- "is_japanese": 1,
- "j_zip_code_label": "郵便番号",
- "j_pref_name_label": "都道府県",
- "j_city_name_label": "市区町村",
- "j_address_1_label": "住所1",
- "j_address_2_label": "住所2",
- "j_handler_zip_code_label": "zip_code",
- "j_handler_pref_name_label": "pref_name",
- "j_handler_city_name_label": "city_name",
- "j_handler_address_1_label": "address_1",
- "j_handler_address_2_label": "address_2"
}, - "web_site": {
- "required": 1,
- "label": "ウェブサイト",
- "handler_label": "web_site"
}, - "accept_email": {
- "required": 1,
- "label": "当社からのご案内",
- "handler_label": "accept_email"
}, - "tracking_state": {
- "required": 1,
- "label": "ステータス",
- "handler_label": "tracking_state"
}, - "tracking_group": {
- "required": 1,
- "label": "グループ",
- "handler_label": "tracking_group"
}, - "tracking_lead_from": {
- "required": 1,
- "label": "当サイトをどのようにして知りましたか?",
- "handler_label": "tracking_lead_from"
}, - "agreement": {
- "required": 1,
- "label": "個人情報の取扱規程",
- "handler_label": "agreement"
}, - "tracking_tags": [
- {
- "label": "タグ1",
- "required": 1,
- "handler_label": "tag_1"
}, - {
- "label": "タグ2",
- "required": 1,
- "handler_label": "tag_2"
}
], - "text_fields": [
- {
- "label": "テキスト入力1(単一行)",
- "required": 1,
- "handler_label": "text_field_1"
}, - {
- "label": "テキスト入力2(単一行)",
- "required": 1,
- "handler_label": "text_field_2"
}
], - "text_areas": [
- {
- "label": "テキスト入力1(複数行)",
- "required": 1,
- "handler_label": "text_area_1"
}, - {
- "label": "テキスト入力2(複数行)",
- "required": 1,
- "handler_label": "text_area_2"
}
], - "attachments": [
- {
- "label": "添付ファイル1(単一)",
- "required": 1,
- "handler_label": "attachment_1",
- "extensions": "pdf,doc,docx"
}, - {
- "label": "添付ファイル2(単一)",
- "required": 1,
- "handler_label": "attachment_2",
- "extensions": "csv"
}
], - "mail_from": "no-reply@bownow.jp",
- "send_thanks": 1,
- "thanks_title": "アカウント登録完了のお知らせ",
- "thanks_body": "アカウントのご登録ありがとうございます。\n下記にアカウントの情報をお送りいたします。\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n◆ アカウント情報\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n[管理番号]\n{mail_id}\n\n[氏名]\n{name}\n\n[メールアドレス]\n{email}\n\n[個人情報の取扱規程]\n{agreement}",
- "thanks_bcc": "taro.bownow@cloudcircus.co.jp",
- "send_admin": 1,
- "admin_to": "admin@cloudcircus.co.jp",
- "admin_title": "アカウント新規登録の通知",
- "admin_body": "新規アカウントが登録されました。\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n◆ アカウント情報\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n[管理番号]\n{mail_id}\n\n[リード詳細ページ ]\n{users_details}\n\n[氏名]\n{name}\n\n[メールアドレス]\n{email}\n\n[個人情報の取扱規程]\n{agreement}"
}{- "contact": {
- "id": 1,
- "sid": "sid_e866bb38b6cec06cef6a",
- "contacts_name": "BowNow連携フォーム",
- "use_handler_completed_url": 1,
- "use_handler_failed_url": 0,
- "validate_email": 1,
- "name": {
- "only_name": 0,
- "label": null,
- "handler_label": null,
- "family_name_label": "姓",
- "handler_family_name_label": "family_name",
- "given_name_label": "名",
- "handler_given_name_label": "given_name"
}, - "email": {
- "label": "メールアドレス",
- "handler_label": "email"
}, - "kana": {
- "required": 0,
- "only_kana": 0,
- "label": "氏名(フリガナ)",
- "handler_label": "kana",
- "family_kana_label": "セイ",
- "handler_family_kana_label": "family_kana",
- "given_kana_label": "メイ",
- "handler_given_kana_label": "given_kana"
}, - "birthday": {
- "required": 0,
- "label": "生年月日",
- "handler_label": "birthday"
}, - "company_name": {
- "required": 1,
- "label": "会社・組織名",
- "handler_label": "company_name"
}, - "section_name": {
- "required": 1,
- "label": "部署",
- "handler_label": "section_name"
}, - "position_name": {
- "required": 1,
- "label": "役職",
- "handler_label": "position_name"
}, - "phone_number": {
- "required": 1,
- "label": "電話番号",
- "handler_label": "phone_number"
}, - "fax_number": {
- "required": 1,
- "label": "FAX番号",
- "handler_label": "fax_number"
}, - "mobile_phone_number": {
- "required": 1,
- "label": "携帯番号",
- "handler_label": "mobile_phone_number"
}, - "address": {
- "required": 1,
- "label": "住所(すべて)",
- "is_japanese": 1,
- "j_zip_code_label": "郵便番号",
- "j_pref_name_label": "都道府県",
- "j_city_name_label": "市区町村",
- "j_address_1_label": "住所1",
- "j_address_2_label": "住所2",
- "j_handler_zip_code_label": "zip_code",
- "j_handler_pref_name_label": "pref_name",
- "j_handler_city_name_label": "city_name",
- "j_handler_address_1_label": "address_1",
- "j_handler_address_2_label": "address_2"
}, - "web_site": {
- "required": 1,
- "label": "ウェブサイト",
- "handler_label": "web_site"
}, - "accept_email": {
- "required": 1,
- "label": "当社からのご案内",
- "handler_label": "accept_email"
}, - "tracking_state": {
- "required": 1,
- "label": "ステータス",
- "handler_label": "tracking_state"
}, - "tracking_group": {
- "required": 1,
- "label": "グループ",
- "handler_label": "tracking_group"
}, - "tracking_lead_from": {
- "required": 1,
- "label": "当サイトをどのようにして知りましたか?",
- "handler_label": "tracking_lead_from"
}, - "agreement": {
- "required": 1,
- "label": "個人情報の取扱規程",
- "handler_label": "agreement"
}, - "tracking_tags": [
- {
- "label": "タグ1",
- "required": 1,
- "handler_label": "tag_1"
}, - {
- "label": "タグ2",
- "required": 1,
- "handler_label": "tag_2"
}
], - "text_fields": [
- {
- "label": "テキスト入力1(単一行)",
- "required": 1,
- "handler_label": "text_field_1"
}, - {
- "label": "テキスト入力2(単一行)",
- "required": 1,
- "handler_label": "text_field_2"
}
], - "text_areas": [
- {
- "label": "テキスト入力1(複数行)",
- "required": 1,
- "handler_label": "text_area_1"
}, - {
- "label": "テキスト入力2(複数行)",
- "required": 1,
- "handler_label": "text_area_2"
}
], - "attachments": [
- {
- "label": "添付ファイル1(単一)",
- "required": 1,
- "handler_label": "attachment_1",
- "extensions": "pdf,doc,docx"
}, - {
- "label": "添付ファイル2(単一)",
- "required": 1,
- "handler_label": "attachment_2",
- "extensions": "csv"
}
], - "mail_from": "no-reply@bownow.jp",
- "send_thanks": 1,
- "thanks_title": "アカウント登録完了のお知らせ",
- "thanks_body": "アカウントのご登録ありがとうございます。\n下記にアカウントの情報をお送りいたします。\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n◆ アカウント情報\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n[管理番号]\n{mail_id}\n\n[氏名]\n{name}\n\n[メールアドレス]\n{email}\n\n[個人情報の取扱規程]\n{agreement}",
- "thanks_bcc": "taro.bownow@cloudcircus.co.jp",
- "send_admin": 1,
- "admin_to": "admin@cloudcircus.co.jp",
- "admin_title": "アカウント新規登録の通知",
- "admin_body": "新規アカウントが登録されました。\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n◆ アカウント情報\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n[管理番号]\n{mail_id}\n\n[リード詳細ページ ]\n{users_details}\n\n[氏名]\n{name}\n\n[メールアドレス]\n{email}\n\n[個人情報の取扱規程]\n{agreement}",
- "created_at": "2023-05-02 09:01:54 UTC",
- "updated_at": "2023-06-12 09:10:04 UTC"
}
}連携フォームの詳細を取得します。
| sid required | string Example: sid_xxxxxxxxxxxxxxxxxxxx 対象連携フォームのsid "sid_"+20桁ユニークID(数字・英字組合せ) |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
{- "contact": {
- "id": 1,
- "sid": "sid_e866bb38b6cec06cef6a",
- "contacts_name": "BowNow連携フォーム",
- "use_handler_completed_url": 1,
- "use_handler_failed_url": 0,
- "validate_email": 1,
- "only_name": 0,
- "name": {
- "only_name": 0,
- "label": null,
- "handler_label": null,
- "family_name_label": "姓",
- "handler_family_name_label": "family_name",
- "given_name_label": "名",
- "handler_given_name_label": "given_name"
}, - "email": {
- "label": "メールアドレス",
- "handler_label": "email"
}, - "kana": {
- "required": 0,
- "only_kana": 0,
- "label": "氏名(フリガナ)",
- "handler_label": "kana",
- "family_kana_label": "セイ",
- "handler_family_kana_label": "family_kana",
- "given_kana_label": "メイ",
- "handler_given_kana_label": "given_kana"
}, - "birthday": {
- "required": 0,
- "label": "生年月日",
- "handler_label": "birthday"
}, - "company_name": {
- "required": 1,
- "label": "会社・組織名",
- "handler_label": "company_name"
}, - "section_name": {
- "required": 1,
- "label": "部署",
- "handler_label": "section_name"
}, - "position_name": {
- "required": 1,
- "label": "役職",
- "handler_label": "position_name"
}, - "phone_number": {
- "required": 1,
- "label": "電話番号",
- "handler_label": "phone_number"
}, - "fax_number": {
- "required": 1,
- "label": "FAX番号",
- "handler_label": "fax_number"
}, - "mobile_phone_number": {
- "required": 1,
- "label": "携帯番号",
- "handler_label": "mobile_phone_number"
}, - "address": {
- "required": 1,
- "label": "住所(すべて)",
- "is_japanese": 1,
- "j_zip_code_label": "郵便番号",
- "j_pref_name_label": "都道府県",
- "j_city_name_label": "市区町村",
- "j_address_1_label": "住所1",
- "j_address_2_label": "住所2",
- "j_handler_zip_code_label": "zip_code",
- "j_handler_pref_name_label": "pref_name",
- "j_handler_city_name_label": "city_name",
- "j_handler_address_1_label": "address_1",
- "j_handler_address_2_label": "address_2"
}, - "web_site": {
- "required": 1,
- "label": "ウェブサイト",
- "handler_label": "web_site"
}, - "accept_email": {
- "required": 1,
- "label": "当社からのご案内",
- "handler_label": "accept_email"
}, - "tracking_state": {
- "required": 1,
- "label": "ステータス",
- "handler_label": "tracking_state"
}, - "tracking_group": {
- "required": 1,
- "label": "グループ",
- "handler_label": "tracking_group"
}, - "tracking_lead_from": {
- "required": 1,
- "label": "当サイトをどのようにして知りましたか?",
- "handler_label": "tracking_lead_from"
}, - "agreement": {
- "required": 1,
- "label": "個人情報の取扱規程",
- "handler_label": "agreement"
}, - "tracking_tags": [
- {
- "label": "タグ1",
- "required": 1,
- "handler_label": "tag_1"
}, - {
- "label": "タグ2",
- "required": 1,
- "handler_label": "tag_2"
}
], - "text_fields": [
- {
- "label": "テキスト入力1(単一行)",
- "required": 1,
- "handler_label": "text_field_1"
}, - {
- "label": "テキスト入力2(単一行)",
- "required": 1,
- "handler_label": "text_field_2"
}
], - "text_areas": [
- {
- "label": "テキスト入力1(複数行)",
- "required": 1,
- "handler_label": "text_area_1"
}, - {
- "label": "テキスト入力2(複数行)",
- "required": 1,
- "handler_label": "text_area_2"
}
], - "attachments": [
- {
- "label": "添付ファイル1(単一)",
- "required": 1,
- "handler_label": "attachment_1",
- "extensions": "pdf,doc,docx"
}, - {
- "label": "添付ファイル2(単一)",
- "required": 1,
- "handler_label": "attachment_2",
- "extensions": "csv"
}
], - "mail_from": "no-reply@bownow.jp",
- "send_thanks": 1,
- "thanks_title": "アカウント登録完了のお知らせ",
- "thanks_body": "アカウントのご登録ありがとうございます。\n下記にアカウントの情報をお送りいたします。\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n◆ アカウント情報\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n[管理番号]\n{mail_id}\n\n[氏名]\n{name}\n\n[メールアドレス]\n{email}\n\n[個人情報の取扱規程]\n{agreement}",
- "thanks_bcc": "taro.bownow@cloudcircus.co.jp",
- "send_admin": 1,
- "admin_to": "admin@cloudcircus.co.jp",
- "admin_title": "アカウント新規登録の通知",
- "admin_body": "新規アカウントが登録されました。\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n◆ アカウント情報\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n[管理番号]\n{mail_id}\n\n[リード詳細ページ ]\n{users_details}\n\n[氏名]\n{name}\n\n[メールアドレス]\n{email}\n\n[個人情報の取扱規程]\n{agreement}",
- "created_at": "2023-05-02 09:01:54 UTC",
- "updated_at": "2023-06-12 09:10:04 UTC"
}
}連携フォームを更新します。
※ 値にnullを指定した場合、その属性はnullとして更新されるのでご注意ください。
| sid required | string Example: sid_xxxxxxxxxxxxxxxxxxxx 対象連携フォームのsid "sid_"+20桁ユニークID(数字・英字組合せ) |
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| contacts_name | string [ 1 .. 50 ] characters 連携フォーム名 |
| handler_url | string <uri> [ 1 .. 255 ] characters 連携フォーム設置URL |
| use_handler_completed_url | integer Enum: 0 1 登録完了後の転送先指定有無 ・入力値: 0, 1(0: 連携フォーム設置URLに転送する, 1: 指定したURLに転送する) ※1以外の値、未入力の場合は0を設定 |
| handler_completed_url | string <uri> [ 1 .. 255 ] characters 登録完了後の転送先 ・「登録完了後の転送先指定有無」が1の場合、入力必須 |
| use_handler_failed_url | integer Enum: 0 1 登録失敗後の転送先指定有無 ・入力値: 0, 1(0: 連携フォーム設置URLに転送する, 1: 指定したURLに転送する) ※1以外の値、未入力の場合は0を設定 |
| handler_failed_url | string <uri> [ 1 .. 255 ] characters 登録失敗後の転送先指定 ・「登録失敗後の転送先指定有無」が1の場合、入力必須 |
| validate_email | integer Default: 1 Enum: 0 1 CVしたリードのメールアドレスチェック実行有無 ・入力値: 0, 1(0: メールアドレスチェックを実行しない, 1: メールアドレスチェックを実行する) ※0以外の値、未入力の場合は1を設定 |
object 氏名を登録するための項目を設定 ▼リクエストデータイメージ 姓名で分けて送るパターン
一行で送るパターン
| |
object メールアドレスを登録するための項目を設定 ▼リクエストデータイメージ
| |
object カナ名を登録するための項目を設定 カナ名が不要である場合、送信不要 ▼リクエストデータイメージ 姓名で分けて送るパターン
一行で送るパターン
| |
object 生年月日を登録するための項目を設定 生年月日が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 会社・組織名を登録するための項目を設定 会社・組織名が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 部署を登録するための項目を設定 部署が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 役職を登録するための項目を設定 役職が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 電話番号を登録するための項目を設定 電話番号が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object FAX番号を登録するための項目を設定 FAX番号が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 携帯番号を登録するための項目を設定 携帯番号が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 住所(すべて)を登録するための項目を設定 住所(すべて)が不要である場合、送信不要 ▼リクエストデータイメージ 日本の住所で送るパターン
日本以外の住所で送るパターン
| |
object ウェブサイトを登録するための項目を設定 ウェブサイトが不要である場合、送信不要 ▼リクエストデータイメージ
| |
object メール配信の同意確認を登録するための項目を設定 メール配信の同意確認が不要である場合、送信不要 メール配信の同意確認を行わずにメール配信を行った場合、違法になる可能性があるため、本項目は相談した上で外すこと ▼リクエストデータイメージ
| |
object ステータスを登録するための項目を設定 ステータスが不要である場合、送信不要 ▼リクエストデータイメージ
| |
object グループを登録するための項目を設定 グループが不要である場合、送信不要 ▼リクエストデータイメージ
| |
object リード取得元を登録するための項目を設定 リード取得元が不要である場合、送信不要 ▼リクエストデータイメージ
| |
object 個人情報の取扱規程を登録するための項目を設定 個人情報の取扱規程が不要である場合、送信不要 ▼リクエストデータイメージ
| |
Array of objects[ items ] タグを登録するための項目を設定 タグが不要である場合、送信不要 ▼リクエストデータイメージ
| |
Array of objects[ items ] テキスト入力(単一行)を登録するための項目を設定 テキスト入力(単一行)が不要である場合、送信不要 ▼リクエストデータイメージ
| |
Array of objects[ items ] テキスト入力(複数行)を登録するための項目を設定 テキスト入力(複数行)が不要である場合、送信不要 ▼リクエストデータイメージ
| |
Array of objects[ items ] 添付ファイル(単一)を登録するための項目を設定 添付ファイル(単一)が不要である場合、送信不要 ▼リクエストデータイメージ
| |
| mail_from | string <email> [ 6 .. 255 ] characters 送信元メールアドレス ・未入力の場合、ライセンスアカウントのメールアドレスを設定 |
| send_thanks | integer Enum: 0 1 サンクスメール設定-メール送信有無 ・入力値: 0, 1(0: サンクスメールを送信しない, 1: サンクスメールを送信する) ※1以外の値、未入力の場合は0を設定 ▼リクエストデータイメージ サンクスメールを送信するパターン
サンクスメールを送信しないパターン
|
| thanks_title | string [ 1 .. 255 ] characters サンクスメール設定-件名 ・未入力の場合、「{連携フォーム名}」+「サンクスメール」を値として設定 ・サンクスメール設定-メール送信が1(サンクスメールを送信する)の場合、入力必須 |
| thanks_body | string [ 1 .. 10000 ] characters サンクスメール設定-メールテンプレート ・未入力の場合、管理番号+設定した項目を一覧にして設定 ▼イメージ(氏名とメールアドレスのみ設定した場合)
|
| thanks_bcc | string <email> [ 6 .. 500 ] characters ^[a-zA-Z0-9+\.\/?_\-]+@[a-zA-Z0-9](\.[a-zA-Z0... サンクスメール設定-サンクスメール控え送信先(BCC) ・サンクスメール設定-メール送信が1(サンクスメールを送信する)の場合、任意で入力 ・未入力の場合、空文字を設定 ・複数のメールアドレスを登録する場合はカンマ区切りで指定 ・形式: @より前は英数特定記号、@直後は英数字、.前後は英数字のみ |
| send_admin | integer Enum: 0 1 管理者用メール設定-メール送信有無 ・入力値: 0, 1(0: 管理者用メールを送信しない, 1: 管理者用メールを送信する) ※1以外の値、未入力の場合は0を設定 ▼リクエストデータイメージ 管理者用メールを送信するパターン
管理者用メールを送信しないパターン
|
| admin_to | string <email> [ 6 .. 500 ] characters ^[a-zA-Z0-9+\.\/?_\-]+@[a-zA-Z0-9](\.[a-zA-Z0... 管理者用メール設定-管理メール送信先 ・管理者用メール設定-メール送信が1(管理メールを送信する)の場合、入力必須 ・複数のメールアドレスを登録する場合はカンマ区切りで指定 ・形式: @より前は英数特定記号、@直後は英数字、.前後は英数字のみ |
| admin_title | string [ 1 .. 255 ] characters 管理者用メール設定-件名 ・未入力の場合、「{連携フォーム名}」+「管理用メール」を値として設定 ・管理者用メール設定-メール送信が1(管理メールを送信する)の場合、入力必須 |
| admin_body | string [ 1 .. 10000 ] characters 管理者用メール設定-メールテンプレート ・未入力の場合、管理番号+リード詳細ページ+設定した項目を一覧にして設定 ▼イメージ(氏名とメールアドレスのみ設定した場合)
|
{- "contacts_name": "BowNow連携フォーム",
- "use_handler_completed_url": 1,
- "use_handler_failed_url": 0,
- "validate_email": 1,
- "name": {
- "only_name": 0,
- "label": null,
- "handler_label": null,
- "family_name_label": "姓",
- "handler_family_name_label": "family_name",
- "given_name_label": "名",
- "handler_given_name_label": "given_name"
}, - "email": {
- "label": "メールアドレス",
- "handler_label": "email"
}, - "kana": {
- "required": 0,
- "only_kana": 0,
- "label": "氏名(フリガナ)",
- "handler_label": "kana",
- "family_kana_label": "セイ",
- "handler_family_kana_label": "family_kana",
- "given_kana_label": "メイ",
- "handler_given_kana_label": "given_kana"
}, - "birthday": {
- "required": 0,
- "label": "生年月日",
- "handler_label": "birthday"
}, - "company_name": {
- "required": 1,
- "label": "会社・組織名",
- "handler_label": "company_name"
}, - "section_name": {
- "required": 1,
- "label": "部署",
- "handler_label": "section_name"
}, - "position_name": {
- "required": 1,
- "label": "役職",
- "handler_label": "position_name"
}, - "phone_number": {
- "required": 1,
- "label": "電話番号",
- "handler_label": "phone_number"
}, - "fax_number": {
- "required": 1,
- "label": "FAX番号",
- "handler_label": "fax_number"
}, - "mobile_phone_number": {
- "required": 1,
- "label": "携帯番号",
- "handler_label": "mobile_phone_number"
}, - "address": {
- "required": 1,
- "label": "住所(すべて)",
- "is_japanese": 1,
- "j_zip_code_label": "郵便番号",
- "j_pref_name_label": "都道府県",
- "j_city_name_label": "市区町村",
- "j_address_1_label": "住所1",
- "j_address_2_label": "住所2",
- "j_handler_zip_code_label": "zip_code",
- "j_handler_pref_name_label": "pref_name",
- "j_handler_city_name_label": "city_name",
- "j_handler_address_1_label": "address_1",
- "j_handler_address_2_label": "address_2"
}, - "web_site": {
- "required": 1,
- "label": "ウェブサイト",
- "handler_label": "web_site"
}, - "accept_email": {
- "required": 1,
- "label": "当社からのご案内",
- "handler_label": "accept_email"
}, - "tracking_state": {
- "required": 1,
- "label": "ステータス",
- "handler_label": "tracking_state"
}, - "tracking_group": {
- "required": 1,
- "label": "グループ",
- "handler_label": "tracking_group"
}, - "tracking_lead_from": {
- "required": 1,
- "label": "当サイトをどのようにして知りましたか?",
- "handler_label": "tracking_lead_from"
}, - "agreement": {
- "required": 1,
- "label": "個人情報の取扱規程",
- "handler_label": "agreement"
}, - "tracking_tags": [
- {
- "label": "タグ1",
- "required": 1,
- "handler_label": "tag_1"
}, - {
- "label": "タグ2",
- "required": 1,
- "handler_label": "tag_2"
}
], - "text_fields": [
- {
- "label": "テキスト入力1(単一行)",
- "required": 1,
- "handler_label": "text_field_1"
}, - {
- "label": "テキスト入力2(単一行)",
- "required": 1,
- "handler_label": "text_field_2"
}
], - "text_areas": [
- {
- "label": "テキスト入力1(複数行)",
- "required": 1,
- "handler_label": "text_area_1"
}, - {
- "label": "テキスト入力2(複数行)",
- "required": 1,
- "handler_label": "text_area_2"
}
], - "attachments": [
- {
- "label": "添付ファイル1(単一)",
- "required": 1,
- "handler_label": "attachment_1",
- "extensions": "pdf,doc,docx"
}, - {
- "label": "添付ファイル2(単一)",
- "required": 1,
- "handler_label": "attachment_2",
- "extensions": "csv"
}
], - "mail_from": "no-reply@bownow.jp",
- "send_thanks": 1,
- "thanks_title": "アカウント登録完了のお知らせ",
- "thanks_body": "アカウントのご登録ありがとうございます。\n下記にアカウントの情報をお送りいたします。\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n◆ アカウント情報\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n[管理番号]\n{mail_id}\n\n[氏名]\n{name}\n\n[メールアドレス]\n{email}\n\n[個人情報の取扱規程]\n{agreement}",
- "thanks_bcc": "taro.bownow@cloudcircus.co.jp",
- "send_admin": 1,
- "admin_to": "admin@cloudcircus.co.jp",
- "admin_title": "アカウント新規登録の通知",
- "admin_body": "新規アカウントが登録されました。\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n◆ アカウント情報\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n[管理番号]\n{mail_id}\n\n[リード詳細ページ ]\n{users_details}\n\n[氏名]\n{name}\n\n[メールアドレス]\n{email}\n\n[個人情報の取扱規程]\n{agreement}"
}{- "contact": {
- "id": 1,
- "sid": "sid_e866bb38b6cec06cef6a",
- "contacts_name": "BowNow連携フォーム",
- "use_handler_completed_url": 1,
- "use_handler_failed_url": 0,
- "validate_email": 1,
- "name": {
- "only_name": 0,
- "label": null,
- "handler_label": null,
- "family_name_label": "姓",
- "handler_family_name_label": "family_name",
- "given_name_label": "名",
- "handler_given_name_label": "given_name"
}, - "email": {
- "label": "メールアドレス",
- "handler_label": "email"
}, - "kana": {
- "required": 0,
- "only_kana": 0,
- "label": "氏名(フリガナ)",
- "handler_label": "kana",
- "family_kana_label": "セイ",
- "handler_family_kana_label": "family_kana",
- "given_kana_label": "メイ",
- "handler_given_kana_label": "given_kana"
}, - "birthday": {
- "required": 0,
- "label": "生年月日",
- "handler_label": "birthday"
}, - "company_name": {
- "required": 1,
- "label": "会社・組織名",
- "handler_label": "company_name"
}, - "section_name": {
- "required": 1,
- "label": "部署",
- "handler_label": "section_name"
}, - "position_name": {
- "required": 1,
- "label": "役職",
- "handler_label": "position_name"
}, - "phone_number": {
- "required": 1,
- "label": "電話番号",
- "handler_label": "phone_number"
}, - "fax_number": {
- "required": 1,
- "label": "FAX番号",
- "handler_label": "fax_number"
}, - "mobile_phone_number": {
- "required": 1,
- "label": "携帯番号",
- "handler_label": "mobile_phone_number"
}, - "address": {
- "required": 1,
- "label": "住所(すべて)",
- "is_japanese": 1,
- "j_zip_code_label": "郵便番号",
- "j_pref_name_label": "都道府県",
- "j_city_name_label": "市区町村",
- "j_address_1_label": "住所1",
- "j_address_2_label": "住所2",
- "j_handler_zip_code_label": "zip_code",
- "j_handler_pref_name_label": "pref_name",
- "j_handler_city_name_label": "city_name",
- "j_handler_address_1_label": "address_1",
- "j_handler_address_2_label": "address_2"
}, - "web_site": {
- "required": 1,
- "label": "ウェブサイト",
- "handler_label": "web_site"
}, - "accept_email": {
- "required": 1,
- "label": "当社からのご案内",
- "handler_label": "accept_email"
}, - "tracking_state": {
- "required": 1,
- "label": "ステータス",
- "handler_label": "tracking_state"
}, - "tracking_group": {
- "required": 1,
- "label": "グループ",
- "handler_label": "tracking_group"
}, - "tracking_lead_from": {
- "required": 1,
- "label": "当サイトをどのようにして知りましたか?",
- "handler_label": "tracking_lead_from"
}, - "agreement": {
- "required": 1,
- "label": "個人情報の取扱規程",
- "handler_label": "agreement"
}, - "tracking_tags": [
- {
- "label": "タグ1",
- "required": 1,
- "handler_label": "tag_1"
}, - {
- "label": "タグ2",
- "required": 1,
- "handler_label": "tag_2"
}
], - "text_fields": [
- {
- "label": "テキスト入力1(単一行)",
- "required": 1,
- "handler_label": "text_field_1"
}, - {
- "label": "テキスト入力2(単一行)",
- "required": 1,
- "handler_label": "text_field_2"
}
], - "text_areas": [
- {
- "label": "テキスト入力1(複数行)",
- "required": 1,
- "handler_label": "text_area_1"
}, - {
- "label": "テキスト入力2(複数行)",
- "required": 1,
- "handler_label": "text_area_2"
}
], - "attachments": [
- {
- "label": "添付ファイル1(単一)",
- "required": 1,
- "handler_label": "attachment_1",
- "extensions": "pdf,doc,docx"
}, - {
- "label": "添付ファイル2(単一)",
- "required": 1,
- "handler_label": "attachment_2",
- "extensions": "csv"
}
], - "mail_from": "no-reply@bownow.jp",
- "send_thanks": 1,
- "thanks_title": "アカウント登録完了のお知らせ",
- "thanks_body": "アカウントのご登録ありがとうございます。\n下記にアカウントの情報をお送りいたします。\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n◆ アカウント情報\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n[管理番号]\n{mail_id}\n\n[氏名]\n{name}\n\n[メールアドレス]\n{email}\n\n[個人情報の取扱規程]\n{agreement}",
- "thanks_bcc": "taro.bownow@cloudcircus.co.jp",
- "send_admin": 1,
- "admin_to": "admin@cloudcircus.co.jp",
- "admin_title": "アカウント新規登録の通知",
- "admin_body": "新規アカウントが登録されました。\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n◆ アカウント情報\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n[管理番号]\n{mail_id}\n\n[リード詳細ページ ]\n{users_details}\n\n[氏名]\n{name}\n\n[メールアドレス]\n{email}\n\n[個人情報の取扱規程]\n{agreement}",
- "created_at": "2023-05-02 09:01:54 UTC",
- "updated_at": "2023-06-12 09:10:04 UTC"
}
}外部サービスアクションを登録します。
同時リクエストは最大で1000件としています。
| Tracking-ID required | string Example: UTC_xxxxxxxxxxxxxxxxxxxx トラッキングID "UTC_"+ユニークID(数字・英字組合せ) |
| Client-Token required | string アクセストークンを発行したAPIクライアントの識別トークン |
| Authorization required | string Example: Bearer <access_token> アクセストークン |
| sid required | string リードのsid "sid_"+20桁ユニークID(数字・英字組合せ) |
| external_service_name required | string [ 1 .. 25 ] characters サービス名 ・半角英数字および半角スペースのみ使用可能 ・1トラッキングコードあたり5種類まで登録可能 ※大文字と小文字の区別はされません |
| external_service_action_name required | string [ 1 .. 25 ] characters サービスアクション名 ・1サービスあたり5種類まで登録可能 ※大文字と小文字の区別はされません |
| acted_at required | string アクション日時 ・YYYY-MM-DD HH:MM:SS のフォーマットで日時を指定 ※協会世界時(UTC)にてリクエストしてください。画面表示する際に日本標準時(JST)に変換されます。 |
| action_type required | string アクションタイプ 以下のいずれかを指定 ・session:BowNowのサイトアクセスに相当するアクション、または一連の行動の起点となるアクション ・keyaction:BowNowで指定可能なキーページ閲覧のように、重要指標となるアクション ・cv:エンドユーザーのコンバージョン、またはそれに相当するアクション ・update:なにかしらリード情報に更新が発生した場合に指定するアクション ・data:上記以外に該当しないアクションや汎用的な情報に利用するアクションタイプ ※アクションタイプは、画面上への表示やシステムの動作に影響を与えませんが登録するアクションに適したものをご指定ください |
| title required | string [ 1 .. 255 ] characters タイムライン表示テキスト |
| detail | string [ 1 .. 1000 ] characters 詳細テキスト |
| url | string [ 1 .. 255 ] characters 参照先URL |
| executor | string Default: "system" タイムライン表示アイコン system、end_user、operatorのいずれかを指定
system
end_user
operator
|
{- "sid": "sid_e866bb38b6cec06cef6a",
- "external_service_name": "Actibook",
- "external_service_action_name": "ブック閲覧",
- "acted_at": "2023-11-14 10:30:20",
- "action_type": "session",
- "title": "電子ブック「最新製品情報」を閲覧しました",
- "detail": "Actibookで「最新製品情報」のブック閲覧がありました。",
- "executor": "system"
}{- "external_action_history": {
- "id": 10,
- "sid": "sid_e866bb38b6cec06cef6a",
- "external_service_name": "Actibook",
- "external_service_action_name": "ブック閲覧",
- "acted_at": "2023-11-14 10:10:20",
- "action_type": "session",
- "title": "Actibook ブック閲覧",
- "detail": "Actibookでブック閲覧がありました。",
- "executor": "system",
- "created_at": "2023-11-06 09:30:04 UTC",
- "updated_at": "2023-11-10 10:21:15 UTC"
}
}