Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. Storage
  • Omni
  • Document APIs
  • Storage
    • Create Storage
      POST
    • Update Storage
      PATCH
    • List Storage
      GET
    • Get Storage
      GET
    • Test Credential
      GET
  • Category
    • Create Category
      POST
    • Update Category
      PATCH
    • List Category
      GET
    • Get Category
      GET
  • Document
    • Create Document
      POST
    • Update Document
      PATCH
    • List Document
      GET
    • Delete Document
      DELETE
    • Get Document
      GET
    • Upload Files
      POST
    • Downlaod Files
      GET
    • Delete File
      DELETE
    • Get all tags
      GET
    • Inactive
      PUT
    • Reject
      PUT
    • Approve
      PUT
  • Sharing
    • Share Document
      POST
    • Preview Shared Document
      GET
    • List Shared Documents
      GET
    • Get Shared Document
      GET
    • Update Shared Document
      PATCH
    • Delete Document Share
      DELETE
  1. Storage

List Storage

Developing
preprod
preprod
GET
/storages/
Last modified:2025-03-16 09:34:11

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/storages/?page_size&page' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "count": 0,
    "total_pages": 0,
    "current_page": 0,
    "has_previous": true,
    "has_next": true,
    "previous_page": 0,
    "next_page": 0,
    "results": [
        {
            "id": "string",
            "tenant_id": "string",
            "created_by": "ee824cad-d7a6-4f48-87dc-e8461a9201c4",
            "updated_by": "deea00dc-b6b6-4412-a483-26ac61e1f6fe",
            "created_at": "1970-01-01T00:00:00Z",
            "updated_at": "1970-01-01T00:00:00Z",
            "name": "string",
            "provider": "aws_s3",
            "bucket": "string",
            "config": {},
            "credentials": {},
            "managed": false
        }
    ]
}
Modified at 2025-03-16 09:34:11
Previous
Update Storage
Next
Get Storage
Built with