Returns authentication token on verifying credentials. This auth_token should be added to header of every other api request.
Param name | Description |
---|---|
email required |
Email address of user Value: Must be a String |
password required |
Password of user Value: Must be a String |
organisation_key optional |
Organisation Key of a child organisation of an OEM account. This allows an OEM admin to login as admin of that account Value: Must be a String |
Request: curl -X POST -H "Content-Type:application/json" -d '{"email":"bob@acme.com","password":"foobar"}' 'https://api.datonis.io/api_sign_in' Response: { "success": true, "auth_token": "wOzV_s3ZIheqrkCcKHTPxQ", "email": "bob@acme.com", "role": "admin", "time_zone": "Mumbai", "organisation": { "name": null, "organisation_key": "f58155467d2ba784516a59ade6t6715fde567131", "license": { "license_key": "61572fd9137fd5c95d33454tf98e662762116812" } } }