Skip to content

Commit

Permalink
add library methods
Browse files Browse the repository at this point in the history
  • Loading branch information
mordka committed Jul 25, 2017
1 parent 33df127 commit 5affdf2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
23 changes: 23 additions & 0 deletions source/includes/_library.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,26 @@ filename | string | required| the name which will be assigned in s3 storage
After you obtain the presigned url, you need to perform browser based upload to S3. More details in S3 API documentation: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-post-example.html
</aside>

### List session media files

Retrieve all images and videos recorded on a given device in particular session.
#### API Endpoint

`GET /library/device/{deviceId}/session/{sessionId}`

### List device media files

Retrieve all images and videos recorded on a given device in any session.
#### API Endpoint

`GET /library/device/{deviceId}/session}`

### List device sessions

Retrieve list of sessions recorded using particular device.
#### API Endpoint

`GET /library/session/device/{deviceId}/`



7 changes: 2 additions & 5 deletions source/includes/_user.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@

## User
Represents customer user.
Represents the Unleash User.

### Create a user

Creates new user item
Create new representation of Unleash User. This is post user registration and used only for user data management (not authentication)

#### API Endpoint

`POST /user`



#### Parameters

Name | Type | Contraints | Description
Expand Down

0 comments on commit 5affdf2

Please sign in to comment.