Delete Custom Report

Definition

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


This request allows you to delete an existing custom report.

Request Content

Enter the report's ID in the request URL, as follows:

services/2/report/dynamic-def/{report ID}

For example: services/2/report/dynamic-def/12141

No content is required in the request body.

Response Details

If successful, the response HTTP status code is 200 OK.
The response contains the deleted customReport object.


Examples

Request Examples

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

Response Examples

{
  "id": 7633,
  "category": "TransactionCategory",
  "title": "myReport",
  "columns": [
    {
      "name": "Invoice ID"
    },
    {
      "name": "Original Invoice ID"
    },
    {
      "name": "Merchant Transaction ID"
    }
  ]
}