POST
/
v1
/
batch
/
intrabank
Create an Intrabank Batch
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
data
object[]
Example:
[
{
"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"
}
]

Response

201 - application/json

Create an Intrabank Batch

batchId
string
Example:

"bch-eabf1eb3-70a6-4ce0-ac01-3ffca4e6f86f"

completedAt
string
Example:

""

createdAt
string
Example:

"2023-11-20T08:34:46Z"

failedCount
number
Example:

0

modifiedAt
string
Example:

"2023-11-20T08:34:46Z"

status
string
Example:

"submitted"

successCount
number
Example:

0

totalCount
number
Example:

2

transferType
string
Example:

"intrabank"