Create API session
POST/sessions
Create an API session with a user's email and password (and optionally an app ID).
Headers
AuthorizationRequired
Bearer authentication of the form Bearer <token>, where token is your auth token
Request
Session params
emailstringRequired
User email
passwordstringRequired
User password
Example Request
curl -X POST https://api.parsel.app/sessions
-H "Authorization: Bearer <bearer_token>"
-H "Content-Type: application/json"
-d '{
"email": "john.doe@example.com",
"password": "password"
}'