MostLogin REST API
  1. Folder
MostLogin REST API
  • Folder
    • Get folder list
      POST
    • Add a folder
      POST
    • Batch delete folders
      POST
    • Batch update folders
      POST
  • Profile
    • Get Profile list
      POST
    • Quick create a profile
      POST
    • Get profile detail
      POST
    • Update profile's folder
      POST
    • Update profile's base proxy
      POST
    • Update profile's api extraction proxy
      POST
    • Update profile's proxy, select one
      POST
    • Move profiles to recycle bin
      POST
  • Browser
    • Open/Launch browser profile
      POST
    • Close browser profile
      POST
    • Close all profiles
      POST
  • Proxy
    • Get proxy list
      POST
    • Proxy detect
      POST
    • Add a basic proxy
      POST
    • Update basic proxy
      POST
    • Add a API extraction proxy
      POST
    • Update API extraction proxy
      POST
    • Delete proxies
      POST
  • Quit app
    POST
  • Schemas
    • Schemas
      • CloudPhoneProfile
      • CloudPhoneProfileID
      • APIConfig
      • AdmissionConfig
      • AuthConfig
      • AutherConfig
      • BypassConfig
      • ChainConfig
      • ChainGroupConfig
      • Config
      • ConnectorConfig
      • DialerConfig
      • Duration
      • FileLoader
      • FileRecorder
      • ForwardNodeConfig
      • ForwarderConfig
      • HTTPLoader
      • HTTPNodeConfig
      • HTTPRecorder
      • HandlerConfig
      • HopConfig
      • HostMappingConfig
      • HostsConfig
      • IngressConfig
      • IngressRuleConfig
      • LimiterConfig
      • ListenerConfig
      • LogConfig
      • LogRotationConfig
      • MetricsConfig
      • NameserverConfig
      • NodeConfig
      • PluginConfig
      • ProfilingConfig
      • RecorderConfig
      • RecorderObject
      • RedisLoader
      • RedisRecorder
      • ResolverConfig
      • Response
      • RouterConfig
      • RouterRouteConfig
      • SDConfig
      • SelectorConfig
      • ServiceConfig
      • SockOptsConfig
      • TCPRecorder
      • TLSConfig
      • TLSNodeConfig
      • TLSOptions
    • Response
      • createAdmissionResponse
      • createAutherResponse
      • createBypassResponse
      • createChainResponse
      • createConnLimiterResponse
      • createHopResponse
      • createHostsResponse
      • createIngressResponse
      • createLimiterResponse
      • createRateLimiterResponse
      • createResolverResponse
      • createRouterResponse
      • createServiceResponse
      • deleteAdmissionResponse
      • deleteAutherResponse
      • deleteBypassResponse
      • deleteChainResponse
      • deleteConnLimiterResponse
      • deleteHopResponse
      • deleteHostsResponse
      • deleteIngressResponse
      • deleteLimiterResponse
      • deleteRateLimiterResponse
      • deleteResolverResponse
      • deleteRouterResponse
      • deleteServiceResponse
      • getConfigResponse
      • saveConfigResponse
      • updateAdmissionResponse
      • updateAutherResponse
      • updateBypassResponse
      • updateChainResponse
      • updateConnLimiterResponse
      • updateHopResponse
      • updateHostsResponse
      • updateIngressResponse
      • updateLimiterResponse
      • updateRateLimiterResponse
      • updateResolverResponse
      • updateRouterResponse
      • updateServiceResponse
  1. Folder

Get folder list

POST
/api/folder/list

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Header Params

Body Params application/json

Example
{
    "page": 1,
    "pageSize": 10
}

Request 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 POST 'http://127.0.0.1:30898/api/folder/list' \
--header 'Content-Type: application/json' \
--header 'Authorization;' \
--data-raw '{
    "page": 1,
    "pageSize": 10
}'

Responses

🟢200OK
Default Response
This response does not have a body.
Example
{
    "list": [
        {
            "belongName": "most_xxxxx",
            "belongUserId": "sxdxxxxxxxxxxxxxxx",
            "folderColor": "#3370FF",
            "folderName": "Default folder 25740",
            "id": "2c92b0239753bd0f019753d12ab10008",
            "resourceCount": 4,
            "sortOrder": 0
        }
    ],
    "totalNum": 5
}
🟠400Bad request
Modified at 2025-08-13 07:52:43
Next
Add a folder
Built with