POST
/
v1
/
batch
/
intrabank
curl --request POST \
  --url https://qa-api.sbx.solidfi.com/v1/batch/intrabank \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "data": [
    {
      "accountId": "{{accountId}}",
      "amount": "25.00",
      "api": "send",
      "contactId": "{{contactId}}",
      "description": "Funding",
      "sequence": "1",
      "title": "Batch intrabank 1"
    },
    {
      "accountId": "{{accountId}}",
      "amount": "25.00",
      "api": "receive",
      "contactId": "{{contactId}}",
      "description": "Pull",
      "sequence": "2",
      "title": "Batch intrabank 2"
    }
  ]
}'
{
  "batchId": "bch-eabf1eb3-70a6-4ce0-ac01-3ffca4e6f86f",
  "completedAt": "",
  "createdAt": "2023-11-20T08:34:46Z",
  "failedCount": 0,
  "modifiedAt": "2023-11-20T08:34:46Z",
  "status": "submitted",
  "successCount": 0,
  "totalCount": 2,
  "transferType": "intrabank"
}

Authorizations

Authorization
string
header
required

Headers

sd-api-key
string
Example:

"{{sd-api-key}}"

sd-person-id
string
Example:

"{{sd-person-id}}"

Body

application/json

Response

201 - application/json
Create an Intrabank Batch

The response is of type object.