Retrieve All Custom Reports

This request retrieves all custom reports for your account.

Endpoint

https://sandbox.bluesnap.com/services/2/report/dynamic-def

Request Content

No content is required in the request body.

Response Details

If successful, the response HTTP status code is 200 OK.
The response contains an array of customReport objects.

Examples

Request Examples

curl -v -X GET https://sandbox.bluesnap.com/services/2/report/dynamic-def \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \ 
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '

Response Examples

[
  {
    "id": 7637,
    "category": "TransactionCategory",
    "title": "Transaction Report 1",
    "info": "My custom transaction report",
    "columns": [
      {
        "name": "Merchant Sales (Auth Currency)"
      },
      {
        "name": "Auth. Currency"
      },
      {
        "name": "Merchant Transaction ID"
      },
      {
        "name": "Transaction Date"
      },
      {
        "name": "Transaction Type"
      }
    ]
  },
  {
    "id": 7641,
    "category": "PayoutCategory",
    "title": "My custom payout report",
    "columns": [
      {
        "name": "Merchant Transaction ID"
      },
      {
        "name": "Transaction Amount"
      },
      {
        "name": "Transaction Currency"
      },
      {
        "name": "Gross Payout Amount"
      },
      {
        "name": "Payment ID"
      }
    ]
  }
]