# Australia

### Required Fields <a href="#required-fields" id="required-fields"></a>

<table><thead><tr><th width="229">Field</th><th>Format</th><th>Description</th></tr></thead><tbody><tr><td><code>country</code></td><td><code>AU</code></td><td>See <a href="../../../../specifications/countries-specifications">country codes</a></td></tr><tr><td><code>currency</code></td><td><code>AUS</code> / <code>USD</code></td><td>See <a href="../../../../../specifications/countries-specifications#countries-and-currencies">currency codes</a></td></tr><tr><td><code>amount</code></td><td>Number with up to 2 decimals</td><td>Cashout amount</td></tr><tr><td><code>document_id</code></td><td>Beneficiary's document ID</td><td>Beneficiary's document ID</td></tr><tr><td><code>bank_account</code></td><td>-</td><td>Beneficiary's bank account</td></tr><tr><td><code>bank_branch</code></td><td>BSB</td><td>In this field we <em>must</em> receive Beneficiary's <strong>BSB</strong> number. </td></tr><tr><td><code>beneficiary_name</code></td><td>String (max length: 100)</td><td>Beneficiary's name</td></tr><tr><td><code>benefitiary_lastname</code></td><td>String (max length: 100)</td><td>Beneficiary's last name</td></tr><tr><td><code>phone</code></td><td>String (max lenght: 10). </td><td>Beneficiary's phone number</td></tr><tr><td><code>email</code></td><td>String (max length: 255)</td><td>Beneficiary's email</td></tr></tbody></table>

### Additional Fields <a href="#required-fields" id="required-fields"></a>

<table><thead><tr><th width="229">Field</th><th>Format</th><th>Description</th></tr></thead><tbody><tr><td><code>document_id</code></td><td>9 Characters, alphanumeric</td><td>See <a href="../../../../specifications/countries-specifications">document validations</a></td></tr><tr><td><code>account_type</code></td><td><code>AUS</code> / <code>USD</code></td><td>See <a href="../../../../../specifications/countries-specifications#countries-and-currencies">currency codes</a></td></tr></tbody></table>

### Example Request

<pre class="language-json"><code class="lang-json">{
    "login": "xxxxxxx",
    "pass": "xxxxxxx",
<strong>    "country": "AU",
</strong>    "amount": 100,
    "currency": "AUD",
    "external_id": "70000000001",
    "document_type": "ID", 
    "document_id": "123456789",
    "beneficiary_name": "Test",
    "beneficiary_lastname": "TestLastName",
    "email": "test@testemail.com",
    "bank_branch": "484799", 
    "bank_code": "22",
    "bank_account": "123439923",
    "account_type": "S", 
    "notification_url": "https://webhook.site/url",
    "type": "json"
}
</code></pre>
