Users
Collects metrics for the authenticated client.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYMetrics collected successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/dashboard/collect-metrics HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Creates a new directory in the specified parent directory. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYThe parent directory ID where the new directory will be created. If not provided, the new directory will be created in the root directory.
682aa5a96ef58914bf648be7The name of the new directory.
DocumentsIf true, allows creating directories with duplicate names by adding a suffix. Defaults to false.
trueDirectory created successfully. Returns the created directory details.
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/directories HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 62
{
"directory_id": "682aa5a96ef58914bf648be7",
"name": "Documents"
}No content
Retrieves details of a specific directory by its ID. Requires authentication.
The ID of the directory to retrieve. Pass 'root' to retrieve the root directory.
682aa5a96ef58914bf648be7id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYDirectory details retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/directories/{directory_id} HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Updates the name or parent directory of a specified directory. Requires authentication.
The ID of the directory to update.
682b503c77f3a1ad221e2557id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYThe target directory ID to move this directory to.
682aa5a96ef58914bf648be7The new name for the directory.
DocumentsDirectory updated successfully. Returns the updated directory details.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
PUT /clients/v1/directories/{directory_id} HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 62
{
"directory_id": "682aa5a96ef58914bf648be7",
"name": "Documents"
}No content
Deletes a directory by its ID. Requires authentication.
The ID of the directory to delete.
682b503c77f3a1ad221e2557id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYDirectory deleted successfully. Returns a success message.
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
DELETE /clients/v1/directories/{directory_id} HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Deletes multiple directories by their IDs. Requires authentication.
id_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81List of directory IDs to delete.
["688344475123816c01c8529"]Directories deleted successfully. Returns a success message with details.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
DELETE /clients/v1/directories/delete HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 45
{
"directory_ids": [
"688344475123816c01c8529"
]
}No content
Moves multiple directories to a specified directory. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYThe ID of the target directory to move the directories to.
688093f98283cbe0f596faa0List of directory IDs to move.
["6880a6d940f95c4b1b6e08c3","6880a6bc40f95c4b1b6e08c2"]Directories moved successfully. Returns the updated file details.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/directories/move HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 122
{
"target_directory_id": "688093f98283cbe0f596faa0",
"directory_ids": [
"6880a6d940f95c4b1b6e08c3",
"6880a6bc40f95c4b1b6e08c2"
]
}No content
Uploads a new file to the specified directory. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYThe ID of the directory to upload the file to. If not provided, the file will be uploaded to the root directory.
682aa5a96ef58914bf648be7If provided, the file upload will be encrypted with this passphrase. Must be at least 8 characters long, include 1 uppercase letter, 1 number, and 1 special character (!@#$%^&*()_+). Encrypted files are limited to 50MB.
Passphrase123!If true, replaces existing files with the same name. Defaults to false.
trueFile uploaded successfully. Returns the uploaded file details.
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/files HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: multipart/form-data
Accept: */*
Content-Length: 113
{
"file": "binary",
"directory_id": "682aa5a96ef58914bf648be7",
"passphrase": "Passphrase123!",
"replace_existing": true
}No content
Downloads a file by its ID. Requires authentication. For encrypted files, use stream=false and provide the Passphrase header.
The ID of the file to download.
682c304bbf71b6b7ac80dc97Set to false to download encrypted files. Defaults to true for streaming.
falseid_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYPassphrase to decrypt the file if it was uploaded with encryption.
Password123!File downloaded successfully. Returns the downloaded file.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/files/{file_id}/download HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Retrieves details of a specific file by its ID. Requires authentication.
The ID of the file to retrieve.
682c304bbf71b6b7ac80dc97Set to true to include the IPFS chunks in the response. Defaults to false if not provided.
falseid_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYFile details retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/files/{file_id} HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Updates the name or parent directory of a specified file. Requires authentication.
The ID of the file to update.
682c304bbf71b6b7ac80dc97id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYThe target directory ID to move this file to.
682c86bec39bd0d59b3d6567The new name for the file.
Profile.jpgFile updated successfully. Returns the updated file details.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
PUT /clients/v1/files/{file_id} HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 64
{
"directory_id": "682c86bec39bd0d59b3d6567",
"name": "Profile.jpg"
}No content
Deletes a file by its ID. Requires authentication.
The ID of the file to delete.
682c304bbf71b6b7ac80dc97id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYFile deleted successfully. Returns a success message.
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
DELETE /clients/v1/files/{file_id} HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Deletes multiple files by their IDs. Requires authentication.
id_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81List of file IDs to delete.
["688344475123816c01c8529"]Files deleted successfully. Returns a success message with details.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
DELETE /clients/v1/files/delete HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 40
{
"file_ids": [
"688344475123816c01c8529"
]
}No content
Moves multiple files to a specified directory. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYThe ID of the target directory to move the files to.
688093f98283cbe0f596faa0List of file IDs to move.
["6880a6d940f95c4b1b6e08c3","6880a6bc40f95c4b1b6e08c2"]Files moved successfully. Returns the updated file details.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/files/move HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 110
{
"directory_id": "688093f98283cbe0f596faa0",
"file_ids": [
"6880a6d940f95c4b1b6e08c3",
"6880a6bc40f95c4b1b6e08c2"
]
}No content
Generates a temporary token with a specified duration for downloading a file. Requires a valid Bearer token for authentication.
The ID of the file to generate a link for.
682c304bbf71b6b7ac80dc97id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYDuration of the link validity in seconds.
3600Successfully generated a temporary token.
No content
Unauthorized. Invalid or missing Bearer token.
File not found.
Server error. An error occurred while processing the request.
POST /clients/v1/files/{file_id}/generate-link HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 17
{
"duration": 3600
}No content
Shares a file with specified access settings. Requires authentication. Request body is optional unless access is 'password' (requires password) or 'email' (requires emails).
The ID of the file to share.
6853e14d78e8cc3e4c66fbThe access level for the shared file (public, private, password, email).
passwordPossible values: id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYPassword required for 'password' access. Must be at least 8 characters long, include 1 uppercase letter, 1 number, and 1 special character (!@#$%^&*()_+). Required if access is 'password'.
Password123!List of email addresses for 'email' access. Required if access is 'email'. The email must have an account in Koneksi.
["alex@ardata.tech","paulinquit@gmail.com"]File shared successfully.
No content
Bad request. Missing required fields (e.g., password for 'password' access, emails for 'email' access).
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/files/{file}/share?access=public HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 80
{
"password": "Password123!",
"emails": [
"alex@ardata.tech",
"paulinquit@gmail.com"
]
}No content
Creates a new recovery request. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYThe path to recover.
/Users/aldrickb/Desktop/The scope of the recovery. Options are full, point_in_time, backup_snapshot
backup_snapshotPossible values: Required only when recovery_scope is backup_snapshot
68e350b5e02a589e7e313711Recovery request created successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/recovery/request HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 208
{
"recovery_path": "/Users/aldrickb/Desktop/",
"recovery_scope": "backup_snapshot",
"point_in_time": {
"start_date": "2024-06-15T00:00:00Z",
"end_date": "2024-07-15T23:59:59Z"
},
"snapshot_id": "68e350b5e02a589e7e313711"
}No content
Lists all recovery requests. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYRecovery requests listed successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/recovery/request/list HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Reads a recovery request by its ID. Requires authentication.
6880a6d940f95c4b1b6e08c3id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYRecovery request read successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/recovery/request/{recovery_request_id}/read HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Gets the scope of a recovery request by its ID. Requires authentication.
6880a6d940f95c4b1b6e08c3id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYRecovery request scope retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/recovery/request/{recovery_request_id}/scope HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Updates a recovery request by its ID. Requires authentication.
6880a6d940f95c4b1b6e08c3id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYThe path to recover.
/home/user/recoveryThe scope of the recovery.
fullRecovery request updated successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
PUT /clients/v1/recovery/request/{recovery_request_id}/update HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 131
{
"recovery_path": "/home/user/recovery",
"recovery_scope": "full",
"point_in_time": {
"start_date": "2021-01-01",
"end_date": "2021-01-01"
}
}No content
Updates the status of a recovery request by its ID. Requires authentication.
6880a6d940f95c4b1b6e08c3id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYThe status of the recovery request.
pendingRecovery request status updated successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
PUT /clients/v1/recovery/request/{recovery_request_id}/update-status HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 20
{
"status": "pending"
}No content
Deletes a recovery request by its ID. Requires authentication.
6880a6d940f95c4b1b6e08c3id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYRecovery request deleted successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
DELETE /clients/v1/recovery/request/{recovery_request_id}/delete HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Gets a realtime backup config request. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYRealtime backup config request retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/realtime-backup/config/request HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Creates a realtime backup config request. Requires authentication.
Whether to include directories in the response.
trueid_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYRealtime backup config request created successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/realtime-backup/config/request/create HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Cancels a realtime backup config request. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYRealtime backup config request cancelled successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/realtime-backup/config/request/cancel HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Reads a realtime backup config. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYRealtime backup config retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/realtime-backup/config/read HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Creates a realtime backup config. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYThe path of the host directory.
/home/user/host_directoryThe ID of the directory.
6880a6d940f95c4b1b6e08c3Whether the watcher is enabled.
trueRealtime backup config created successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/realtime-backup/config/create HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 238
{
"host_directory_path": "/home/user/host_directory",
"directory_id": "6880a6d940f95c4b1b6e08c3",
"is_watcher_enabled": true,
"watcher_subdirectories": [
{
"path": "/home/user/host_directory/subdirectory",
"directory_id": "6880a6d940f95c4b1b6e08c3"
}
]
}No content
Creates a snapshot. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYThe description of the snapshot.
Snapshot 1Snapshot created successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/snapshot/create HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 28
{
"description": "Snapshot 1"
}No content
Lists all snapshots. Requires authentication.
id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYList of snapshots retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/snapshot/list HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Reads a snapshot. Requires authentication.
6880a6d940f95c4b1b6e08c3id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYSnapshot retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/snapshot/read/{snapshotID} HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Reads a snapshot directory. Requires authentication.
6880a6d940f95c4b1b6e08c36880a6d940f95c4b1b6e08c3id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYSnapshot directory retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/snapshot/read-directory/{snapshotID}/{directoryID} HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Lists all snapshot directory scope. Requires authentication.
6880a6d940f95c4b1b6e08c3id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYSnapshot directory scope retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/snapshot/{snapshotID}/directory-scope HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Lists all snapshot file scope. Requires authentication.
6880a6d940f95c4b1b6e08c3id_UGacp3OrGbGt78bpwzmhkB42cfhTL0US2dPMTbVb1Esk_1e9KhX0ZReeT6Avugl8cA2rBvKdD2z05LB9VrA4q3hYSnapshot file scope retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/snapshot/{snapshotID}/file-scope HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Last updated