Pledge Histories
Pledge Histories Documentation
Pledge History [LIST]
Pledge History [LIST]
Request
Endpoint
GET /api/v2/reports/pledge_histories
Content-Type: application/vnd.api+json
Body
Parameters
Filters
account_list_id
Type string
Description The account list to run the report on.
Required No
end_date
Type string
Description The date in which you would like the report to end on. This will be shifted to the end of the final period. Default: today
Required No
range
Type string
Description A string defining the number of periods and how long they should be with an indictor: (d)ay, (w)eek, (m)onth, (y)ear. Examples: 30d, 2w, 12m, 1y. Default: 13m
Required No
Response
Headers
Content-Type: application/vnd.api+json; charset=utf-8
200 OK
Body
{
"data": [
{
"id": "2021-11-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2021-11-30T10:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2021-10-31T11:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2021-10-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2021-10-31T10:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2021-09-30T11:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2021-09-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2021-09-30T10:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2021-08-31T12:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2021-08-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2021-08-31T11:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2021-07-31T12:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2021-07-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2021-07-31T11:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2021-06-30T12:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2021-06-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2021-06-30T11:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2021-05-31T12:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2021-05-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2021-05-31T11:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2021-04-30T12:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2021-04-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2021-04-30T11:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2021-03-31T11:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2021-03-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2021-03-31T10:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2021-02-28T11:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2021-02-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2021-02-28T10:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2021-01-31T11:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2021-01-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2021-01-31T10:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2020-12-31T11:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2020-12-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2020-12-31T10:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2020-11-30T11:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
},
{
"id": "2020-11-01",
"type": "reports_pledge_histories_periods",
"attributes": {
"created_at": "2021-11-23T14:38:18Z",
"end_date": "2020-11-30T10:59:59Z",
"pledged": 0,
"received": 0,
"start_date": "2020-10-31T11:00:00Z",
"updated_at": null,
"updated_in_db_at": null
}
}
],
"meta": {
"filter": {
}
}
}
Fields
data
Type
[Pledge Histories Period]
Description An array of Pledge Histories Periods
Last updated