- Backhub Api
- General
- Accounting
- Apps
- Settings
- 🥷 Enterprise
Create
POST
https://api.backhub.dev/accounting/accounts
Last modified:2024-10-09 00:40:04
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string {{Username}}:{{Password}}Example:
Authorization: Basic *****************
Body Params application/json
name
string
required
code
null
required
bank
boolean
required
bankCode
string
required
bankName
string
required
currency
enum<string>
required
Allowed values:
TRYEURUSDGBP
variables
object (generalVariables)
required
key
string
required
value
string | integer | boolean | array | object | number | null
required
Example
{
"name": "Banka Kasası",
"code": null,
"bank": true,
"bankCode": "isbank",
"bankName": "İş Bankası",
"currency": "TRY",
"variables": [
{
"key": "acenta",
"value": "Acenta Adı"
}
]
}
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-10-09 00:40:04