> For the complete documentation index, see [llms.txt](https://cs.help.siesta.cloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cs.help.siesta.cloud/en/main/api-1/api.md).

# Methods

## Get Single Payout

<mark style="color:blue;">`GET`</mark> `https://api.siesta.cloud/payout/{id}&token={token}`

This endpoint allows allows to get you information about payout, witch was send to your bank account .

#### Path Parameters

| Name  | Type   | Description                                     |
| ----- | ------ | ----------------------------------------------- |
| token | string | Your unique token                               |
| id    | number | ID of payout you want to get (variable symbol). |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{
  "date": "2020-03-19T10:47:30.326Z",
  "accountCompanyName": "string",
  "accountFirstName": "string",
  "accountLastName": "string",
  "totalAmount": 0,
  "currencyIsoCode": "string",
  "bounties": [
    {
      "reservationId": 0,
      "reservationServiceItemName": "string",
      "amount": 0,
      "currencyCode": "string",
      "source": "string",
      "sourceName": "string",
      "reservationDetailLink": "string",
      "reservationPublicId": "string"
    }
  ],
  "id": 0
}
```

{% endtab %}

{% tab title="404 Could not find a cake matching this query." %}

```
{    "message": content-length: 0 
 date: Thu, 19 Mar 2020 10:38:25 GMT 
 request-context: appId=cid-v1:b39ad8c8-8488-4dd5-9f63-aa3621ccb71f 
 status: 404 
 x-content-type-options: nosniff 
 x-frame-options: SAMEORIGIN 
 x-xss-protection: 1; mode=block "Ain't no cake like that."}
```

{% endtab %}
{% endtabs %}
