Advanced Search
Search Results
2 total results found
Authorization
Flow API
This document describes how to Sign-in and Authorize Flow API V1 requests. Get a CSRF token curl --location 'https://api.flow.gl/v1/csrf' Example response { "data": { "_csrf": "mBezzKZ8-5QAI_ivMHsYlz_EDU7atf-xj0oI" } } Create session (Sign-in)...
File
Flow API
This document describes how to upload and download a file from a Flow API V1. Upload file curl --location 'https://api.flow.gl/v1/files' \ --form 'file=@"/path/to/file.csv"' \ --form 'flow_id="43"' \ --requests POST Example response { "data": { ...