# Get a Payout

## Get a Payout

<mark style="color:blue;">`GET`</mark> `https://workspace.myeshopbox.com/payments/api/v1/payout?neftId=:neftId`

#### Query Parameters

| Name   | Type   | Description                |
| ------ | ------ | -------------------------- |
| neftId | string | Neft Id for payment report |

#### Headers

| Name          | Type   | Description                                 |
| ------------- | ------ | ------------------------------------------- |
| Authorization | string | The Bearer token to grant access to the API |

{% tabs %}
{% tab title="200 " %}

```
{
 "data": [
  {
   "ledgerGroupId": "3",
   "fundTransferDate": "2019-04-02 00:04:00.0",
   "portalName": "Snapdeal",
   "ledgerName": "Snapdeal Raymond",
   "fundTransferAmount": 5475.58,
   "transactionId": "904022991616",
   "reportUrl": "https://cdn.filestackcontent.com/gaD35vYZTzWjU4iJNeBO",
   "comments": "",
   "requestId": "1576929129640",
   "requestStatus": "success",
   "requestMsg": "Successfully file uploaded",
   "createdAt": "2019-12-21T11:52:09.000Z",
   "updatedAt": "2019-12-21T11:52:12.000Z",
   "portalAccountId": "23",
   "portalId": "4",
   "active": "1"
  }
 ],
 "total": "1",
 "page": 1,
 "per_page": 50
}
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="cURL" %}

```scheme
curl -X GET https://workspace.myeshopbox.com/payments/api/v1/payout?neftId=:neftId \
-H "Authorization: Bearer XXXX" \
```

{% endtab %}
{% endtabs %}
