Secure Share - General API Reference
Beta
post/v1beta/buckets
cURL
curl -sSLX POST 'https://share.aws.us.pangea.cloud/v1beta/buckets' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json'
Response
200
v-1-beta-buckets
POST
https://share.aws.us.pangea.cloud/v1beta/bucketsGet information on the accessible buckets.
post/v1beta/delete
cURL
curl -sSLX POST 'https://share.aws.us.pangea.cloud/v1beta/delete' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
v-1-beta-delete
POST
https://share.aws.us.pangea.cloud/v1beta/deleteDelete an item from the Secure Share by providing its id
or path
.
Provide just id
OR just path
.
The force
parameter can be used to delete folders and their contents even if the folder is not empty.
post/v1beta/folder/create
cURL
curl -sSLX POST 'https://share.aws.us.pangea.cloud/v1beta/folder/create' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
v-1-beta-folder-create
POST
https://share.aws.us.pangea.cloud/v1beta/folder/createCreate a Secure Share folder.
Use either parent_id
with name
to specify the folder to be created, or use path
only to specify the complete path to the folder to be created.
post/v1beta/get
cURL
curl -sSLX POST 'https://share.aws.us.pangea.cloud/v1beta/get' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
v-1-beta-get
POST
https://share.aws.us.pangea.cloud/v1beta/getDownload a file with from Secure Share by id
OR path
.
You can use the path
parameter alone to specify the full path to the file,
OR you can use the id
of the file to be downloaded.
See Transfer Methods for information on transfer_method
.