Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Path:/rest/bc/app/{id}
Parameters:
  1. id (int value, required) - Id of the application to get.
Example URI:/rest/databc/agentsapp/-1133255037
Example output:


Code Block
{
  "id": -1133255037,
  "name": "Calculator",
  "applicationDefinitionId": -1866447452
}


...

Path:/rest/bc/app/{id}/btx
Parameters:
  1. id (int value, required) - Id of the application to get.
Example URI:/rest/databc/agentsapp/-1133255037/btx
Example output:


Code Block
[
  {
    "id": 463443944,
    "businessTransactionDefinitionId": 58868659,
    "name": "actionPerformMethod"
  }
]


4. Get detailed information of a business transaction and application 
Anchor
bcdetailbtx
bcdetailbtx

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
bc/
agents
app/-1133255037/btx/463443944
Example output:


Code Block
{
  "id": 463443944,
  "businessTransactionDefinitionId": 58868659,
  "name": "actionPerformMethod"
}