요청타입 | Parameter | Description | Required |
---|---|---|---|
Query Param | userId | A unique value that can identify a user within the service. | 0 |
Query Param | pageSize | The number of sticker elements to be received in one request. The default number is 40, and the maximum number is 100. | X |
Query Param | page | Page number Page number starts from 0. | X |
파라미터명 | 타입 | 설명 |
---|---|---|
hasNext | boolean | A field to check if there is more content to be searched. If there is more data with the search condition, hasNext returns a value of "true". |
elements | object | 구매한 콘텐츠 목록 |
파라미터명 | 타입 | 설명 |
---|---|---|
contentId | String | Unique ID value of the sticker content |
contentType | String | Type of contents purchased (IMAGE, STICKER) |
contentName | String | The name of the purchased content |
contentUrl | String | The thumbnail URL of the purchased content |
orderNo | String | Partner ID of the transaction |
{
"code": 20000,
"data": {
"hasNext": true,
"elements": [
{
"contentType": "IMAGE",
"contentId": "122283f2cff2",
"contentName": "바다위의 정원",
"contentUrl": "https://preview.files.api.ogq.me/thumbail/test/with/some_image.png?format=c240_240",
"orderNo": "user123"
}
]
}
}