finnow/finnow-api/bruno-api/Finnow/Accounts/Create Account.bru

30 lines
407 B
Plaintext
Raw Permalink Normal View History

meta {
name: Create Account
type: http
seq: 3
}
post {
url: {{base_url}}/profiles/:profile/accounts
body: json
auth: bearer
}
params:path {
profile: {{current_profile}}
}
auth:bearer {
token: {{access_token}}
}
body:json {
{
"type": "CHECKING",
"numberSuffix": "1234",
"name": "Testing Checking",
"currency": "USD",
"description": "A test account."
}
}