Tahdah API
  1. Endpoints
Tahdah API
  • Introduction
  • Webhooks
  • TrustGroups
    • About Trust Groups
    • Endpoints
      • List Trust Groups
        GET
      • Create a Trust Group
        PUT
      • Update Trust Group
        POST
      • List Trust Group Legal Entity Members
        GET
      • List Trust Group Candidate Members
        GET
      • Add Trust Group Member
        PUT
      • Remove Trust Group Member
        DELETE
    • Webhooks
      • Member Added
      • Member Updated
  • EventCredits
    • Webhooks
      • Event Credits Updated
    • Add Credits to Legal Entity
      PUT
  • Tracker
    • Webhooks
    • Get Candidate Trackers
      GET
    • Get Legal Entity Targets
      GET
  • LearningExperiences
    • EndPoints
      • Register Learners on a Learning Experience
      • Get Learning Experiences
      • Get Learning Experience
    • Webhooks
  • DigitalBadges
    • Issue Digital Badge
      POST
    • Get Badge Templates
      GET
  • LegalEntities
    • Endpoints
      • Legal Entity Details
      • Create Legal Entity
      • Connect a Person to a Legal Entity
    • Webhooks
  • Candidates
    • EndPoints
      • Create Candidate
      • Update a Candidate
      • Delete Candidate
      • Add/Remove tags to a candidate
    • Webhooks
  • Catalogues
    • Endpoints
    • Webhooks
      • Catalogue Entry Created
  • Schemas
    • Inbound
    • Events
      • EventTemplateCreditRequest
      • EventTemplateCredit
    • Catalogue
      • CatalogueEntry
    • TrustGroupMember
    • temp
    • LegalEntity
    • legalEntityIdentifier
    • Candidate
  1. Endpoints

List Trust Group Legal Entity Members

Developing
GET
/api/trustgroups/legalentities/{legalentityid}/legalentities
Provides a list of all legal entities that are members of any trust group owned by the given legal entity.
You can also supply a comma seperated list of trust group ids to search, although it will only include them in the results if the trust group is owned by the legal entity supplied in the route parameter legalentityid
By default the query will only return active and valid trust group memberships but you can also provide a comma seperated list of statuses that you would like to return.
If you only want the results for a specific legal entity member you can optionally supply either legalentityMemberId or accountNumber

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.tahdah.me/api/trustgroups/legalentities/1/legalentities?trustGroupIds=1,2,3&statuses=1,2&legalEntityMemberId=181692&accountNumber=11111111' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
[
    {
        "id": 1,
        "legalEntityId": 1,
        "accountNumber": "11111111",
        "name": "Joe",
        "status": 1,
        "connectedToLegalEntity": {
            "id": 137559,
            "accountNumber": "111111111",
            "name": "RLSSUK"
        },
        "trustGroupName": "Admin",
        "trustGroupId": 1,
        "dateJoined": "2024-09-09"
    },
    {
        "id": 1,
        "legalEntityId": 1,
        "accountNumber": "11111111",
        "name": "Joe",
        "status": 1,
        "connectedToLegalEntity": {
            "id": 137559,
            "accountNumber": "111111111",
            "name": "RLSSUK"
        },
        "trustGroupName": "Admin",
        "trustGroupId": 1,
        "dateJoined": "2024-11-25"
    },
    {
        "id": 1,
        "legalEntityId": 1,
        "accountNumber": "11111111",
        "name": "Joe",
        "status": 1,
        "connectedToLegalEntity": {
            "id": 137559,
            "accountNumber": "111111111",
            "name": "RLSSUK"
        },
        "trustGroupName": "Admin",
        "trustGroupId": 1,
        "dateJoined": "2024-04-10"
    }
]
🟠400Bad Request
Modified at 2025-06-19 12:33:23
Previous
Update Trust Group
Next
List Trust Group Candidate Members
Built with