System Admin
Collects dashboard metrics. Requires authentication.
id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mMetrics collected successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/admin/dashboard/collect-metrics HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Lists all pending approvals. Requires authentication.
id_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81List of pending approvals retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/admin/users/approvals/pending HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Processes an approval. Requires authentication.
id_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81The ID of the user to be processed.
user123The action to be processed.
approvedThe notes of the approval.
Approved by adminApproval processed successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/admin/users/approvals/process HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 69
{
"user_id": "user123",
"action": "approved",
"notes": "Approved by admin"
}No content
Processes multiple approvals. Requires authentication.
id_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81The IDs of the users to be processed.
["user123","user456"]The action to be processed.
approvedThe notes of the approval.
Approved by adminApproval processed successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/admin/users/approvals/bulk-process HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 82
{
"user_ids": [
"user123",
"user456"
],
"action": "approved",
"notes": "Approved by admin"
}No content
Updates the storage limit for a specific user. Requires authentication.
The ID of the user whose limit is to be updated.
user123id_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81The new storage limit in bytes.
5368709120Limit updated successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
PUT /clients/v1/admin/users/{userId}/limits/update HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 26
{
"bytes_limit": 5368709120
}No content
Retrieves a list of all users. Requires authentication.
Maximum number of page to return.
1Maximum number of users to return
10Whether to include organization members.
trueid_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81List of users retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/admin/users/list HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Creates a new user. Requires authentication.
id_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81The first name of the user.
JohnThe middle name of the user (optional).
The last name of the user.
DoeThe suffix of the user (e.g., Jr., Sr.) (optional).
User email address.
johndoe@gmail.comUser password (must meet complexity requirements).
StrongPass123!Confirmation of the user password.
StrongPass123!User role (system_user or system_admin).
system_userPossible values: Indicates if the user is verified.
falseUser created successfully.
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/admin/users/create HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 205
{
"first_name": "John",
"middle_name": null,
"last_name": "Doe",
"suffix": null,
"email": "johndoe@gmail.com",
"password": "StrongPass123!",
"confirm_password": "StrongPass123!",
"role": "system_user",
"is_verified": false
}No content
Retrieves details of a specific user. Requires authentication.
The ID of the user to retrieve.
user123id_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81User details retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
User not found.
Server error. An error occurred while processing the request.
GET /clients/v1/admin/users/{userId}/read HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Searches for users by email. Requires authentication.
Search term for user email.
johndoe@gmail.comid_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81Users found successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/admin/users/search?email=text HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Deletes a specific user. Requires authentication.
The ID of the user to delete.
user123id_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81User deleted successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
User not found.
Server error. An error occurred while processing the request.
DELETE /clients/v1/admin/users/{userID}/delete HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Updates details of a specific user. Requires authentication.
The ID of the user to update.
user123id_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81Updated first name of the user.
JohnUpdated middle name of the user (optional).
Updated last name of the user.
DoeUpdated suffix of the user (e.g., Jr., Sr.) (optional).
Updated user email address.
johndoe@gmail.comUpdated user password (must meet complexity requirements).
StrongPass123!Updated user role (system_user or system_admin).
system_userPossible values: Updated verification status of the user.
trueUpdated lock status of the user.
trueUpdated deleted status of the user.
trueUser updated successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
User not found.
Server error. An error occurred while processing the request.
PUT /clients/v1/admin/users/{userId}/update HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 203
{
"first_name": "John",
"middle_name": null,
"last_name": "Doe",
"suffix": null,
"email": "johndoe@gmail.com",
"password": "StrongPass123!",
"role": "system_user",
"is_verified": true,
"is_locked": true,
"is_deleted": true
}No content
Transfers ownership of a user to a new organization. Requires authentication.
id_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81The ID of the current owner.
user123The ID of the new owner.
user456Ownership transferred successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/admin/users/transfer-ownership HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"current_owner_id": "user123",
"new_owner_id": "user456"
}No content
Adds a member to an organization with a specified role. Requires authentication.
The ID of the organization.
68724f127d0d567ae10f58bdid_0RA3jR4NthjbME6MVg7r4EQ0DXlepaIjsk_ZfKAFeZ6pGb2YJ5Hq1smRLyjGUeo0V81The ID of the user to add as a member.
6873e39d485ac74c10176138The ID of the role to assign to the member.
68724d6c7d0d567ae10f5867Member added successfully.
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/admin/organizations/{orgID}/members/add HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 75
{
"user_id": "6873e39d485ac74c10176138",
"role_id": "68724d6c7d0d567ae10f5867"
}No content
Updates the role of a member in an organization. Requires authentication.
The ID of the organization.
681ca78cdac6270218139852The ID of the member.
681ca7a4dac6270218139853id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mThe new role ID to assign to the member.
681ca736dac627021813982bMember role updated successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Member or organization not found.
Server error. An error occurred while processing the request.
PUT /clients/v1/admin/organizations/{orgID}/members/{userID}/update-role HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 38
{
"role_id": "681ca736dac627021813982b"
}No content
Remove member from organization
Removes a member from an organization. Requires authentication.
The ID of the organization.
681ca78cdac6270218139852The ID of the member to remove.
681ca7a4dac6270218139853id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mMember removed successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Member or organization not found.
Server error. An error occurred while processing the request.
DELETE /clients/v1/admin/organizations/{orgID}/members/{userID}/remove HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Retrieves a list of organizations with pagination. Requires authentication.
Page number for pagination.
1Maximum number of organizations per page.
10id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mList of organizations retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/admin/organizations/list HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Creates a new organization. Requires authentication.
id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mName of the organization.
AR Data TechnologiesDomain associated with the organization.
ardata.techContact email for the organization.
alex@ardata.techID of the policy to apply to the organization.
681c6f783305ec1ab0dc0b28ID of the parent organization (optional).
Organization created successfully.
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/admin/organizations/create HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 139
{
"name": "AR Data Technologies",
"domain": "ardata.tech",
"contact": "alex@ardata.tech",
"policy_id": "681c6f783305ec1ab0dc0b28",
"parent_id": null
}No content
Retrieves details of a specific organization. Requires authentication.
The ID of the organization.
681ca78cdac6270218139852id_5f5b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mOrganization details retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Organization not found.
Server error. An error occurred while processing the request.
GET /clients/v1/admin/organizations/{orgID}/read HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Updates details of a specific organization. Requires authentication.
The ID of the organization.
681c84fa688a3eee0a35e594id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mUpdated name of the organization.
AR Data TechnologiesUpdated domain associated with the organization.
ardata.techUpdated contact email for the organization.
alex@ardata.techUpdated ID of the policy to apply.
681c6f783305ec1ab0dc0b28Updated ID of the parent organization (optional).
Organization updated successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Organization not found.
Server error. An error occurred while processing the request.
PUT /clients/v1/admin/organizations/{orgID}/update HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 139
{
"name": "AR Data Technologies",
"domain": "ardata.tech",
"contact": "alex@ardata.tech",
"policy_id": "681c6f783305ec1ab0dc0b28",
"parent_id": null
}No content
Retrieves a list of recovery requests. Requires authentication.
Page number for pagination.
1Maximum number of recovery requests per page.
10id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mList of recovery requests retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/admin/recovery/request/list HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Retrieves details of a specific recovery request. Requires authentication.
6880a6d940f95c4b1b6e08c3id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mRecovery 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/admin/recovery/request/{id}/read HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Approves a specific recovery request. Requires authentication.
6880a6d940f95c4b1b6e08c3id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mRecovery request approved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
PUT /clients/v1/admin/recovery/request/{id}/approve HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Rejects a specific recovery request. Requires authentication.
6880a6d940f95c4b1b6e08c3id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mRecovery request rejected successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
PUT /clients/v1/admin/recovery/request/{id}/reject HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Retrieves a list of realtime backup config requests. Requires authentication.
Page number for pagination.
1Maximum number of realtime backup config requests per page.
10Status of the realtime backup config requests.
pendingid_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mList of realtime backup config requests retrieved successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
GET /clients/v1/admin/realtime-backup/config/list HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Processes a specific realtime backup config request. Requires authentication.
id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mThe IDs of the realtime backup config requests to process.
["6880a6d940f95c4b1b6e08c3","6880a6d940f95c4b1b6e08c4"]The action to process the realtime backup config requests.
approvePossible values: The notes to process the realtime backup config requests.
Notes for the realtime backup config requests.Realtime backup config request processed successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
POST /clients/v1/admin/realtime-backup/config/request/process HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Content-Type: application/json
Accept: */*
Content-Length: 147
{
"request_ids": [
"6880a6d940f95c4b1b6e08c3",
"6880a6d940f95c4b1b6e08c4"
],
"action": "approve",
"notes": "Notes for the realtime backup config requests."
}No content
Retrieves details of a specific realtime backup config. Requires authentication.
6880a6d940f95c4b1b6e08c3id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mRealtime 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/admin/realtime-backup/config/{userId}/read HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Toggles the watcher for a specific realtime backup config. Requires authentication.
6880a6d940f95c4b1b6e08c3id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mWatcher toggled successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
PATCH /clients/v1/admin/realtime-backup/config/{userId}/toggle-watcher HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Deletes a specific realtime backup config. Requires authentication.
6880a6d940f95c4b1b6e08c3id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mRealtime backup config deleted successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
DELETE /clients/v1/admin/realtime-backup/config/{userId}/delete HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Clears the location for a specific realtime backup config. Requires authentication.
6880a6d940f95c4b1b6e08c3id_5f9b3c4d-e8a1-4b2f-9e7d-12a34b56c789sk_x7k9p2m4q8r5t1y3w6u0v9z2b4c6n8mLocation cleared successfully.
No content
Unauthorized. Valid Client-ID and Client-Secret required.
Server error. An error occurred while processing the request.
DELETE /clients/v1/admin/realtime-backup/config/{userId}/clear-location HTTP/1.1
Host: uat.koneksi.co.kr
Client-ID: text
Client-Secret: text
Accept: */*
No content
Last updated