Documentation
- Getting Started
- Authentication
- Making Requests
- Resource Creation
- Searching
- Plugins
- Webhooks
Tutorials
APIs
- Activity Codes
- Archive
- Authorization
- Bank Accounts
- Contacts
- Events
- Expenses
- Fees
- Files
- Firm
- Firm Users
- Folders
- Invoices
- Layout Designs
- Layout Matter Items
- Matter Billing Configuration
- Matter Items
- Matter Types
- Matters
- Memos
- Notifications
- Plugins
- Referral Types
- Relationships
- Roles
- Staff
- Stages
- Subscription Payments
- Subscription Promotions
- Subscriptions
- Tasks
- Users
- Webhooks
Bank Accounts
Create bank account transaction
Creates a bank account transaction.
POST
/
bankaccounts
/
{bankAccountId}
/
transactions
curl --request POST \
--url https://api.smokeball.com/bankaccounts/{bankAccountId}/transactions \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json-patch+json' \
--header 'x-api-key: <api-key>' \
--data '{
"matterId": "da4e7fd1-5394-4ca9-b1c6-e18c4e2bf262",
"payorId": "<string>",
"type": "Deposit",
"amount": 102.65,
"reference": "<string>",
"reason": "<string>",
"description": "<string>",
"note": "<string>",
"effectiveDate": "2023-11-07T05:31:56Z"
}'
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
}
Path Parameters
Body
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://api.smokeball.com/bankaccounts/{bankAccountId}/transactions \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json-patch+json' \
--header 'x-api-key: <api-key>' \
--data '{
"matterId": "da4e7fd1-5394-4ca9-b1c6-e18c4e2bf262",
"payorId": "<string>",
"type": "Deposit",
"amount": 102.65,
"reference": "<string>",
"reason": "<string>",
"description": "<string>",
"note": "<string>",
"effectiveDate": "2023-11-07T05:31:56Z"
}'
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
}
Assistant
Responses are generated using AI and may contain mistakes.