Skip to main content
POST
/
v5
/
banks
/
accounts
Save bank accounts
curl --request POST \
  --url https://sandbox.hurdlr.com/rest/v5/banks/accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: */*' \
  --data '
{
  "accounts": [
    {
      "id": 123,
      "status": "ACTIVE",
      "apiAccountId": "<string>",
      "apiAccountName": "Citi Premier® Card",
      "apiAccountNo": "<string>",
      "apiInstitutionId": "<string>",
      "apiAccountType": "CREDIT",
      "glAccountId": 123,
      "autoClassify": "OFF",
      "defaultClientId": 123,
      "defaultBusinessId": 123,
      "tranStartDate": "2023-11-07T05:31:56Z",
      "billingCycleStartDay": 16,
      "scheduleClosings": true,
      "syncTransactions": true,
      "duplicateBankAccountIds": [
        123
      ]
    }
  ]
}
'
{
  "response": {},
  "status": "SUCCESS"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

*/*

accounts object

accounts
object[]

Response

200 - application/json

Successful operation

response
object
status
enum<string>
Available options:
SUCCESS,
FAILURE