# 4. Registered Member's IBAN

## To the registered Member IBAN

<mark style="color:green;">`POST`</mark> `{{Base Address}}/api/paywall/payout/send/member`

Sending a request to the provided address is sufficient. You can use the 'Base Address' as you wish for both the testing and production environments.

{% hint style="info" %}
**Important**: In order to use the Payout - Registered Member service, you need to send the '**apikeyprivate**' and '**apiclientprivate**' parameters in the 'Header' field.

\
[<mark style="color:green;">**PaymentAPI Address**</mark>](https://developer.paywall.one/payment-orchestration-integration-document/environment)
{% endhint %}

<table><thead><tr><th width="168">Parameter</th><th width="98.33333333333331">Type</th><th width="131">Compulsory</th><th>Description</th></tr></thead><tbody><tr><td>apikeyprivate</td><td>string</td><td>Yes</td><td>The Private Key obtained from the merchant panel.</td></tr><tr><td>apiclientprivate</td><td>string</td><td>Yes</td><td>The Private Client obtained from the merchant panel.</td></tr></tbody></table>

**The parameters that need to be sent to the service are as follows:**

<table><thead><tr><th width="228">Parameter</th><th width="95">Type</th><th width="190">Compulsory</th><th>Description</th></tr></thead><tbody><tr><td>PayoutProviderKey</td><td>string</td><td>Yes</td><td>The key term for the PayOut provider in Paywall</td></tr><tr><td>MerchantGroupCode</td><td>string</td><td>No</td><td>This is the group code you will define for tracking the PayOut transaction. With the relevant code, you can assign the same group code to your transfers under a specific transaction and report them.</td></tr><tr><td>MerchantUniqueCode</td><td>string</td><td>Yes</td><td>The unique code you will define for tracking the PayOut transaction (you cannot use the same codes within the same month).</td></tr><tr><td>MemberId</td><td>int</td><td>Yes</td><td>Sub-member identification information registered in Paywall. Returned in the response during registration with Paywall.</td></tr><tr><td>Description</td><td>string</td><td>Yes</td><td>Description to be communicated to the recipient for PayOut.</td></tr><tr><td>Amount</td><td>decimal</td><td>Yes</td><td>PayOut amount</td></tr><tr><td>CurrencyId</td><td>int</td><td>Yes</td><td>Currency<br><br>See:  <a href="../system-data/currency">Currency list</a></td></tr><tr><td>CallbackSupport</td><td>bool</td><td>No</td><td><p>Should feedback be provided in case of asynchronous failure or refund of the PayOut transaction?</p><p><br></p></td></tr><tr><td>CallbackAddress</td><td>string</td><td>Yes (Conditional)</td><td>Address to which feedback will be sent</td></tr></tbody></table>

{% tabs %}
{% tab title="JSON" %}
{% code overflow="wrap" lineNumbers="true" %}

```json5
{
    "PayoutProviderKey": "ProviderKey",
    "MerchantUniqueCode": "42222",
    "MemberId": 209021,
    "Description": "test açıklaması",
    "Amount": 1,
    "CurrencyId": 1
}
```

{% endcode %}
{% endtab %}

{% tab title="C#" %}

```csharp
// Soon
```

{% endtab %}

{% tab title="GO" %}

```go
// Soon
```

{% endtab %}

{% tab title="Java" %}

```java
// Soon
```

{% endtab %}

{% tab title="PHP" %}

```php
// Soon
```

{% endtab %}

{% tab title="Python" %}

```python
// Soon
```

{% endtab %}

{% tab title="Ruby" %}

```ruby
// Soon
```

{% endtab %}

{% tab title="TypeScript" %}

```typescript
// Soon
```

{% endtab %}

{% tab title="Curl" %}

```sh
// Soon
```

{% endtab %}
{% endtabs %}

**Response returned from the service:**

<table><thead><tr><th width="156">Parameter</th><th width="83.33333333333331">Type</th><th>Explanation</th></tr></thead><tbody><tr><td>Body</td><td>object</td><td>Optional JSON containing details about the payment.</td></tr><tr><td>ErrorCode</td><td>int</td><td>Error code. Returns '0' if the transaction is successful.</td></tr><tr><td>Result</td><td>bool</td><td>Returns a value of 'true' or 'false'. Returns 'true' if the transaction is successful.</td></tr><tr><td>Message</td><td>string</td><td>If the transaction fails, this is the message specified for the error, providing language support according to the locale parameter.</td></tr></tbody></table>

{% tabs %}
{% tab title="JSON" %}
{% code overflow="wrap" lineNumbers="true" %}

```json5
{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": {
        "Result": true,
        "PayoutTransactionId": 53,
        "MerchantUniqueCode": "123123s1a2da3",
        "UniqueCode": "db1780b8-682d-4274-a519-5b52a4988e51",
        "Amount": 0.1
    }
}
```

{% endcode %}
{% endtab %}
{% endtabs %}
