Skip to end of banner
Go to start of banner

Business Transaction Service

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

Service
Description
Get all business context instancesThis service returns information of all existing business context instances
Get one business context instanceThis service returns information on existing business context instances (application)
Get all business transactions of an applicationThis service returns all business transactions of an application
Get detailed information of a business transaction and applicationThis 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:
  1. 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:
  1. 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"
  }
]

4. Get detailed information of a business transaction and application 

Path:/rest/bc/app/{id}/btx/{businessTxId}
Parameters:
  1. id (int value, required) - Id of the application to get.
  2. businessTxId (int value, required) - Id of the business transaction to get.

Example URI:/rest/data/agents/-1133255037/btx/463443944
Example output:
{
  "id": 463443944,
  "businessTransactionDefinitionId": 58868659,
  "name": "actionPerformMethod"
}


  • No labels