Retrieves all crosstable entries, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of crosstable entries.
abstract_crosstable| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| db_table_id_1 |
Identifier of the database table that belongs to (first side of the link). |
globally unique identifier | |
| id_in_table_1 |
Primary key of the linked record in the table identified by (first side of the link). |
globally unique identifier | |
| db_table_id_2 |
Identifier of the database table that belongs to (second side of the link). |
globally unique identifier | |
| id_in_table_2 |
Primary key of the linked record in the table identified by (second side of the link). |
globally unique identifier | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "e8b425b4-6a0c-421e-920e-9631bacd6876",
"db_table_id_1": "b446cdf3-9194-4f50-98b1-f62598c76b8a",
"id_in_table_1": "79945a1c-ded3-45a8-86a4-426e4238ea74",
"db_table_id_2": "7ce8095e-cc06-4fd7-9acb-bdc2b80f40ee",
"id_in_table_2": "f09a90d5-42c0-468d-9665-5a2dc6a0f765",
"modified_dateutc": "2026-09-16T09:23:00.9389044+00:00"
}
application/xml, text/xml
Sample:
<abstract_crosstable xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_table_id_1>b446cdf3-9194-4f50-98b1-f62598c76b8a</db_table_id_1> <db_table_id_2>7ce8095e-cc06-4fd7-9acb-bdc2b80f40ee</db_table_id_2> <id>e8b425b4-6a0c-421e-920e-9631bacd6876</id> <id_in_table_1>79945a1c-ded3-45a8-86a4-426e4238ea74</id_in_table_1> <id_in_table_2>f09a90d5-42c0-468d-9665-5a2dc6a0f765</id_in_table_2> <modified_dateutc>2026-09-16T09:23:00.938Z</modified_dateutc> </abstract_crosstable>