This API endpoint retrieves the details of a specific organisation by its unique ID.
Request
GET/items/organisations/:id
:id with the organisation’s unique identifier (UUID).Authorization: Bearer token for API authentication (required)Example Request:
curl --request GET \\
--url <http://aerodox.application.trustion-validate.com/items/organisations/a1e4977f-71e6-4f2e-8120-67eb82e73f1f> \\
--header 'Authorization: Bearer <token>' \\
Response Fields
data (object): Organisation details:
id (string): Unique ID of the organisation.user_created (string): ID of the user who created the organisation record.date_created (string, ISO 8601): Timestamp when the organisation record was created.user_updated (string): ID of the user who last updated the organisation record.date_updated (string, ISO 8601): Timestamp of the last update to the organisation record.company_name (string): Name of the organisation.duns_number (string or null): D-U-N-S Number of the organisation (if available).address (string): Street address of the organisation.zipcode (string): Postal code of the organisation’s location.country (string): Country where the organisation is located.city (string): City where the organisation is located.company_size (string): Size of the company (e.g., number of employees).payment_method (string): Preferred payment method for the organisation.Example response:
{
"data": {
"id": "a1e4977f-71e6-4f2e-8120-67eb82e73f1f",
"user_created": "4b77b701-f796-473f-aa3e-7e8604678acf",
"date_created": "2025-03-10T09:11:18.560Z",
"user_updated": "4b77b701-f796-473f-aa3e-7e8604678acf",
"date_updated": "2025-06-04T19:34:24.202Z",
"company_name": "Trustion Validate",
"duns_number": null,
"address": "Europalaan 400",
"zipcode": "3526 KS",
"country": "The Netherlands",
"city": "Utrecht",
"company_size": "4",
"payment_method": "Creditcard"
}
}