Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://atoms-api.smallest.ai/api/v1/user \
--header 'Authorization: Bearer <token>'{
"status": true,
"data": {
"_id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"userEmail": "<string>",
"authProvider": "<string>",
"isEmailVerified": true,
"organizationId": "<string>"
}
}curl --request GET \
--url https://atoms-api.smallest.ai/api/v1/user \
--header 'Authorization: Bearer <token>'{
"status": true,
"data": {
"_id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"userEmail": "<string>",
"authProvider": "<string>",
"isEmailVerified": true,
"organizationId": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.