Documentation Index

Fetch the complete documentation index at: https://www.bloxs.io/llms.txt

Use this file to discover all available pages before exploring further.

Get organisations filtered and paged

Prev Next
Post
/api/v1/relations/organisations/filter

Get a paged list of existing organisations, optionally filtered to the given parameters.

Get Organisations Filtered and Paged (POST)

Retrieves a paged, optionally filtered list of existing organisations using a JSON request body.

A developer calls this endpoint to search for organisations matching one or more criteria (for example by name, relation type, address, or date range), or to retrieve the full set of organisations in manageable pages when no filter is needed, such as for building a picker list or syncing records into another system.

This endpoint offers a broader set of filter criteria than its GET alternative (GET /api/v1/relations/organisations/filter), including filtering by archive date and last-modified date.


Request Fields

Field

Type

Required

Description

paging.pageSize

integer, 1 to 1000, nullable

Optional

The number of organisations to return per page. Defaults to 100 when not given.

paging.pageNumber

integer, 1 to 9999, nullable

Optional

The page number to retrieve. Defaults to 1 when not given.

sorting.columnName

string, nullable

Optional

The name of the field to sort the results by.

sorting.order

integer (enum), nullable

Optional

The sort direction. Allowed values: 0 = Ascending, 1 = Descending.

filter.name

string, nullable

Optional

Filters on the organisation's name.

filter.reference

string, nullable

Optional

Filters on the organisation's internal identifier (Reference/Code).

filter.externalIdentifier

string, nullable

Optional

Filters on the organisation's external API identifier.

filter.relationTypeName

string, nullable

Optional

Filters on the relation type assigned to the organisation.

filter.phoneNumber

string, nullable

Optional

Filters on the organisation's landline phone number.

filter.mobileNumber

string, nullable

Optional

Filters on the organisation's mobile phone number.

filter.primaryEmailAddresses

string, nullable

Optional

Filters on the organisation's primary email address(es).

filter.addressStreetAndHouseNumber

string, nullable

Optional

Filters on the combined street and house number of the organisation's address.

filter.addressPostalCode

string, nullable

Optional

Filters on the postal code of the organisation's address.

filter.addressCity

string, nullable

Optional

Filters on the city of the organisation's address.

filter.addressCountryISOCode

string, nullable

Optional

Filters on the ISO 3166-1 alpha-2 country code of the organisation's address.

filter.archiveDate.from

string (date-time), nullable

Optional

Inclusive lower bound for filtering on archive date, formatted as ISO 8601 (for example "2026-01-01T00:00:00Z"). If omitted, there is no lower bound.

filter.archiveDate.to

string (date-time), nullable

Optional

Inclusive upper bound for filtering on archive date, formatted as ISO 8601. If omitted, there is no upper bound.

filter.lastModified.from

string (date-time), nullable

Optional

Inclusive lower bound for filtering on the date the record was last modified, formatted as ISO 8601. If omitted, there is no lower bound.

filter.lastModified.to

string (date-time), nullable

Optional

Inclusive upper bound for filtering on the date the record was last modified, formatted as ISO 8601. If omitted, there is no upper bound.


Response Fields

Field

Type

Required

Description

paging.pageSize

integer, 1 to 1000, nullable

Optional

The page size used to produce this result set.

paging.pageNumber

integer, 1 to 9999, nullable

Optional

The page number returned in this result set.

sorting.columnName

string, nullable

Optional

The field the results are sorted by.

sorting.order

integer (enum), nullable

Optional

The sort direction applied. Allowed values: 0 = Ascending, 1 = Descending.

organisations

array of objects, nullable

Optional

The list of organisations matching the filter for this page. See sub-fields below.

organisations.name

string, nullable

Optional

The organisation's registered or trading name.

organisations.reference

string, nullable

Optional

The internal identifier (Reference/Code) of the organisation.

organisations.externalIdentifier

string, nullable

Optional

The external API identifier of the organisation, if any.

organisations.relationTypeName

string, nullable

Optional

The relation type assigned to the organisation.

organisations.phoneNumber

string, nullable

Optional

The organisation's landline phone number.

organisations.mobileNumber

string, nullable

Optional

The organisation's mobile phone number.

organisations.primaryEmailAddresses

string, nullable

Optional

The organisation's primary email address(es). Assumed formatted as a single semicolon-separated string, following the pattern confirmed for the Person search result; to be confirmed for Organisation specifically.

organisations.addressStreetAndHouseNumber

string, nullable

Optional

The combined street and house number of the organisation's address, for example "Bredaseweg 12".

organisations.addressPostalCode

string, nullable

Optional

The postal code of the organisation's address.

organisations.addressCity

string, nullable

Optional

The city of the organisation's address.

organisations.addressCountryISOCode

string, nullable

Optional

The ISO 3166-1 alpha-2 country code of the organisation's address.

organisations.archiveDate

string (date-time), nullable

Optional

The date and time from which the organisation is archived, formatted as ISO 8601. Null if not archived.

organisations.lastModified

string (date-time), nullable

Optional

The date and time the record was last modified, formatted as ISO 8601.

Security
Body parameters
Expand All
object
paging
object (PagingInfo)
pageSize
integer (int32) | null
Minimum1
Maximum1000
pageNumber
integer (int32) | null
Minimum1
Maximum9999
sorting
object (SortingInfo)
columnName
string | null
order
integer (int32)

Ascending = 0 Descending = 1

filter
object (OrganisationSearchRequestFilter)
name
string | null
reference
string | null
externalIdentifier
string | null
relationTypeName
string | null
phoneNumber
string | null
mobileNumber
string | null
primaryEmailAddresses
string | null
addressStreetAndHouseNumber
string | null
addressPostalCode
string | null
addressCity
string | null
addressCountryISOCode
string | null
archiveDate
object (CompareFilterModelDateTime)
from
string (date-time) | null
to
string (date-time) | null
lastModified
object (CompareFilterModelDateTime)
from
string (date-time) | null
to
string (date-time) | null
Responses
200

OK

Expand All
object
paging
object (PagingInfo)
pageSize
integer (int32) | null
Minimum1
Maximum1000
pageNumber
integer (int32) | null
Minimum1
Maximum9999
sorting
object (SortingInfo)
columnName
string | null
order
integer (int32)

Ascending = 0 Descending = 1

organisations
Array of object (OrganisationSearchResultFilter) | null
object
name
string | null
reference
string | null
externalIdentifier
string | null
relationTypeName
string | null
phoneNumber
string | null
mobileNumber
string | null
primaryEmailAddresses
string | null
addressStreetAndHouseNumber
string | null
addressPostalCode
string | null
addressCity
string | null
addressCountryISOCode
string | null
archiveDate
string (date-time) | null
lastModified
string (date-time) | null