Skip to main content
GET
/
open-api
/
v1.0
/
donations
Get all donations
curl --request GET \
  --url https://api.fourthwall.com/open-api/v1.0/donations \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "don_Kpcjx4HIQ1e4bTIOjX9CsA",
      "shopId": "sh_c689d374-22ca-43d3-8d29-9ef0805cc4cb",
      "status": "OPEN",
      "email": "[email protected]",
      "amounts": {
        "total": {
          "value": 10,
          "currency": "USD"
        }
      },
      "createdAt": "2020-08-13T09:05:36.939Z",
      "updatedAt": "2020-08-13T09:05:36.939Z",
      "username": "Johnny123",
      "message": "Sample message"
    }
  ],
  "total": 123,
  "page": 123,
  "size": 123,
  "totalPages": 123
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

page
integer<int32>
default:0
size
integer<int32>
default:20

Response

200 - application/json

OK

results
Donation · object[]
required
total
integer<int32>
page
integer<int32>
size
integer<int32>
totalPages
integer<int32>