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 4
Next »
Overview
| |
---|
Get all business context instances | This service returns information of all existing business context instances |
Get one business context instance | This service returns information on existing business context instances (application) |
Get all business transactions of an application | This service returns all business transactions of an application |
Get detailed information of a business transaction and application | This service returns detailed information of a business transaction and application |
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/data/agents/-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/data/agents/-1133255037/btx |
---|
Example output: |
[
{
"id": 463443944,
"businessTransactionDefinitionId": 58868659,
"name": "actionPerformMethod"
}
]
|
---|