API docs
Authenticate
POST https://storytime.nl/core/api/v1/authenticate
Authenticate to receive an access token.
Request Body
Name
Type
Description
email*
String
Email to login
password*
String
Password to login
{
// Response
'token_type': 'Bearer',
'access_token': '...',
'id_token': '...',
'refresh_token': '...',
'expires_in': 3600
}Receive whether the token is valid
GET https://storytime.nl/core/api/v1/me
Headers
Name
Type
Description
Authorization*
String
Bearer <token>
Get all projects
GET https://storytime.nl/core/api/v1/firebase/projects
Get all projects from a specific user.
Headers
Name
Type
Description
Authorization*
String
Bearer <token>
Get a specific project
GET https://storytime.nl/core/api/v1/firebase/projects/{project}
Get a specific project.
Headers
Name
Type
Description
Authorization*
String
Bearer <token>
Get all tables of a project
GET https://storytime.nl/core/api/v1/firebase/projects/{project}/tables
Headers
Name
Type
Description
Authorization*
String
Bearer <token>
Get specific table from a project.
GET https://storytime.nl/core/api/v1/firebase/projects/{project}/tables/{table}
Headers
Name
Type
Description
Authorization*
String
Bearer <token>
Last updated
Was this helpful?