You can retrieve the URLs of the send pages created on a specific date or associated with a specific video code.

At least one search parameter — either a date range (created-after, created-before) or a video code (video-code) — must be provided.

Headers

Name Required/Optional Type Description Notes
Authorization Required string API confirmation key Authorization: Bearer your-api-key

Query String Parameter

Name Required/Optional Type Description Notes
created-after Optional string Start date of Video Message page creation - Format: YYYY-MM-DDTHH:mm:ss or YYYY-MM-DDThh:mm:ss+00:00 (ISO8601)
If there is no timezone offset value, it is treated as KST (Korea Standard Time)

Example Endpoint

<https://api.realpacking.com/v3/viewpages?created-after=2023-12-22T00:00:00&created-before=2023-12-24T23:59:59>

Request Body

No Request Body Required

Response

Success

Name Required/Optional Type Description Notes
message Required string http status message
data Required map[] Resulting data array
data[i].videoCode Required string Recorder Video No.
data[i].url Required string URL of the Video Message where the review is registered
data[i].createdDate Required string Date of review creation
urlData Optional map[] Video Message page URL data Multiple URLs exist in one video recording code
urlData[i].url Optional string URL of the Video Message where the review is registered
urlData[i].date Optional string Video Message page URL creation date Format: YYYY-MM-DDThh:mm:ss+00:00 (ISO8601)

Response Example

{
    "message": "OK",
    "data": [
        {
            "videoCode": "3",
            "url": "<http://realpacking.kr/cOiLb>",
            "createdDate": "2020-03-06T13:33:29+09:00"
        },
        {
            "videoCode": "01090957004",
            "urlData": [
                {
                    "url": "<http://realpacking.kr/cOJAF>",
                    "createdDate": "2020-03-06T14:26:00+09:00"
                },
                {
                    "url": "<http://realpacking.kr/cOJc1>",
                    "createdDate": "2020-03-06T14:26:49+09:00"
                }
            ]
        }
    ]
}

Error

{
    "message": "you are unauthorized for the requested API service"
}