FloQast External API (1.0.0)
Requests to FloQast's API must be authenticated using an API key. The API key must be included in the x-api-key
header of each request and can be generated in the FloQast application. The key should also have the correct permissions to access the API endpoints you are using. Directions to generate an API key
https://developer.floqast.app/_mock/content/api-reference/openapi/
https://fq-api.floqast.app/
https://fq-api.eu.floqast.app/
https://fq-api.au.floqast.app/
- Mock server
https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/folders/{folderId}
https://fq-api.floqast.app/api/v1/folders/{folderId}
https://fq-api.eu.floqast.app/api/v1/folders/{folderId}
https://fq-api.au.floqast.app/api/v1/folders/{folderId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/folders/{folderId}' \
-H 'x-api-key: YOUR_API_KEY_HERE'
{ "id": "66b2710c17c0086b78a02d0c", "name": "Folder Name", "locked": 0 }
- Mock server
https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/folders/{folderId}/locking
https://fq-api.floqast.app/api/v1/folders/{folderId}/locking
https://fq-api.eu.floqast.app/api/v1/folders/{folderId}/locking
https://fq-api.au.floqast.app/api/v1/folders/{folderId}/locking
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/folders/{folderId}/locking?unlock=true' \
-H 'x-api-key: YOUR_API_KEY_HERE'
{ "id": "66b2710c17c0086b78a02d0c", "name": "Folder Name", "locked": { "isLocked": true, "user": "66a8430c17c0086b78a42b2a", "time": "2020-10-30T18:00:00.000Z" } }