Retrieves a collection of members within the current client code. OData can be used to filter, order and page through the list.
OData Support: $expand, $filter, $orderby, $skip, $top
Query parameters
-
Instructs the API to include a child object or collection in the response. If omitted, ALL child objects and collections are returned. Pass
$expand=(empty) to return only the root object. See the OData Support section of the introduction. -
Filters data on properties related to the resource. Only Logical, Arithmetic and Grouping operators are currently supported. No Canonical functions are currently supported (contains, endswith, startswith, etc.).
-
Orders the objects returned in the response by a property related to the resource.
-
Skips the specified number of records before returning the results. $orderby must be specified for $skip to be used.
-
Returns the specified top number of records for the given query. $orderby must be specified for $top to be used. The maximum number of objects returned from any resource is 1,000. If not passed, $top=1000 is assumed.
Maximum value is
1000.
curl \
--request GET 'https://api.globalwolfweb.com/wolfconnect/members/v1' \
--header "Authorization: $API_KEY"
[
{
"Id": "string",
"CreatedTimestamp": "2026-05-04T09:42:00Z",
"ModifiedTimestamp": "2026-05-04T09:42:00Z",
"MemberChangedTimestamp": "2026-05-04T09:42:00Z",
"FirstName": "string",
"MiddleName": "string",
"LastName": "string",
"Number": "string",
"Title": "string",
"BirthDate": "2026-05-04",
"InactiveDate": "2026-05-04",
"OfficeId": "string",
"Office": {
"Id": "string",
"Name": "string",
"LWCompanyCode": "string"
},
"MLSBoards": [
{
"MLSId": "string",
"MLSAreaId": "string"
}
],
"Addresses": [
{
"City": "string",
"Confidential": true,
"Country": "string",
"CountryCode": "string",
"Line1": "string",
"Line2": "string",
"Line3": "string",
"Line4": "string",
"PostalCode": "string",
"Province": "string",
"ProvinceCode": "string",
"Type": "string",
"TypeCode": "string"
}
],
"EmailAddresses": [
{
"Address": "string",
"Confidential": true,
"Primary": true,
"Type": "string",
"TypeCode": "string"
}
],
"PhoneNumbers": [
{
"Confidential": true,
"Extension": "string",
"Number": "string",
"Primary": true,
"Type": "string",
"TypeCode": "string"
}
],
"Websites": [
{
"Type": "string",
"TypeCode": "string",
"Url": "string"
}
],
"PublicProfiles": [
{
"CreatedTimestamp": "2026-05-04T09:42:00Z",
"ModifiedTimestamp": "2026-05-04T09:42:00Z",
"Name": "string",
"FirstName": "string",
"MiddleName": "string",
"LastName": "string",
"Title": "string",
"Addresses": [
{
"City": "string",
"Confidential": true,
"Country": "string",
"CountryCode": "string",
"Line1": "string",
"Line2": "string",
"Line3": "string",
"Line4": "string",
"PostalCode": "string",
"Province": "string",
"ProvinceCode": "string",
"Type": "string",
"TypeCode": "string"
}
],
"EmailAddresses": [
{
"Address": "string",
"Confidential": true,
"Primary": true,
"Type": "string",
"TypeCode": "string"
}
],
"PhoneNumbers": [
{
"Confidential": true,
"Extension": "string",
"Number": "string",
"Primary": true,
"Type": "string",
"TypeCode": "string"
}
],
"Websites": [
{
"Type": "string",
"TypeCode": "string",
"Url": "string"
}
]
}
],
"MemberTypeId": "string",
"Suffix": "string",
"Nickname": "string",
"LegalName": "string",
"Username": "string",
"LoadingDocsUsername": "string",
"GenderCode": "string",
"AnniversaryDate": "2026-05-04",
"StartDate": "2026-05-04",
"CommencementDate": "2026-05-04",
"MovingWolfEnabled": true,
"Integrations": [
{
"PartnerCode": "string",
"Id": "string"
}
]
}
]