curl --request POST \
--url https://sandbox.tight.com/v6/banks/accounts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": [
{
"id": "bka_28868401",
"name": "Chase Checking",
"status": "ACTIVE",
"apiName": "PLAID",
"iconUrl": "https://cdn.sandbox.tight.com/icons/banks/56.png",
"mask": "1234",
"type": "DEPOSITORY",
"syncTransactions": true,
"tranStartDate": "2025-01-01",
"glAccountId": "<string>",
"beginningBalance": 100000,
"customData": {
"internal_key": "some_internal_key",
"some_other_field": 23434
}
}
]
}
'{
"result": "SUCCESS",
"data": [
{
"result": "SUCCESS",
"statusCode": 200,
"data": {
"id": "123456",
"status": "ACTIVE",
"apiName": "PLAID",
"iconUrl": "https://cdn.sandbox.tight.com/icons/banks/56.png",
"name": "Chase Checking",
"mask": "1234",
"integration": {
"id": "<string>",
"apiInstitutionId": "<string>"
},
"type": "DEPOSITORY",
"lastSyncedDate": "2023-11-07T05:31:56Z",
"syncTransactions": true,
"isSupported": true,
"tranStartDate": "2023-12-25",
"tranMinStartDate": "2023-12-25",
"latestTransactionDate": "2025-01-01",
"glAccountId": "<string>",
"beginningBalanceData": {
"journalEntry": {
"id": "<string>",
"tranDate": "2023-12-25"
},
"amount": 123
},
"accountBalance": 100000
},
"error": [
{
"type": "UNKNOWN_ERROR",
"message": "<string>",
"param": "<string>"
}
]
}
],
"error": [
{
"type": "UNKNOWN_ERROR",
"message": "<string>",
"param": "<string>"
}
]
}Save new (or update existing) bank accounts
curl --request POST \
--url https://sandbox.tight.com/v6/banks/accounts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": [
{
"id": "bka_28868401",
"name": "Chase Checking",
"status": "ACTIVE",
"apiName": "PLAID",
"iconUrl": "https://cdn.sandbox.tight.com/icons/banks/56.png",
"mask": "1234",
"type": "DEPOSITORY",
"syncTransactions": true,
"tranStartDate": "2025-01-01",
"glAccountId": "<string>",
"beginningBalance": 100000,
"customData": {
"internal_key": "some_internal_key",
"some_other_field": 23434
}
}
]
}
'{
"result": "SUCCESS",
"data": [
{
"result": "SUCCESS",
"statusCode": 200,
"data": {
"id": "123456",
"status": "ACTIVE",
"apiName": "PLAID",
"iconUrl": "https://cdn.sandbox.tight.com/icons/banks/56.png",
"name": "Chase Checking",
"mask": "1234",
"integration": {
"id": "<string>",
"apiInstitutionId": "<string>"
},
"type": "DEPOSITORY",
"lastSyncedDate": "2023-11-07T05:31:56Z",
"syncTransactions": true,
"isSupported": true,
"tranStartDate": "2023-12-25",
"tranMinStartDate": "2023-12-25",
"latestTransactionDate": "2025-01-01",
"glAccountId": "<string>",
"beginningBalanceData": {
"journalEntry": {
"id": "<string>",
"tranDate": "2023-12-25"
},
"amount": 123
},
"accountBalance": 100000
},
"error": [
{
"type": "UNKNOWN_ERROR",
"message": "<string>",
"param": "<string>"
}
]
}
],
"error": [
{
"type": "UNKNOWN_ERROR",
"message": "<string>",
"param": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, see Authentication for more detail.
Show child attributes