Welcome to the new Tahua Help Center!
For the complete documentation index, see llms.txt. This page is also available as Markdown.

Registration Entities

Registration entities represent applicant organisations or individuals registered in the system.

GET /api/v2/registration_entities

Returns a list of registration entities.

Query Parameters

Parameter
Type
Description

limit

integer

Results per page (default: 50, max: 50)

gt

integer

Return records with ID greater than this value

lt

integer

Return records with ID less than this value

Response Properties

Property
Type
Description

id

integer

Unique identifier

created_at

datetime

When the record was created

updated_at

datetime

When the record was last updated

name

string

Entity name

registration_type.id

integer

Registration type ID

registration_type.name

string

Registration type name

Example Request

curl -H "Authorization: Bearer YOUR_TOKEN" \
  "https://your-org.tahua.io/api/v2/registration_entities"

Example Response


GET /api/v2/registration_entities/:id

Returns a single registration entity with its associated users.

Additional Response Properties

All properties from the list endpoint, plus:

Property
Type
Description

users[].id

integer

User ID

users[].email

string

User email address

users[].first_name

string

User first name

users[].last_name

string

User last name

Example Request

Example Response

Last updated

Was this helpful?