Retrieve Details of an XA Transaction
/admin/v1/xa-transaction/{id}
Request
- application/json
-
id(required): string
Global transaction ID (GTRID) of the XA transaction. This is a unique ID which you can use to track the transaction.
Response
- application/json
200 Response
object
-
begin(required):
integer(int64)
The time at which the XA transaction began.
-
branches:
array branches
-
end(required):
integer(int64)
The time at whicch the XA transaction reached a final state.
-
gtrid(required):
string
Global transaction ID (GTRID) of the XA transaction.
-
hostname(required):
string
ID of the MicroTx coordinator instance where the XA transaction begins.
-
status(required):
string
Allowed Values:
[ "Created", "Preparing", "Prepared", "Committing", "Committed", "Rollingback", "Rolledback", "MarkedRollback", "HeuristicallyCompleted" ]
-
timeout(required):
integer(int32)
XA transaction timeout value in milliseconds.
-
userId(required):
string
ID of the user who initiated the XA transaction.
object
-
branchId(required):
string
XA transaction branch identifier
-
status(required):
string
Allowed Values:
[ "Enlisted", "Prepared", "Committed", "Rolledback", "HeuristicallyCompleted", "HeuristicallyRolledback" ]
-
url(required):
string
XA transaction branch call back url
400 Response
401 Response
Examples
cURL Command
The following example shows how to view details of an XA transaction by submitting a GET
request on the REST resource using cURL. For more information about cURL, see Use cURL.
Enter the command on a single line. Line breaks are used in this example for readability.
curl -X GET -H "Authorization:Bearer $OTMM_COOKIE" https://192.0.2.1:8080/admin/v1/xa-transaction/e6808684-5d8c-4ad0-90d2-345a225d0f02
-
OTMM_COOKIE
is the name of the variable in which you stored the authentication cookie earlier. For information about retrieving the authentication cookie and storing it in a variable, see Authenticate. -
192.0.2.1:8080
is an example REST endpoint URL. Change this value to the REST endpoint URL to access the Istio ingress gateway in your environment. For information about finding out REST endpoint URL for your site, see Send Requests. -
e6808684-5d8c-4ad0-90d2-345a225d0f02
is an example value for the global transaction ID (GTRID). Replace this value with the GTRID of an XA transaction in your environment.
Example of the Response Body
The following example shows the contents of the response body in JSON format. Example values have been truncated with ... to improve readability. When you view the response in your environment, you'll see the entire value.
{
"begin": 1656909341649,
"encryptedEntry": "Rw/egNz7...",
"end": 0,
"gtrid": "e6808684-5d8c-4ad0-90d2-345a225d0f02",
"hostname": "otmm-tcs-6499...",
"keyVersion": "1",
"nonce": "HUnUlVyEhiFjJSU/",
"status": "Created",
"thumbprint": "Bearer eyJhb....",
"timeout": 600000,
"userId": "43225c1...",
"branches": [
{
"branchId": "otmm-tcs-0-0001",
"url": "http://dept1:9091/accounts",
"resourceManagerId": "DEP1-NODE-1D98-479...",
"status": "Committed",
"returnCode": "XA_OK",
"llrBranch": false,
"encryptedEntry": "",
"nonce": "",
"keyVersion": "",
"thumbprint": ""
}
]
}