POST
/
batches
/
transactions
/
transfers
/
enrich
curl --request POST \
  --url https://east.sandbox.spade.com/batches/transactions/transfers/enrich \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "transactions": [
    {
      "userId": "user_id_123456789",
      "accountId": "account_id_123456789",
      "transactionId": "transaction_id_123456789",
      "transactionType": "ACH_WITHDRAWAL",
      "transactionTypeDescription": "ACH Withdrawal",
      "description": "AMAZON CORP SYF PAYMNT",
      "alternateDescription": "AMAZON CORP",
      "memo": "100 PUBLIC SQUARE CLEVELAND OH",
      "amount": "283.78",
      "currencyCode": "USD",
      "occurredAt": "2022-06-15 18:27:51Z",
      "direction": "CREDIT",
      "customAttributes": {
        "custom_attribute_1": "value_1",
        "custom_attribute_2": "value_2"
      }
    }
  ],
  "callbackUrl": "https://example.com/callback"
}'
{
  "batchId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "pending",
  "batchSize": 1,
  "submittedAt": "2024-11-21T20:07:20.213660Z"
}

Authorizations

X-Api-Key
string
header
required

Body

application/json

Response

200
application/json

Successful operation

The response is of type object.