Skip to main content
GET
List Published Customer Profiles

List Published Customer Profiles

Returns customer profiles that have opted in to the member directory (ProfileIsPublic: true). Supports free-text search, tag filtering, and sort ordering. The portal uses this to render the member directory listing and to power the customer tag input autocomplete.

Authentication

Requires a valid customer bearer token.

Query Parameters

query
string
Free-text search string matched against the customer’s name, company, position, bio, and tags. Pass an empty string to return all published profiles.
tag
string
Filter results to customers whose ProfileTagsList contains this exact tag value. Pass an empty string to skip tag filtering.
order
number
Sort order for results. Default: 1 (alphabetical by name). Check the directory meta endpoint for available order options.
_shape
string
Comma-separated list of field paths to include in the response. When provided, only the specified fields are returned — useful for reducing payload size. Supports nested paths using dot notation. Example: _shape=Records.FullName,Records.CompanyName,Records.AvatarUrl,TotalItems.

Response

Returns an ApiListResult<Coworker> — a paginated wrapper containing an array of published customer profiles.

Pagination

Records
Coworker[]
Array of published customer profiles for the current page.
CurrentPage
number
Current page number (1-based).
TotalItems
number
Total number of matching published profiles.
TotalPages
number
Total number of pages.
HasNextPage
boolean
Whether there are more pages after the current one.
HasPreviousPage
boolean
Whether there are pages before the current one.

Coworker Fields (within Records[])

Records[].Id
number
Unique numeric identifier for the customer profile. Use as coworkerId in GET /api/public/coworkers/published/{coworkerId}.
Records[].UniqueId
string
Globally unique identifier for the profile.
Records[].FullName
string
Customer’s display name.
Records[].GuessedFirstName
string
First name extracted from FullName for use in personalised UI text.
Records[].AvatarUrl
string
URL to the customer’s avatar image.
Records[].Position
string | null
Job title.
Records[].CompanyName
string
Company name.
Records[].BusinessArea
string | null
Industry or area of work.
Records[].ProfileSummary
string | null
Professional bio. May contain Markdown.
Records[].ProfileWebsite
string | null
Personal or company website URL.
Records[].ProfileTagsList
array
Array of tag strings from the customer’s profile.
Records[].InvoicingSpaceName
string
Display name of the location this customer is invoiced at.

Social Media (within Records[])

Example Response

TypeScript Integration

Usage in Portal

Error Responses

401 Unauthorized
error
The bearer token is missing, expired, or invalid.