Skip to end of metadata
Go to start of metadata
You are viewing an old version of this content. View the current version.
Compare with Current
View Version History
« Previous
Version 6
Next »
Overview
1. Get all business context instances
Path: | /rest/bc/app |
---|
Example URI: | /rest/bc/app |
---|
Example output: |
[
{
"id": -1133255037,
"name": "Calculator",
"applicationDefinitionId": -1866447452
}
]
|
---|
2. Get one business context instance
Path: | /rest/bc/app/{id} |
---|
Parameters: | - id (int value, required) - Id of the application to get.
|
---|
Example URI: | /rest//-1133255037 |
---|
Example output: |
{
"id": -1133255037,
"name": "Calculator",
"applicationDefinitionId": -1866447452
}
|
---|
3. Get all business transactions of an application
Path: | /rest/bc/app/{id}/btx |
---|
Parameters: | - id (int value, required) - Id of the application to get.
|
---|
Example URI: | /rest//-1133255037/btx |
---|
Example output: |
[
{
"id": 463443944,
"businessTransactionDefinitionId": 58868659,
"name": "actionPerformMethod"
}
]
|
---|
Path: | /rest/bc/app/{id}/btx/{businessTxId} |
---|
Parameters: | - id (int value, required) - Id of the application to get.
businessTxId (int value, required) - Id of the business transaction to get.
|
---|
Example URI: | /rest//-1133255037/btx/463443944 |
---|
Example output: |
{
"id": 463443944,
"businessTransactionDefinitionId": 58868659,
"name": "actionPerformMethod"
}
|
---|