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.
Name | Required/Optional | Type | Description | Notes |
---|---|---|---|---|
Authorization | Required | string | API confirmation key | Authorization: Bearer your-api-key |
The API authorization key is the API key created in [Web Admin > Workspace > Settings > API Key].
You must add 'Bearer ' in front of the API key to ensure proper authentication processing. | | Version | Required | string | API version | Version: 2025-01-09
You must specify the correct version to use the API. |
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) |
created-after when using created-before required | | created-before | Optional | string | End 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)
created-after when using created-before required | | video-code | Optional | string | Video recording no. | |
<https://api.realpacking.com/v3/viewpages?created-after=2023-12-22T00:00:00&created-before=2023-12-24T23:59:59>
No Request Body Required
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) |
{
"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"
}
]
}
]
}
{
"message": "you are unauthorized for the requested API service"
}