Skip to main content

Authenticate Moibit User

Description:

This endpoint will authenticate the user to whether he/she belongs to moibit.

Request

https://api.moinet.io/moibit/v1/user/auth

Request type - POST

Headers#

Header KeyHeader ValueOptional
nonce<developer_nonce> No
signature<signature gotten after signing developer_nonce by developer> No

Response Array#

FieldDescription
addressThe public id/address the developer/user identified in moibit.
entropyThe unique cryptographic information for a developer/user used during encryption.

Sample Response#

{
"meta": {
"code": 200,
"requestId": "e1be3582-0eaf-4060-9a0a-8cffe5ed0a8c",
"message": "Authentication successful"
},
"data": {
"address": "0xB8b9fE16E862042b76423B6a4fF5D1557B306adD",
"entropy": "99973c93206897c2a81d41705fd8f0177a01a3e75676c675ac5b859e5530e3de"
}
}