For the complete documentation index, see llms.txt. This page is also available as Markdown.

Platform

플랫폼 일 별 통계를 조회합니다.

GET https://service-stage.pic-origin.com/api/v2/platforms/{platform_id}/stats

Path Parameters

Name
Type
Description

user_id*

String

유저의 id

ex)8BfE96V8Xc

Headers

Name
Type
Description

Authorization*

String

Platform ${Token}

Query Parameters

Name
Type
Description

start_date*

String

조회 기간의 시작 날짜 (YYYYMMDD). (default=None) ex)20240520

end_date*

String

조회 기간의 종료 날짜 (YYYYMMDD). (default=None) ex)20240521

sort_order

String

정렬 방식 (default=asc) [asc, desc] ex)desc

{
    "status_code": 200,
    "message": "성공",
    "result": [
        {
            "date": 20240520,
            "stats": {
                "upload_camera": 0,
                "upload_gallery": 0,
                "upload_request": 0,
                "total_upload": 0,
                "edit_count": 0,
                "delete_count": 0,
                "total_images": 0,
                "org_filesize_mb": 0.0,
                "org_latest_filesize_mb": 0.0,
                "total_filesize_mb": 0.0
            }
        },
        {
            "date": 20240521,
            "stats": {
                "upload_camera": 0,
                "upload_gallery": 5,
                "upload_request": 0,
                "total_upload": 5,
                "edit_count": 0,
                "delete_count": 0,
                "total_images": 5,
                "org_filesize_mb": 0.34,
                "org_latest_filesize_mb": 0.34,
                "total_filesize_mb": 0.34
            }
        },
    ]
}

플랫폼 전체 통계를 조회합니다.

GET https://service-stage.pic-origin.com/api/v2/platforms/{platform_id}/stats/total

Path Parameters

Name
Type
Description

user_id*

String

유저의 id

ex)8BfE96V8Xc

Headers

Name
Type
Description

Authorization*

String

Platform ${Token}

Last updated