Methods

Description of api endpoints

Get Single Payout

GET 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

NameTypeDescription

token

string

Your unique token

id

number

ID of payout you want to get (variable symbol).

{
  "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
}

Last updated