GET/cxtalk/contacts/{contactId}
CXトークの連絡先を取得する。
Access Token を指定します。 指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
cxtalk
cxtalk.read
| Parameter | Type | Description |
|---|---|---|
| contactId | string | CXトーク 連絡先 ID required example : contact2-a56d-44a4-5304-033e16fca8d1 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
CXトーク 連絡先レスポンス
| Property | Type | Description |
|---|---|---|
| contactId | string | CXトーク 連絡先 ID readOnly : true |
| contactName | object (contactName) | 連絡先の名前情報 required |
| emails | array (ContactEmail) | メールアドレスリスト minItems : 0 maxItems : 100 |
| telephones | array (ContactTelephone) | 電話番号リスト minItems : 0 maxItems : 100 |
| organizations | array (ContactOrganization) | 会社/所属リスト minItems : 0 maxItems : 100 |
| events | array (ContactEvent) | 誕生日・記念日リスト minItems : 0 maxItems : 100 |
| locations | array (ContactLocation) | 住所リスト minItems : 0 maxItems : 100 |
| messengers | array (ContactMessenger) | SNS リスト minItems : 0 maxItems : 100 |
| websites | array (ContactWebsite) | Web サイトリスト minItems : 0 maxItems : 100 |
| memo | string | メモ maxLength : 4000 |
| contactTagIds | array (string) | CXトーク 連絡先タグリスト minItems : 0 |
| inquiryChannels | array (CxTalkInquiryChannel) | 問い合わせ経路リスト
minItems : 0 readOnly : true |
| cxtalkAccounts | array (CxTalkAccount) | 窓口アカウントリスト minItems : 0 readOnly : true |
| createdTime | string | 登録日時 (YYYY-MM-DDThh:mm:ssTZD) format : date-time readOnly : true |
| modifiedTime | string | 更新日時 (YYYY-MM-DDThh:mm:ssTZD) format : date-time readOnly : true |
| Property | Type | Description |
|---|---|---|
| firstName | string | 名
maxLength : 100 nullable : true |
| lastName | string | 姓
maxLength : 100 nullable : true |
| phoneticFirstName | string | フリガナ 名 maxLength : 100 nullable : true |
| phoneticLastName | string | フリガナ 姓 maxLength : 100 nullable : true |
| nickName | string | ニックネーム maxLength : 100 readOnly : true nullable : true |
| prefix | string | 敬称 maxLength : 100 nullable : true |
| suffix | string | 呼称 maxLength : 100 nullable : true |
| middleName | string | ミドルネーム maxLength : 100 nullable : true |
| Property | Type | Description |
|---|---|---|
| primary | boolean | 代表メールアドレスフラグ
required |
| string | メールアドレス required maxLength : 256 format : email |
| Property | Type | Description |
|---|---|---|
| primary | boolean | 代表電話フラグ
required |
| telephone | string | 電話番号 required maxLength : 100 pattern : [0-9\+\-*#PTpt()\u3000 ]+ |
| type | string | 電話番号タイプ
default : CUSTOM Allowed values : CELLPHONE, WORK, HOME, WORK_FAX, HOME_FAX, OTHER, CUSTOM |
| customType | string | カスタム電話番号タイプ
maxLength : 100 nullable : true |
| Property | Type | Description |
|---|---|---|
| primary | boolean | 代表会社フラグ
required |
| name | string | 会社名 maxLength : 100 |
| department | string | 部署名 maxLength : 100 |
| title | string | 役職名 maxLength : 100 |
| Property | Type | Description |
|---|---|---|
| primary | boolean | 代表イベントフラグ
required |
| date | string | 日付 (YYYY-MM-DD) required format : date |
| type | string | イベントタイプ
default : CUSTOM Allowed values : BIRTHDAY, ANNIVERSARY, OTHER, CUSTOM |
| customType | string | カスタムイベントタイプ
maxLength : 100 nullable : true |
| dayType | string | 日付形式
default : SOLAR Allowed values : SOLAR, LUNAR |
| Property | Type | Description |
|---|---|---|
| primary | boolean | 代表住所フラグ
required |
| address | string | 住所 required maxLength : 100 |
| type | string | 住所タイプ
default : CUSTOM Allowed values : WORK, HOME, OTHER, CUSTOM |
| zipCode | string | 郵便番号 maxLength : 100 |
| customType | string | カスタム住所タイプ
maxLength : 100 nullable : true |
| Property | Type | Description |
|---|---|---|
| primary | boolean | 代表 SNS フラグ
required |
| id | string | SNS ID required maxLength : 100 |
| type | string | SNSタイプ
default : CUSTOM Allowed values : FACEBOOK, LINE, X, CUSTOM |
| customType | string | カスタム SNS タイプ
maxLength : 100 nullable : true |
| Property | Type | Description |
|---|---|---|
| primary | boolean | 代表 Web サイトフラグ
required |
| url | string | Web サイト URL required maxLength : 100 format : uri |
| Property | Type | Description |
|---|---|---|
| channelType | string | 問い合わせ経路の種類
required Allowed values : LINE_OA, WORKS, MAIL |
| displayName | string | 問い合わせ経路における顧客の名前
nullable : true |
| Property | Type | Description |
|---|---|---|
| name | string | 窓口アカウント名 required |
example
1{2 "contactId": "contact2-a56d-44a4-5304-033e16fca8d1",3 "contactName": {4 "lastName": "顧客",5 "firstName": "太郎",6 "nickName": "顧客太郎",7 "phoneticFirstName": null,8 "phoneticLastName": null,9 "prefix": null,10 "suffix": null,11 "middleName": null12 },13 "emails": [14 {15 "email": "example@example.com",16 "primary": true17 }18 ],19 "telephones": [20 {21 "type": "CELLPHONE",22 "telephone": "090-0000-0001",23 "primary": true,24 "customType": null25 }26 ],27 "organizations": [28 {29 "name": "example company name",30 "department": "department",31 "title": "title",32 "primary": true33 }34 ],35 "locations": [36 {37 "address": "example address",38 "zipCode": "100-0001",39 "type": "WORK",40 "primary": true,41 "customType": null42 }43 ],44 "events": [45 {46 "date": "2026-01-09",47 "dayType": "SOLAR",48 "type": "BIRTHDAY",49 "primary": true,50 "customType": null51 }52 ],53 "messengers": [54 {55 "id": "example1",56 "type": "LINE",57 "primary": true,58 "customType": null59 }60 ],61 "websites": [62 {63 "url": "https://example.com",64 "primary": true65 }66 ],67 "memo": "memo",68 "contactTagIds": [69 "ctag2a81-94b6-4642-6903-03aa7977da91"70 ],71 "inquiryChannels": [72 {73 "channelType": "LINE_OA",74 "displayName": "顧客太郎"75 },76 {77 "channelType": "MAIL",78 "displayName": "example@example.com"79 }80 ],81 "cxtalkAccounts": [82 {83 "name": "商品問い合わせ窓口"84 }85 ],86 "createdTime": "2026-08-10T11:05:41+09:00",87 "modifiedTime": "2026-08-10T11:09:37+09:00"88}Forbidden
Not Found