Request
Body Params application/json
{
"owner": "{{$person.fullName}}",
"currency": "USD"
}
Request Code Samples
curl --location --request POST 'http://localhost:8080/accounts' \
--header 'Content-Type: application/json' \
--data-raw '{
"owner": "{{$person.fullName}}",
"currency": "USD"
}'
Responses
application/json {
"id": 0,
"owner": "string",
"currency": "string",
"created_at": "string",
"balance": 0
}
Modified at 2025-02-23 11:53:35