GET
/
v1
/
collection-access
/
{collectionID}
curl --request GET \
  --url https://api.storytell.ai/v1/collection-access/{collectionID}
{
  "code": "<string>",
  "data": {
    "pagination": {
      "count": 1,
      "currentPage": 1,
      "firstRecordOnPage": "<string>",
      "hasNextPage": true,
      "hasPreviousPage": true,
      "lastRecordOnPage": "<string>",
      "limit": 1,
      "offset": 1,
      "totalPages": 1
    },
    "records": [
      {
        "accessType": "<string>",
        "actions": [
          "<string>"
        ],
        "collectionDescription": "<string>",
        "collectionLabel": "<string>",
        "collectionPath": [
          [
            127
          ]
        ],
        "collection_id": [
          127
        ],
        "email": "<string>",
        "pictureURL": "<string>",
        "publicToken": "<string>",
        "sortableName": "<string>",
        "token": [
          127
        ],
        "tokenGrantedBy": "<string>",
        "tokenIssuedAt": "2023-11-07T05:31:56Z",
        "user_id": [
          127
        ]
      }
    ]
  },
  "details": {
    "consumption": {
      "units": 123
    },
    "operation": {
      "duration": 123,
      "operationId": "<string>"
    }
  },
  "done": true,
  "eventKey": "<string>",
  "message": "<string>"
}

Path Parameters

collectionID
string
required

Query Parameters

limit
integer
required

Limit is the number of items to return.

Required range: x > 0
offset
integer
required

Offset is the number of items to skip.

Required range: x > 0
sort
string[]
required

Sort is a CSV of fields to sort by. Prefix with "-" for descending order.

Response

200
application/json
Success response
code
string
required
data
object
required
details
object
required
done
boolean
required
eventKey
string
required
message
string
required