조회
Endpoint
[POST] API URL 정보
Request (Json)
Header
| Field Name | Type | Required | Description |
|---|---|---|---|
| Content-type | String | Y | application/json |
| HT-Client-Id | String | Y | 고객센터에서 발급 받은 key |
| HT-Client-Secret | String | Y | 고객센터에서 발급 받은 token |
Body
| Field Name | Type (Length) | Required | Description | Default |
|---|---|---|---|---|
| sender_key | String (40) | Y | 발신프로필 키 |
Example
REST API Sample
curl --location --request POST 'https://patch-kakao-api.happytalk.io/v1/center/sender' \
--header 'Content-Type: application/json' \
--header 'HT-Client-Id: 고객센터에서 발급받은 client-id' \
--header 'HT-Client-Secret: 고객센터에서 발급받은 client-secret' \
--data-raw '{
"sender_key" : "등록된 프로필 sender_key (발신 프로필 등록시 생성)"
}'
curl --location --request POST 'https://kakao-api.happytalk.io/v1/center/sender' \
--header 'Content-Type: application/json' \
--header 'HT-Client-Id: 고객센터에서 발급받은 client-id' \
--header 'HT-Client-Secret: 고객센터에서 발급받은 client-secret' \
--data-raw '{
"sender_key" : "등록된 프로필 sender_key (발신 프로필 등록시 생성)"
}'
Response (Json)
Parameter
| Field Name | Type | Description |
|---|---|---|
| code | String | 성공 : 200 |
| data | object | 카카오톡 채널 상태 |
Example
Success
{
"code": "200",
"data": {
"senderKey": "5c6172587e23331etdh27912554135be2e10ac",
"uuid": "@mzi24fvtexmzjiav9",
"name": "mbi_dev2",
"status": "A",
"block": false,
"dormant": false,
"profileStatus": "A",
"createdAt": "2022-05-31 12:01:32",
"modifiedAt": "2022-05-31 12:01:32",
"categoryCode": "00100020001", 건강(001) 약국(0002) 약국(0001)
"bizchat": true,
"brandtalk": false,
"committalCompanyName": "lc_test",
"businessProfile": true,
"businessType": "BUSINESS"
}
}
Failure
Data Dictionary
Data Dictionary
None
| Field Name | Type | Description |
|---|---|---|
| senderKey | String | 발신프로필 키 |
| uuid | String | 카카오톡 채널 |
| name | String | 카카오톡 채널 프로필명 |
| status | String | 상태 (정상 : A) |
| block | Boolean | 발신프로필 차단 여부 |
| dormant | Boolean | 발신프로필 휴면 여부 |
| profileStatus | String | 카카오톡 채널 상태 |
| createdAt | Datetime | 적용 내용 |
| modifiedAt | Datetime | 적용 일시 |
| categoryCode | String | 적용 일시 |
| bizchat | Boolean | 적용 일시 |
| brandtalk | Boolean | 적용 일시 |
| committalCompanyName | String | 적용 일시 |
| businessProfile | Boolean | 적용 일시 |
| businessType | String | 적용 일시 |
| Type | Description |
|---|---|
| A | Activated |
| B | Block |
| C | Deactivated |
| D | Deleted |
| E | Deleting |