FTP-Stream APIs
Space shortcuts
FTP-Stream APIs FA

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Tip
titleWelcome to your new documentation space!

This is the home page for your documentation space within Confluence. Documentation spaces are great for keeping technical documentation organised and up to date.

Panel
titleNext you might want to:
  •   Customise the home page - Click "Edit" to start editing your home page
  •   Check out our sample pages - Browse the sample pages in the sidebar for layout ideas
  •   Create additional pages - Click "Create" and choose "Blank Page" to get started
  •   Manage permissions - Click "Space Tools" and select "Permissions" in the sidebar to manage what users see

Search this documentation

Livesearch
spaceKeyFA

Popular Topics

Popular Labels
spaceKeyFA
count10

Featured Pages

Content by Label
showLabelsfalse
spacesFA
sorttitle
showSpacefalse
typepage
labelsfeatured

Recently Updated Pages

Recently Updatedtypespagemax5hideHeadingtruethemeconcise

API endpoint

To perform FTP-Stream API the client application should send api_key. You can obtain api_key on FTP-Stream Control Panel visiting your FTP-Stream account in the Site Properties tab.

URL: https://www.maytech.net/panel/api/<api-version>/<route>[/<action>][/<object-id>]?api_key=<api_key>[&optional_get_parameters]

 

  • <api-version> - API Version. Current version is 1.0
  • <route> - FTP-Stream API route.
  • <action> - FTP-Stream API action.
  • <object-id> - universally unique FTP-Stream object identifier.
  • <api_key> - FTP-Stream API key.
  • <optional_get_parameters> - optional request parameters

Example Request URL

Code Block
languagejs
GET https://www.maytech.net/panel/api/1.0/user/00000000-0000-0000-0000-000000000000/?api_key=12345678-0000-0000-0000-000000000000&fields=login,real_name
 

Example Result

Code Block
languagejs
HTTP/1.1 200 OK
Content-Type: application/json

{"status":"OK","data":{"login":"demo","real_name":"John Smith"}}
FTP-Stream APIs FA