Skip to main content

Authenticate

Endpoint

POST https://flows.generio.ai/authentication

Request Body

Schema

{
"email": "string",
"password": "string"
}
  • email (string): Email address of the user
  • password (string): Password of the user

Code Examples

Copy and run these examples in your terminal or code editor.Make sure to replace YOUR_TOKEN with your actual authentication token.

curl -X POST "https://flows.generio.ai/authentication" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"email": "string",
"password": "string"
}'