Socket
Socket
Sign inDemoInstall

flat-api

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flat-api

JavaScript Client for Flat REST API (https://flat.io)


Version published
Weekly downloads
4
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

JavaScript (Browser & Node.js) Client for the Flat REST API

Build Status NPM Dependencies NPM Version Bower Version]

The Flat API allows you to easily extend the abilities of the Flat Platform, with a wide range of use cases including the following:

  • Creating and importing new music scores using MusicXML or MIDI files
  • Browsing, updating, copying, exporting the user's scores (for example in MP3, WAV or MIDI)
  • Managing educational resources with Flat for Education: creating & updating the organization accounts, the classes, rosters and assignments.

You can find the API reference including code samples and our OpenAPI Specification at the following url: https://flat.io/developers/api/reference.

To request some API credentials, please visit https://flat.io/developers.

This JavaScript package is automatically generated by the Swagger Codegen project.

Installation

For Node.js

npm
$ npm install flat-api --save
git
$ npm install git://github.com/FlatIO/api-client-js --save

For browser

bower

$ bower install flat-api

git / github

The library also works in the browser environment via npm and browserify. A build is available in the build directory, you can also rebuild the library:

$ npm install -d && npm run build
$ ls -1 build
flat-api.js
flat-api.js.map
flat-api.min.js

Then include bundle.js in the HTML pages.

Getting Started

Please follow the installation instruction and execute the following JS code:

var FlatApi = require('flat-api');

// Configure OAuth2 access token for authorization
FlatApi.ApiClient.instance.authentications.OAuth2.accessToken = 'YOUR_ACCES_TOKEN';

var flatAccountApi = new FlatApi.AccountApi();
flatAccountApi.getAuthenticatedUser(function(error, data, response) {
  if (error) {
    console.error(error);
  }
  else {
    console.log('Successfully retrieved user profile: ', data);
  }
});

Documentation for API Endpoints

All URIs are relative to https://api.flat.io/v2

ClassMethodHTTP requestDescription
FlatApi.AccountApigetAuthenticatedUserGET /meGet current user profile
FlatApi.GroupApigetGroupScoresGET /groups/{group}/scoresList group's scores
FlatApi.ScoreApiaddScoreCollaboratorPOST /scores/{score}/collaboratorsAdd a new collaborator
FlatApi.ScoreApicreateScorePOST /scoresCreate a new score
FlatApi.ScoreApicreateScoreRevisionPOST /scores/{score}/revisionsCreate a new revision
FlatApi.ScoreApideleteScoreDELETE /scores/{score}Delete a score
FlatApi.ScoreApideleteScoreCommentDELETE /scores/{score}/comments/{comment}Delete a comment
FlatApi.ScoreApieditScorePUT /scores/{score}Edit a score's metadata
FlatApi.ScoreApiforkScorePOST /scores/{score}/forkFork a score
FlatApi.ScoreApigerUserLikesGET /users/{user}/likesList liked scores
FlatApi.ScoreApigetGroupScoresGET /groups/{group}/scoresList group's scores
FlatApi.ScoreApigetScoreGET /scores/{score}Get a score's metadata
FlatApi.ScoreApigetScoreCollaboratorGET /scores/{score}/collaborators/{collaborator}Get a collaborator
FlatApi.ScoreApigetScoreCollaboratorsGET /scores/{score}/collaboratorsList the collaborators
FlatApi.ScoreApigetScoreCommentsGET /scores/{score}/commentsList comments
FlatApi.ScoreApigetScoreRevisionGET /scores/{score}/revisions/{revision}Get a score revision
FlatApi.ScoreApigetScoreRevisionDataGET /scores/{score}/revisions/{revision}/{format}Get a score revision data
FlatApi.ScoreApigetScoreRevisionsGET /scores/{score}/revisionsList the revisions
FlatApi.ScoreApigetUserScoresGET /users/{user}/scoresList user's scores
FlatApi.ScoreApimarkScoreCommentResolvedPUT /scores/{score}/comments/{comment}/resolvedMark the comment as resolved
FlatApi.ScoreApimarkScoreCommentUnresolvedDELETE /scores/{score}/comments/{comment}/resolvedMark the comment as unresolved
FlatApi.ScoreApipostScoreCommentPOST /scores/{score}/commentsPost a new comment
FlatApi.ScoreApiremoveScoreCollaboratorDELETE /scores/{score}/collaborators/{collaborator}Delete a collaborator
FlatApi.ScoreApiupdateScoreCommentPUT /scores/{score}/comments/{comment}Update an existing comment
FlatApi.UserApigerUserLikesGET /users/{user}/likesList liked scores
FlatApi.UserApigetUserGET /users/{user}Get a public user profile
FlatApi.UserApigetUserScoresGET /users/{user}/scoresList user's scores

Documentation for Models

OAuth2

  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: https://flat.io/auth/oauth
  • Scopes:
    • account.public_profile: Provides access to the basic person's public profile. Education profiles may be anonymized with this scope, you can request the scope `education_profile` to access to the a basic education account profile.
    • account.education_profile: Provides access to the basic person's education profile and public organization information.
    • scores.readonly: Allows read-only access to all a user's scores. You won't need this scope to read public scores.
    • scores.social: Allow to post comments and like scores
    • scores: Full, permissive scope to access all of a user's scores.

Author

Flat - developers@flat.io

FAQs

Package last updated on 09 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc