GET
/
user
curl --request GET \
  --url https://lab.trustos.telefonicatech.com/id/v2/user \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "message": "User found",
  "data": {
    "id": "did:user:<id>",
    "address": "0x1234"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Successful user info retrieval.

The response is of type object.