Authentication
Use these APIs to create your user account and get bearer token

Create User
post
Creates a New User
Body
usernamestringOptionalExample:
gandalf_the_greypasswordstringOptionalExample:
i_love_hobbitsfirst_namestringOptionalExample:
Gandalflast_namestringOptionalExample:
GreyemailstringOptionalExample:
[email protected]mobile_numberintegerOptionalExample:
9999999999profilestring · binaryOptional
Responses
200
Successful response
application/json
successstringOptionalExample:
User created successfully.400
unexpected error
application/json
post
/api/v1/user/create/Get Auth. Token
post
Generates an access token for your account.
You'll need the access token for subsequent APIs
Body
usernamestringOptionalExample:
gandalf_the_greypasswordstringOptionalExample:
i_love_hobbitsResponses
200
Successful response
application/json
refreshstringOptionalExample:
xxxx-xxxxxxxxxx-access-token-xxxxxxxxxxx-xxxxxxxxxxxaccessstringOptionalExample:
xxxx-xxxxxxxxxx-access-token-xxxxxxxxxxx-xxxxxxxxxxx401
unexpected error
application/json
post
/api/token/Get User
get
API to get your user account details.
Use your access_token as Bearer Auth Token to get these details
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200
Successful response
application/json
idstringOptionalExample:
xxxxxxxxxxusernamestringOptionalExample:
gandalf_the_greyfirst_namestringOptionalExample:
Gandalflast_namestringOptionalExample:
GreyprofilestringOptionalExample:
nullprofile_urlstringOptionalExample:
nullemailstringOptionalExample:
[email protected]mobile_numberstringOptionalExample:
9999999999passwordstringOptionalExample:
<encrypted_password>created_onstringOptionalExample:
2024-08-28T19:58:19.585432ZcreditsintegerOptionalExample:
20401
unexpected error
application/json
get
/api/v1/user/get/Last updated