GET
/
transaction
/
{transactionId}
/
fee-details
curl --request GET \
  --url https://api.joinslash.com/transaction/{transactionId}/fee-details \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "dateCharged": "<string>",
      "feeAmountCents": 123,
      "feeType": "<string>",
      "accountId": "<string>",
      "originalTransaction": {
        "id": "<string>",
        "date": "<string>",
        "description": "<string>",
        "merchantDescription": "<string>",
        "amountCents": 123,
        "status": "pending",
        "detailedStatus": "pending",
        "accountId": "<string>",
        "accountSubtype": "cash",
        "cardId": "<string>",
        "originalCurrency": {
          "code": "<string>",
          "amountCents": 123,
          "conversionRate": 123
        },
        "orderId": "<string>",
        "authorizedAt": "<string>",
        "declineReason": "<string>"
      },
      "card": {
        "id": "<string>",
        "accountId": "<string>",
        "last4": "<string>",
        "name": "<string>",
        "expiryMonth": "<string>",
        "expiryYear": "<string>",
        "status": "active",
        "isPhysical": true,
        "pan": "<string>",
        "cvv": "<string>",
        "cardGroupId": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "spendingConstraint": {
          "merchantCategoryRule": {
            "merchantCategories": [
              "<string>"
            ],
            "restriction": "allowlist"
          },
          "merchantRule": {
            "merchants": [
              "<string>"
            ],
            "restriction": "allowlist"
          },
          "spendingRule": {
            "utilizationLimit": {
              "timezone": "<string>",
              "limitAmount": {
                "amountCents": 123
              },
              "preset": "daily",
              "startDate": "<string>"
            },
            "utilizationLimitV2": [
              {
                "timezone": "<string>",
                "limitAmount": {
                  "amountCents": 123
                },
                "preset": "daily",
                "startDate": "<string>"
              }
            ],
            "transactionSizeLimit": {
              "minimum": {
                "amountCents": 123
              },
              "maximum": {
                "amountCents": 123
              }
            }
          }
        },
        "avsAddress": {
          "addressLine1": "<string>",
          "addressLine2": "<string>",
          "city": "<string>",
          "state": "<string>",
          "zip": "<string>",
          "country": "<string>"
        },
        "userData": {}
      }
    }
  ]
}

Authorizations

X-API-Key
string
headerrequired

Authentication from public API requests

Path Parameters

transactionId
string
required

Response

200 - application/json
items
object[]
required