All URIs are relative to https://api.flat.io/v2
Method | HTTP request | Description |
---|---|---|
createLtiCredentials | POST /organizations/lti/credentials | Create a new couple of LTI 1.x credentials |
createOrganizationInvitation | POST /organizations/invitations | Create a new invitation to join the organization |
createOrganizationUser | POST /organizations/users | Create a new user account |
listLtiCredentials | GET /organizations/lti/credentials | List LTI 1.x credentials |
listOrganizationInvitations | GET /organizations/invitations | List the organization invitations |
listOrganizationUsers | GET /organizations/users | List the organization users |
removeOrganizationInvitation | DELETE /organizations/invitations/{invitation} | Remove an organization invitation |
removeOrganizationUser | DELETE /organizations/users/{user} | Remove an account from Flat |
revokeLtiCredentials | DELETE /organizations/lti/credentials/{credentials} | Revoke LTI 1.x credentials |
updateOrganizationUser | PUT /organizations/users/{user} | Update account information |
LtiCredentials createLtiCredentials(body)
Create a new couple of LTI 1.x credentials
Flat for Education is a Certified LTI Provider. You can use these API methods to automate the creation of LTI credentials. You can read more about our LTI implementation, supported components and LTI Endpoints in our Developer Documentation.
var FlatApi = require('flat-api');
var defaultClient = FlatApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = 'YOUR ACCESS TOKEN';
var apiInstance = new FlatApi.OrganizationApi();
var body = new FlatApi.LtiCredentialsCreation(); // LtiCredentialsCreation |
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.createLtiCredentials(body, callback);
Name | Type | Description | Notes |
---|---|---|---|
body | LtiCredentialsCreation |
- Content-Type: application/json
- Accept: application/json
OrganizationInvitation createOrganizationInvitation(opts)
Create a new invitation to join the organization
This method creates and sends invitation for teachers and admins. Invitations can only be used by new Flat users or users who are not part of the organization yet. If the email of the user is already associated to a user of your organization, the API will simply update the role of the existing user and won't send an invitation. In this case, the property `usedBy` will be directly filled with the uniquer identifier of the corresponding user.
var FlatApi = require('flat-api');
var defaultClient = FlatApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = 'YOUR ACCESS TOKEN';
var apiInstance = new FlatApi.OrganizationApi();
var opts = {
'body': new FlatApi.OrganizationInvitationCreation() // OrganizationInvitationCreation |
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.createOrganizationInvitation(opts, callback);
Name | Type | Description | Notes |
---|---|---|---|
body | OrganizationInvitationCreation | [optional] |
- Content-Type: application/json
- Accept: application/json
UserDetailsAdmin createOrganizationUser(opts)
Create a new user account
var FlatApi = require('flat-api');
var defaultClient = FlatApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = 'YOUR ACCESS TOKEN';
var apiInstance = new FlatApi.OrganizationApi();
var opts = {
'body': new FlatApi.UserCreation() // UserCreation |
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.createOrganizationUser(opts, callback);
Name | Type | Description | Notes |
---|---|---|---|
body | UserCreation | [optional] |
- Content-Type: application/json
- Accept: application/json
[LtiCredentials] listLtiCredentials()
List LTI 1.x credentials
var FlatApi = require('flat-api');
var defaultClient = FlatApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = 'YOUR ACCESS TOKEN';
var apiInstance = new FlatApi.OrganizationApi();
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.listLtiCredentials(callback);
This endpoint does not need any parameter.
- Content-Type: application/json
- Accept: application/json
[OrganizationInvitation] listOrganizationInvitations(opts)
List the organization invitations
var FlatApi = require('flat-api');
var defaultClient = FlatApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = 'YOUR ACCESS TOKEN';
var apiInstance = new FlatApi.OrganizationApi();
var opts = {
'role': "role_example", // String | Filter users by role
'limit': 50, // Number | This is the maximum number of objects that may be returned
'next': "next_example", // String | An opaque string cursor to fetch the next page of data. The paginated API URLs are returned in the `Link` header when requesting the API. These URLs will contain a `next` and `previous` cursor based on the available data.
'previous': "previous_example" // String | An opaque string cursor to fetch the previous page of data. The paginated API URLs are returned in the `Link` header when requesting the API. These URLs will contain a `next` and `previous` cursor based on the available data.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.listOrganizationInvitations(opts, callback);
Name | Type | Description | Notes |
---|---|---|---|
role | String | Filter users by role | [optional] |
limit | Number | This is the maximum number of objects that may be returned | [optional] [default to 50] |
next | String | An opaque string cursor to fetch the next page of data. The paginated API URLs are returned in the `Link` header when requesting the API. These URLs will contain a `next` and `previous` cursor based on the available data. | [optional] |
previous | String | An opaque string cursor to fetch the previous page of data. The paginated API URLs are returned in the `Link` header when requesting the API. These URLs will contain a `next` and `previous` cursor based on the available data. | [optional] |
- Content-Type: application/json
- Accept: application/json
[UserDetailsAdmin] listOrganizationUsers(opts)
List the organization users
var FlatApi = require('flat-api');
var defaultClient = FlatApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = 'YOUR ACCESS TOKEN';
var apiInstance = new FlatApi.OrganizationApi();
var opts = {
'role': "role_example", // String | Filter users by role
'limit': 50, // Number | This is the maximum number of objects that may be returned
'next': "next_example", // String | An opaque string cursor to fetch the next page of data. The paginated API URLs are returned in the `Link` header when requesting the API. These URLs will contain a `next` and `previous` cursor based on the available data.
'previous': "previous_example" // String | An opaque string cursor to fetch the previous page of data. The paginated API URLs are returned in the `Link` header when requesting the API. These URLs will contain a `next` and `previous` cursor based on the available data.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.listOrganizationUsers(opts, callback);
Name | Type | Description | Notes |
---|---|---|---|
role | String | Filter users by role | [optional] |
limit | Number | This is the maximum number of objects that may be returned | [optional] [default to 50] |
next | String | An opaque string cursor to fetch the next page of data. The paginated API URLs are returned in the `Link` header when requesting the API. These URLs will contain a `next` and `previous` cursor based on the available data. | [optional] |
previous | String | An opaque string cursor to fetch the previous page of data. The paginated API URLs are returned in the `Link` header when requesting the API. These URLs will contain a `next` and `previous` cursor based on the available data. | [optional] |
- Content-Type: application/json
- Accept: application/json
removeOrganizationInvitation(invitation)
Remove an organization invitation
var FlatApi = require('flat-api');
var defaultClient = FlatApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = 'YOUR ACCESS TOKEN';
var apiInstance = new FlatApi.OrganizationApi();
var invitation = "invitation_example"; // String | Unique identifier of the invitation
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
};
apiInstance.removeOrganizationInvitation(invitation, callback);
Name | Type | Description | Notes |
---|---|---|---|
invitation | String | Unique identifier of the invitation |
null (empty response body)
- Content-Type: application/json
- Accept: application/json
removeOrganizationUser(user, opts)
Remove an account from Flat
This operation removes an account from Flat and its data, including: * The music scores created by this user (documents, history, comments, collaboration information) * Education related data (assignments and classroom information)
var FlatApi = require('flat-api');
var defaultClient = FlatApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = 'YOUR ACCESS TOKEN';
var apiInstance = new FlatApi.OrganizationApi();
var user = "user_example"; // String | Unique identifier of the Flat account
var opts = {
'convertToIndividual': true // Boolean | If `true`, the account will be only removed from the organization and converted into an individual account on our public website, https://flat.io. This operation will remove the education-related data from the account. Before realizing this operation, you need to be sure that the user is at least 13 years old and that this one has read and agreed to the Individual Terms of Services of Flat available on https://flat.io/legal.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
};
apiInstance.removeOrganizationUser(user, opts, callback);
Name | Type | Description | Notes |
---|---|---|---|
user | String | Unique identifier of the Flat account | |
convertToIndividual | Boolean | If `true`, the account will be only removed from the organization and converted into an individual account on our public website, https://flat.io. This operation will remove the education-related data from the account. Before realizing this operation, you need to be sure that the user is at least 13 years old and that this one has read and agreed to the Individual Terms of Services of Flat available on https://flat.io/legal. | [optional] |
null (empty response body)
- Content-Type: application/json
- Accept: application/json
revokeLtiCredentials(credentials)
Revoke LTI 1.x credentials
var FlatApi = require('flat-api');
var defaultClient = FlatApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = 'YOUR ACCESS TOKEN';
var apiInstance = new FlatApi.OrganizationApi();
var credentials = "credentials_example"; // String | Credentials unique identifier
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
};
apiInstance.revokeLtiCredentials(credentials, callback);
Name | Type | Description | Notes |
---|---|---|---|
credentials | String | Credentials unique identifier |
null (empty response body)
- Content-Type: application/json
- Accept: application/json
UserDetailsAdmin updateOrganizationUser(userbody)
Update account information
var FlatApi = require('flat-api');
var defaultClient = FlatApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = 'YOUR ACCESS TOKEN';
var apiInstance = new FlatApi.OrganizationApi();
var user = "user_example"; // String | Unique identifier of the Flat account
var body = new FlatApi.UserAdminUpdate(); // UserAdminUpdate |
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.updateOrganizationUser(userbody, callback);
Name | Type | Description | Notes |
---|---|---|---|
user | String | Unique identifier of the Flat account | |
body | UserAdminUpdate |
- Content-Type: application/json
- Accept: application/json