30 lines
407 B
Plaintext
30 lines
407 B
Plaintext
|
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."
|
||
|
}
|
||
|
}
|