Skip to content

Authentication

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

Download OpenAPI description
Languages
Servers
Mock server

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/

Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations

Request

This API endpoint enables fetching a collection of processes. By providing the desired name or programId as parameters, the API response narrows down the results to the specified process.

Security
x-api-key
Query
filter[name]string

Specifies the name of a process. Valid values are strings. Must be used in conjunction with filter[name].

Example: filter[name]=Inventory
filter[programId]string

Object ID of a program.

Example: filter[programId]=5e94d5b63f557b001420bbe1
page[size]integer

The number of items to return. If not specified, the API will return a default of 30,000 items, which is the maximum value.

Example: page[size]=12000
page[cursor]string

Pagination cursor that indicates the starting position for the next set of items

Example: page[cursor]=5e94d5b63f557b001420bbe3
curl -i -X GET \
  'https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/processes?filter%5Bname%5D=Inventory&filter%5BprogramId%5D=5e94d5b63f557b001420bbe1&page%5Bsize%5D=12000&page%5Bcursor%5D=5e94d5b63f557b001420bbe3' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Success

Bodyapplication/json
dataArray of objects(GetProcessesModel)

Array of Processes

linksobject
Response
application/json
{ "data": [ {} ], "links": { "self": "/api/v1/processes/items?filter[name]=Inventory&filter[programId]=5e94d5b63f557b001420bbe3&page[size]=50&page[cursor]=5e94d5b63f557b001420bbe3", "next": "/api/v1/processes/items?filter[name]=Inventory&filter[programId]=5e94d5b63f557b001420bbe3&page[size]=50&page[cursor]=63b88f2cb1f05200179e7857" } }
Operations