ListMembersResponse
Possible values: [OK, FAIL, ERROR]
ResultCode enum name (e.g. SUCCESS, NOT_FOUND, RATE_LIMIT_EXCEEDED)
Error message, present when status is FAIL or ERROR.
In rare, specific cases, additional error messages.
data object
members object[]
The organization's members, one entry per member.
account object
The member's public account profile: identity, name, email, images, and primary phone.
Unique identifier of the member's Gigwell account.
Member's first name.
Member's last name.
Member's email address, used as the account login and primary contact.
Read-only display name for the member, composed from first and last name.
URL of the member's small avatar image; absent when no avatar is set.
URL of the member's full-size profile image; absent when none is set.
primaryPhone object
The member's primary phone number as an object (number, type, and primary flag); absent when no phone is on file.
Whether the member's Gigwell account is active.
membershipEntry object
The member's membership record within the queried organization — roles, active state, and membership title; scoped to this organization only, not the account's memberships elsewhere.
The member's roles within this organization.
Possible values: [agent, owner, assistant, reporting, logistician]
{
"status": "OK",
"code": "string",
"message": "string",
"messages": [
"string"
],
"data": {
"members": [
{
"account": {
"id": "string",
"firstName": "string",
"lastName": "string",
"email": "string",
"displayTitle": "string",
"avatarImageUrl": "string",
"profileImageUrl": "string",
"primaryPhone": {
"primary": true,
"type": "string",
"number": "string"
},
"active": true
},
"membershipEntry": {
"identityId": "string",
"roles": [
"agent"
],
"active": true,
"title": "string"
}
}
]
},
"requestId": "string"
}