커스텀 데이터 v1
Last updated
curl --location --request GET 'https://api.groobee.io/<요청주소>' \
--header 'x-api-key: <발급 받은 API Key 값>'{
"httpStatus": {
"code": <http status code>,
"reasonPhrase": <http status 내용>
},
"processCode": <성공여부>,
"processValue": <요청한 엔드포인트의 응답값>
}"memberId" : {
"legacyDataKey" : "GOLD"
}"memberId" : {
"legacyDataKey1" : 34,
"legacyDataKey2" : "12" // ""를 추가하여도 정상적으로 등록됨
}"memberId" : {
"legacyDataKey" : "2022-12-30" // YYYY-MM-DD
}/v1/legacy?seq=<nextPageSeq 값>{
"httpStatus": {
"code": <http status code>,
"reasonPhrase": <http status 내용>
},
"processCode": <성공여부>,
"processValue": {
"nextPageSeq": <다음 페이지 조회 seq 값>,
"dataList": [
{
"memberId": <멤버아이디>,
"legacyDataKey": <레거시 데이터 키>,
"legacyDataValue": <레거시 데이터 값>
},
...
]
}
} {
<멤버아이디값> : {
<레거시 데이터 키>: <레거시 데이터 값>,
...
},
...
}
{
"httpStatus": {
"code": <http status code>,
"reasonPhrase": <http status 내용>
},
"processCode": <성공여부>,
"processValue": <입력된 데이터 수>
} {
<변경 하고자 하는 멤버아이디값> : {
<레거시 데이터 키>: <레거시 데이터 값>,
...
},
...
} {
"httpStatus": {
"code": <http status code>,
"reasonPhrase": <http status 내용>
},
"processCode": <성공여부>,
"processValue": <변경된 데이터 수>
}[
<삭제할 멤버아이디 값>,
...
]{
<삭제할 멤버아이디 값> : [
<삭제할 레거시 데이터 키>,
...
]
}{
"httpStatus": {
"code": <http status code>,
"reasonPhrase": <http status 내용>
},
"processCode": <성공여부>,
"processValue": <삭제된 데이터 수>
}