Gets the transaction extra field facts. Run in API Explorer

GET /api/TransactionExtraFieldFacts

This request should be used to retrieve information that is put on the custom fields (extra fields) for transactions for the specified engagement(s). The columns provided here will be the name of the extra field that is configured and it will be tied to the transactions using the Transaction_Key column.

Query parameters

  • engagement string

    Short Guid of desired engagement Ex - ESXmkya-nEeWMX-7_3fSxA or Guid of desired engagement Ex - 45c31339-96d0-4262-b051-c00f392685c1

Responses

  • 200 application/json
  • 404 application/json

    Not Found

  • 400 application/json

    Bad Request

  • 500 application/json

    Internal Server Error

GET /api/TransactionExtraFieldFacts
curl \
 --request GET 'https://analyticsapi.adra.com/balancer/api/TransactionExtraFieldFacts' \
 --user "username:password"
Response examples (200)
[
  {
    "Value": "1.65",
    "ColumnName": "Varience",
    "Transaction_Key": 1234
  }
]