FileStorage

This service provides functionality to manage assets and generate pdf. You can upload the assets, get the cdn link for the assets, proxy the assets and many more things.

Browse File

Browse files by fetching all files in a directory based on the provided namespace, query, and request body parameters. It determines the directory path, retrieves paginated files accordingly, and serializes the response for further processing. This method optimizes directory browsing functionality within the system.

Operations
POST
/service/platform/assets/v1.0/company/{company_id}/application/{application_id}/namespaces/{namespace}/browse
# Browse files for Application
POST

Browse files for Application

View and navigate through available files.
Parameters
namespace
string
Required
Segregation of different types of files(products, orders, logistics etc), Required for validating the data of the file being uploaded, decides where exactly the file will be stored inside the storage bucket.
company_id
integer
Required
This is company id
application_id
string
Required
This is application id
page
integer
page no
limit
integer
Limit
search
string
Search
Request body
extension_slug
string
Response
200
400
Success
Properties
items
array of object
Array of Properties
page
object
Properties
Examples
Parameters
namespace:
"test"
companyId:
2
applicationId:
"5eda528b97457fe43a733ace"
page:
1
limit:
1
search:
"test"
body:
body
POST
/service/platform/assets/v1.0/company/{company_id}/application/{application_id}/namespaces/{namespace}/browse
Loading...
Response
Example not available.

File Upload

File upload is a feature that enables users to upload files from their device to a designated storage location in the system. The process of uploading begins by validating user parameters and organizing files into different groups based on their type using something called a "namespace". This helps in storing the files into Public and Private buckets Private - The files stored in private bucket is accessible via getSignedUrl method for a temporary duration. Public - The files stored in public bucket is accessible via cdn url Seller initiate the upload process by selecting files through drag-and-drop, pre-existing images, choosing from your device, uploading via URL, or entering an image URL. 1. Start Upload - Once seller calls start upload will receive a signed URL to initiate the upload process. 2. Utilize a Google Cloud Platform (GCP) method to upload the file through the obtained signed URL. 3. Complete File upload - Important file details such as name, size, content type, and namespace are collected and linked to maintain data integrity within the system's database. Once you upload a file, you receive a message with all the details about where your file is stored, including a secure URL for uploading files to the designated storage and a CDN (Content Delivery Network) URL for future accessibility. Furthermore, the system sets an expiration time for access links(signed Url) enhancing security measures.

Operations
POST
/service/platform/assets/v1.0/company/{company_id}/application/{application_id}/namespaces/{namespace}/upload/start
# Initiates file upload for Application
POST
/service/platform/assets/v1.0/company/{company_id}/application/{application_id}/namespaces/{namespace}/upload/complete
# Complete file upload for Application
POST
/service/platform/assets/v1.0/company/{company_id}/application/{application_id}/uploads/copy
# Copy files for Application
POST

Initiates file upload for Application

Inititates the process of uploading a file to storage location, and returns a storage link in response on platofrm at application level. Please refer group description for more details.
Parameters
namespace
string
Required
Segregation of different types of files(products, orders, logistics etc), Required for validating the data of the file being uploaded, decides where exactly the file will be stored inside the storage bucket.
company_id
integer
Required
This is company id
application_id
string
Required
This is application id
Request body
file_name
string
Required
content_type
string
Required
size
integer
Required
tags
array of string
params
object
Response
200
400
Success. Returns a response containing relaving and absolute_url of storage service
StartResponse
file_name
string
file_path
string
content_type
string
method
string
namespace
string
operation
string
size
integer
upload
object (Upload)
Upload
cdn
object (CDN)
CDN
tags
array of string
Examples
Parameters
namespace:
"test"
companyId:
2
applicationId:
"5eda528b97457fe43a733ace"
body:
body
POST
/service/platform/assets/v1.0/company/{company_id}/application/{application_id}/namespaces/{namespace}/upload/start
Loading...
Response
Loading...
POST

Complete file upload for Application

Complete the file upload and store the file details such as name, size, content type, and namespace to maintain integrity within the system's database on platform at application level
Parameters
namespace
string
Required
Segregation of different types of files(products, orders, logistics etc), Required for validating the data of the file being uploaded, decides where exactly the file will be stored inside the storage bucket.
company_id
integer
Required
This is company id
application_id
string
Required
This is application id
Request body
file_name
string
Required
file_path
string
Required
content_type
string
Required
method
string
namespace
string
Required
operation
string
Required
size
integer
Required
upload
object (Upload)
Required
Upload
cdn
object (CDN)
Required
CDN
tags
array of string
Response
200
400
Success
CompleteResponse
_id
string
file_name
string
file_path
string
content_type
string
namespace
string
operation
string
company_id
number
size
integer
upload
object (Upload)
Upload
cdn
object (CDN)
CDN
success
boolean
tags
array of string
created_on
string
modified_on
string
created_by
object (CreatedBy)
CreatedBy
Examples
Parameters
namespace:
"test"
companyId:
2
applicationId:
"5eda528b97457fe43a733ace"
body:
body
POST
/service/platform/assets/v1.0/company/{company_id}/application/{application_id}/namespaces/{namespace}/upload/complete
Loading...
Response
Loading...
POST

Copy files for Application

Handle multiple file uploads, updating progress and providing detailed status reports.
Parameters
sync
boolean
sync
company_id
integer
Required
This is company id
application_id
string
Required
This is application id
Request body
urls
array of string
destination
object (DestinationNamespace)
Required
DestinationNamespace
Response
200
400
Success
Properties
tracking_url
string
The URL to track the status of the copy-files task.
task
object
Details about the task being performed.
Properties
Examples
Parameters
body:
body
POST
/service/platform/assets/v1.0/company/{company_id}/application/{application_id}/uploads/copy
Loading...
Response
Example not available.