Filters down the results to controls that are active.
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/
Filters down the results to controls that include the provided period. Must be used in conjunction with filter[year].
Filters down the results to controls that include the provided period. Must be a four digit year and be used in conjunction with filter[month].
Filters down the results to controls that are contained by the provided Program ID.
Filters down the results to controls whose Control ID contains the provided string.
Optional properties in a comma separated string that should be included on each control document
- Mock server
https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/controls
https://fq-api.floqast.app/api/v1/controls
https://fq-api.eu.floqast.app/api/v1/controls
https://fq-api.au.floqast.app/api/v1/controls
- 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/controls?filter%5Bmonth%5D=january&filter%5Byear%5D=2024&filter%5Bactive%5D=string&filter%5BprogramId%5D=61d325c84a9f97631731a690&filter%5BcontrolId%5D=FQ.001&include=owners%2Cassignees%2Csignatures%2Cdocuments%2CchecklistItems%2Creconciliations%2CreviewNotes%2CcustomFields' \
-H 'x-api-key: YOUR_API_KEY_HERE'
{ "data": [ { … } ], "links": { "self": "/api/v1/controls?filter[month]=january&filter[year]=2024&page[cursor]=5e94d5b63f557b001420bbe3", "next": "/api/v1/checklists?filter[month]=january&filter[year]=2024page[cursor]=5e94d5b63f557b001420bbe6" } }
Information about the users assigned to this control for sign-off
Integer from 1-12 where the numbers correspond as follows: Monthly, Quarterly, Annual, Custom, Weekly, Every 2 weeks, Twice per month, As needed, Multiple times per day, Daily, Automated, Continuous
Number value from 0-4 where the numbers correspond as follows: None, Monthly, Quarterly, Annual, Custom
- Mock server
https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/controls
https://fq-api.floqast.app/api/v1/controls
https://fq-api.eu.floqast.app/api/v1/controls
https://fq-api.au.floqast.app/api/v1/controls
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/controls \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '[
{
"controlId": "string",
"programId": "61d325c84a9f97631731a690",
"processId": "61d325c84a9f97631731a690",
"title": "string",
"description": "string",
"isKeyControl": true,
"isManual": true,
"assertions": [
"existence-or-occurrence"
],
"owners": [
{
"type": "primary",
"isGuest": true,
"userId": "61d325c84a9f97631731a690"
}
],
"assignees": [
{
"dueDateType": "NONE",
"dueDateOffsetDays": -99,
"frequency": 1,
"frequencyMonths": [
"january"
],
"group": "reviewer",
"userId": "61d325c84a9f97631731a690"
}
],
"frequency": 1,
"frequencyMonths": [
"january"
],
"requiredEvidenceFrequency": 0,
"requiredEvidenceFrequencyMonths": [
"january"
],
"customFields": [
{
"customFieldId": "61d325c84a9f97631731a690",
"values": []
}
]
}
]'
{ "data": [ "61d325c84a9f97631731a690" ] }
Optional properties in a comma separated string that should be included on each control document
- Mock server
https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/controls/{id}
https://fq-api.floqast.app/api/v1/controls/{id}
https://fq-api.eu.floqast.app/api/v1/controls/{id}
https://fq-api.au.floqast.app/api/v1/controls/{id}
- 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/controls/61d325c84a9f97631731a690?include=owners%2Cassignees%2Csignatures%2Cdocuments%2CchecklistItems%2Creconciliations%2CreviewNotes%2CcustomFields' \
-H 'x-api-key: YOUR_API_KEY_HERE'
{ "data": { "id": "61d325c84a9f97631731a690", "controlId": "FQ.001", "processId": "61d325c84a9f97631731a690", "title": "string", "description": "string", "project": { … }, "owners": [ … ], "assignees": [ … ], "signatures": [ … ], "documents": [ … ], "checklistItems": [ … ], "reconciliations": [ … ], "reviewNotes": { … }, "frequency": { … }, "attributes": { … }, "lockedPeriods": { … }, "isArchived": true, "createdAt": "2025-01-15T10:30:45.123Z", "updatedAt": "2025-01-15T10:30:45.123Z" } }