POST /auth
| Name | Type | Description |
|---|---|---|
| Authorization | String | Basic authorization with email and password. |
POST /data-sources
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
| type | Data source's type. |
|
| data | Data source's data. |
DELETE /data-sources/:id
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
GET /data-sources/:id
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
GET /data-sources
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
| q | String | optional Query to search. |
| page | Number | optional Page number. |
| limit | Number | optional Amount of returned items. |
| sort | String[] | optional Order of returned items. |
| fields | String[] | optional Fields to be returned. |
PUT /data-sources/:id
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
| type | Data source's type. |
|
| data | Data source's data. |
POST /members
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
| name | Member's name. |
|
| status | Member's status. |
|
| group | Member's group. |
DELETE /members/:id
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
GET /members/:id
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
GET /members
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
| q | String | optional Query to search. |
| page | Number | optional Page number. |
| limit | Number | optional Amount of returned items. |
| sort | String[] | optional Order of returned items. |
| fields | String[] | optional Fields to be returned. |
PUT /members/:id
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
| name | Member's name. |
|
| status | Member's status. |
|
| group | Member's group. |
POST /teams
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
| name | Team's name. |
|
| members | Team's members. |
DELETE /teams/:id
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
GET /teams/:id
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
GET /teams
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
| q | String | optional Query to search. |
| page | Number | optional Page number. |
| limit | Number | optional Amount of returned items. |
| sort | String[] | optional Order of returned items. |
| fields | String[] | optional Fields to be returned. |
PUT /teams/:id
| Name | Type | Description |
|---|---|---|
| access_token | String | user access token. |
| name | Team's name. |
|
| members | Team's members. |
POST /users
| Name | Type | Description |
|---|---|---|
| String | User's email. |
|
| password | String | User's password. |
| name | String | optional User's name. |
| picture | String | optional User's picture. |
| role | String | optional User's role. |
DELETE /users/:id
| Name | Type | Description |
|---|---|---|
| access_token | String | User access_token. |
GET /users/me
| Name | Type | Description |
|---|---|---|
| access_token | String | User access_token. |
GET /users/:id
GET /users
| Name | Type | Description |
|---|---|---|
| access_token | String | User access_token. |
| q | String | optional Query to search. |
| page | Number | optional Page number. |
| limit | Number | optional Amount of returned items. |
| sort | String[] | optional Order of returned items. |
| fields | String[] | optional Fields to be returned. |
PUT /users/:id/password
| Name | Type | Description |
|---|---|---|
| Authorization | String | Basic authorization with email and password. |
| Name | Type | Description |
|---|---|---|
| password | String | User's new password. |
PUT /users/:id
| Name | Type | Description |
|---|---|---|
| access_token | String | User access_token. |
| name | String | optional User's name. |
| picture | String | optional User's picture. |