POST api/me/children
Creates a new child account with the given information (Requires HTTPS)
Request Information
URI Parameters
None.
Body Parameters
Account data of new child
AccountNewDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Account given name/note |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1"
}
Response Information
Resource Description
Summary of created account
AccountDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Key |
Account API key |
string |
None. |
| Parent |
Account parent Account ID |
string |
None. |
| Type |
Account type |
string |
None. |
| Balance |
Credit balance |
decimal number |
None. |
| Currency |
Currency of credit balance |
string |
None. |
| ID |
Account ID |
string |
Required |
| Name |
Account given name/note |
string |
Required |
Response Formats
application/json, text/json
Sample:
{
"Key": "sample string 1",
"Parent": "sample string 2",
"Type": "sample string 3",
"Balance": 4.0,
"Currency": "sample string 5",
"ID": "sample string 6",
"Name": "sample string 7"
}