POST
/
wallets
/
sign-message
curl --request POST \
  --url https://protocol-sandbox.lumx.io/v2/wallets/sign-message \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "message": "<string>"
}'
{
  "signedMessage": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <API_KEY>.

Body

application/json

The message that will be signed.

Response

201
application/json

Successfully signed a message.

The response is of type object.