POST
/
v2
/
auth
/
verify
Verify a SIWE message and return a JWT for API authentication
curl --request POST \
  --url https://b2b-api.dev-riseworks.io/v2/auth/verify \
  --header 'Content-Type: application/json' \
  --data '{
  "message": "<string>",
  "sig": "<string>",
  "nonce": "<string>"
}'
{
  "success": true,
  "data": {
    "jwt": "<string>"
  }
}

Body

application/json

Response

200
application/json

Default Response

The response is of type object.