Retrieves the crosstable entry with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The crosstable entry id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the crosstable entry, or 404 Not Found if it doesn't exist.
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": "a1da457c-c745-414b-b6e0-f5700403ce31",
"db_table_id_1": "c9dfcd50-d6e5-4097-a886-dcbf9ba46b65",
"id_in_table_1": "f39f4797-e359-4741-9fbe-a6191a54f5fd",
"db_table_id_2": "5782fc92-73a1-4eb7-b6ec-f7d0af46f5b4",
"id_in_table_2": "7575ff4e-dadc-4caf-8efe-409275f0c79e",
"modified_dateutc": "2026-09-16T09:24:24.6715978+00:00"
}
application/xml, text/xml
Sample:
<abstract_crosstable xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <db_table_id_1>c9dfcd50-d6e5-4097-a886-dcbf9ba46b65</db_table_id_1> <db_table_id_2>5782fc92-73a1-4eb7-b6ec-f7d0af46f5b4</db_table_id_2> <id>a1da457c-c745-414b-b6e0-f5700403ce31</id> <id_in_table_1>f39f4797-e359-4741-9fbe-a6191a54f5fd</id_in_table_1> <id_in_table_2>7575ff4e-dadc-4caf-8efe-409275f0c79e</id_in_table_2> <modified_dateutc>2026-09-16T09:24:24.671Z</modified_dateutc> </abstract_crosstable>