4.1 발신프로필 추가
API 정보 |
URL: /kakao/profile/create 기능: 발신프로필 등록 요청 방식: POST Content-Type:application/json; charset=utf-8 |
|||
요청 파라미터 | ||||
key | key 2 | data type | optional | description |
bizId | String | N | bizppurio id | |
apiKey | String | N | api 발급 key | |
categoryCode | String | N | 카테고리코드(11 자리 숫자) | |
phoneNumber | String | N | 토큰을 수신했던 휴대폰번호(YellowID 의 휴대폰 번호와 일치하여야 한다.) | |
token | String | N | 수신받은 인증토큰 | |
yellowId | String | N | 프로필 등록할 YellowID(@ID) | |
반환 값 | ||||
key | key 2 | data type | optional | description |
code | String | N | 결과 코드 | |
message | String | Y | 실패 시 결과 메시지 | |
data | Y | 성공 시 데이터 | ||
senderKey | String | N | 성공 시 등록된 발신프로필 key |
4.1.1 예제
[Request] : https://kapi.ppurio.com/kakao/profile/create
{
"bizId": "kakaoapi",
"apiKey": "Q4jh8oXXXXXXXX", "categoryCode": "00100010001",
"phoneNumber": "01012345678",
"token": "123456",
"yellowId": "@옐로우계정"
}
[Response]
{
"data" : { "senderKey" : "05aa099bcbc5220a8c0b2XXXXXXXXXXXXX" }, "code" : "200",
"message" : ""
}
4.2 발신프로필 조회
API 정보 |
URL: /kakao/profile 기능: 발신프로필 조회 방식: POST Content-Type:application/json; charset=utf-8 |
|||
요청 파라미터 | ||||
key | key 2 | data type | optional | description |
bizId | String | N | bizppurio id | |
apiKey | String | N | api 발급 key | |
senderKey | String | N | 조회 하고자 하는 발신프로필 key | |
반환 값 | ||||
key | key 2 | data type | optional | description |
code | String | N | 결과 코드 | |
message | String | Y | 실패 시 결과 메시지 | |
data | senderKey | String | N | 조회된 발신프로필 key |
name | String | N | 발신프로필 명 | |
status | String | N | 발신프로필 상태 | |
createdAt | String | N | 발신프로필 등록일 | |
categoryCode | String | N |
|
4.2.1 예제
Request : https://kapi.ppurio.com/kakao/profile
{
"bizId": "kakaoapi",
"apiKey": "Q4jh8oXXXXXXXX",
"senderKey": "05aa099bcbc5220a8c0b2XXXXXXXXXXXXX"
}
Response
{
"code": "200",
"message": "", "data": {
"senderKey": "05aa099bcbc5220a8c0b2XXXXXXXXXXXXX", “name": "alimtalktest",
"status": "A",
"createdAt": "2016-08-02 10:00:15",
"categoryCode": "01300010001"
}
}
4.3 발신프로필 리스트 조회
API 정보 |
URL: /kakao/profile/list 기능: 발신프로필 리스트 조회 방식: POST Content-Type:application/json; charset=utf-8 |
||||
요청 파라미터 | |||||
key | key 2 | data type | optional | description | |
bizId | String | N | bizppurio id | ||
apiKey | String | N | api 발급 key | ||
senderKey | Array | N | 발신프로필 리스트 | ||
String | N | 조회 하고자 하는 발신프로필 key | |||
반환 값 | |||||
key | key 2 | Key 3 | data type | optional | description |
code | String | N | 결과 코드 | ||
message | String | Y | 실패 시 결과 메시지 | ||
data |
Array | Y | 성공 시 데이터 | ||
senderKey | String | N | 발신프로필 key | ||
yellowName | String | N | 발신프로필 명 | ||
yellowStat | String | N | 발신프로필 상태 | ||
rdate | String | N | 발신프로필 생성일자 | ||
groups |
Array | Y | 성공 시 그룹데이터 | ||
groupKey | String | 그룹 key | |||
name | String | 그룹이름 | |||
createAt | String | 생성일자 |
4.3.1 예제
Request : https://kapi.ppurio.com/kakao/profile/list
{
"bizId": "kakaoapi",
"apiKey": "Q4jh8oXXXXXXXX", "senderKey": [
"05aa099bcbc5220a8c0b2XXXXXXXXXXXXX", "03423ege2545c0b2XXXXXXXXXXXXX"
]
}
Response
{
"code": "200",
"message": "", "data": [
{
"senderKey": "05aa099bcbc5220a8c0b267XXXXXXXXXXXXXXX ", "partnerId": "kakaoapi",
"yellowId": "@옐로우계정", "yellowName": "alimtalktest", "yellowStat": "A",
"rdate": "2017-01-26",
"groups": [
{
"groupKey": "422553fbc2e898d3a90a3c8XXXXXXXXXXXXXXX ", "name": "TEST_02",
"createAt": ""
},
{
"groupKey": "693785e6493e00b5a1dabXXXXXXXXXXXXXXX ", "name": "TEST_01",
"createAt": ""
},
{
"groupKey": "94298f0342f67092720XXXXXXXXXXXXXXX", "name": "TEST",
"createAt": ""
}
]
}
]
}
댓글
댓글 0개
이 문서에는 댓글을 달 수 없습니다.