docs: add Carousel dashboard implementation plan
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
info:
|
||||
name: Get Progress History
|
||||
type: http
|
||||
seq: 3
|
||||
http:
|
||||
method: GET
|
||||
url: '{{base_url}}/api/progress/{{mediaItemId}}/history'
|
||||
auth: inherit
|
||||
body:
|
||||
type: none
|
||||
headers:
|
||||
- key: Authorization
|
||||
value: Bearer {{jwt
|
||||
|
||||
docs: |-
|
||||
## Get Progress History
|
||||
|
||||
Retrieves historical reading progress sessions for a specific media item.
|
||||
|
||||
**Method:** GET
|
||||
|
||||
**Endpoint:** /api/progress/{mediaItemId
|
||||
@@ -0,0 +1,22 @@
|
||||
info:
|
||||
name: Get Universal Progress
|
||||
type: http
|
||||
seq: 1
|
||||
http:
|
||||
method: GET
|
||||
url: '{{base_url}}/api/progress/{{mediaItemId}}'
|
||||
auth: inherit
|
||||
body:
|
||||
type: none
|
||||
headers:
|
||||
- key: Authorization
|
||||
value: Bearer {{jwt
|
||||
|
||||
docs: |-
|
||||
## Get Universal Progress
|
||||
|
||||
Retrieves universal reading progress for a specific media item across all devices.
|
||||
|
||||
**Method:** GET
|
||||
|
||||
**Endpoint:** /api/progress/{mediaItemId
|
||||
@@ -0,0 +1,24 @@
|
||||
info:
|
||||
name: Update Universal Progress
|
||||
type: http
|
||||
seq: 2
|
||||
http:
|
||||
method: POST
|
||||
url: '{{base_url}}/api/progress/{{mediaItemId}}'
|
||||
auth: inherit
|
||||
body:
|
||||
type: json
|
||||
jsonBody: "{\n \"source\": \"web\",\n \"location\": {\n \"percentage\"\
|
||||
: 0.45,\n \"page\": 90,\n \"total_pages\": 200"
|
||||
headers:
|
||||
- key: Authorization
|
||||
value: Bearer {{jwt
|
||||
|
||||
docs: |-
|
||||
## Update Universal Progress
|
||||
|
||||
Updates universal reading progress for a media item from a specific device or source.
|
||||
|
||||
**Method:** POST
|
||||
|
||||
**Endpoint:** /api/progress/{mediaItemId
|
||||
Reference in New Issue
Block a user