Skip to main content
GET
/
api
/
v1
/
team
List Team
curl --request GET \
  --url https://api.hevn.finance/api/v1/team \
  --header 'Authorization: Bearer <token>'
{
  "members": [
    {
      "userId": "<string>",
      "email": "<string>",
      "role": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "baseSmartWallet": "<string>",
      "privyAddress": "<string>",
      "lastLogin": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
default:Bearer <token>
required

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

Response

200 - application/json

Successful Response

List of team members.

members
TeamMemberResponse · object[]
required