This request retrieves the details of a custom report by id
.
Endpoint
https://sandbox.bluesnap.com/services/2/report/dynamic-def/{report ID}
Request Content
No content is required in the request body. Enter the report ID in the request URL:
services/2/report/dynamic-def/{report ID}
For example:
services/2/report/dynamic-def/12141
Response Details
If successful, the response HTTP status code is 200 OK.
The response contains the retrieved customReport object.
Examples
Request Examples
curl -v -X GET https://sandbox.bluesnap.com/services/2/report/dynamic-def/7637 \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ='
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"
}
]
}