Retrieve member
GETapi.blutui.com/v1/agencies/{username}/members/{id}
Retrieve a team member in your agency.
Path parameters
idstringrequired
The ID of the member to retrieve.
Response
import Blutui from 'blutui'
const blutui = new Blutui('ey....')
blutui.agency('studio').members.get('99bc147e-3ad5-4b09-a2e2-b21bd680ad05')
{
"id": "99bc147e-3ad5-4b09-a2e2-b21bd680ad05",
"object": "member",
"name": "Tony Stark",
"avatar": null,
"email": "tony@stark.com",
"two_factor_enabled": false,
"has_full_access": true,
"role": {
"id": 1,
"object": "role",
"name": "Owner",
"description": null,
"is_super": true,
"created_at": 1690330767,
"updated_at": 1690330767
},
"created_at": 1690330767,
"updated_at": 1720481455
}
idstring
The unique identifier for this team member.
objectstring
This will always contain member
for this endpoint.
namestring
The team member's name.
avatarstring | null
The avatar URL for the team member.
emailstring
The email address of the team member.
two_factor_enabledboolean
Whether the team member has enabled two factor authentication.
has_full_accessboolean
Whether the team member has access to all projects in the agency.
roleobject
The team member's role in the agency.
created_attimestamp
The member's created at timestamp.
updated_attimestamp
The member's updated at timestamp.
Last updated on