GET api/{context}/partner/PledgeHistory/{text}

parameters:   ?page={page}&pageSize={pageSize}

Retrieve a Partner's pledge history (using their ID).

Request Information

ParameterDescriptionAdditional information
text
The ID of the partner for look-up.

Define this parameter in the request URI.

page
Optional page number.  If not included, page 1 will be returned.

Define this parameter in the request URI.

pageSize
Optional page size, limit of 100.  If not included, the default page size will be 25.

Define this parameter in the request URI.

Special Field Notes

Field NameNotes
NextPageLink
Contains the full URL necessary to retrieve the next page of records.
PageCount
The number of pages contained in the result set, based on the PageSize passed in the API request.
PreviousPageLink
Contains the full URL necessary to retrieve the previous page of records.
TotalCount
The total number of records contained in the result set.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "NextPageLink": "sample string 1",
  "PreviousPageLink": "sample string 2",
  "PageCount": 3,
  "TotalCount": 4,
  "Pledges": [
    {
      "ID": "f69963a1-6d54-4646-bdad-104d78556ebb",
      "PartnerID": "sample string 1",
      "PledgeAmount": 1.0,
      "DatePledged": "2024-04-25T21:14:38.8153227-06:00",
      "AppealCode": "sample string 2",
      "StartDate": "2024-04-25T21:14:38.8153227-06:00",
      "DayToCharge": 1,
      "PledgeType": "sample string 3",
      "Frequency": "sample string 4",
      "Installments": 1,
      "PledgeProgramName": "sample string 5",
      "BatchType": "sample string 6",
      "Active": true,
      "AutoPayment": true,
      "PaymentType": "sample string 9",
      "PaymentSubType": "sample string 10",
      "PaymentBank": "sample string 11",
      "PaymentNumber": "sample string 13",
      "PaymentExtraID": "sample string 14",
      "PaymentExpDate": "2024-04-25T21:14:38.8153227-06:00",
      "PaymentFirstName": "sample string 15",
      "PaymentMiddleName": "sample string 16",
      "PaymentLastName": "sample string 17",
      "PaymentAddress1": "sample string 18",
      "PaymentAddress2": "sample string 19",
      "PaymentCity": "sample string 20",
      "PaymentStateProvince": "sample string 21",
      "PaymentPostalCode": "sample string 22",
      "PaymentCountry": "sample string 23",
      "PaymentTokenID": "sample string 24",
      "PendingProfileUpdate": true,
      "Note": "sample string 26",
      "Channel": "sample string 27"
    },
    {
      "ID": "f69963a1-6d54-4646-bdad-104d78556ebb",
      "PartnerID": "sample string 1",
      "PledgeAmount": 1.0,
      "DatePledged": "2024-04-25T21:14:38.8153227-06:00",
      "AppealCode": "sample string 2",
      "StartDate": "2024-04-25T21:14:38.8153227-06:00",
      "DayToCharge": 1,
      "PledgeType": "sample string 3",
      "Frequency": "sample string 4",
      "Installments": 1,
      "PledgeProgramName": "sample string 5",
      "BatchType": "sample string 6",
      "Active": true,
      "AutoPayment": true,
      "PaymentType": "sample string 9",
      "PaymentSubType": "sample string 10",
      "PaymentBank": "sample string 11",
      "PaymentNumber": "sample string 13",
      "PaymentExtraID": "sample string 14",
      "PaymentExpDate": "2024-04-25T21:14:38.8153227-06:00",
      "PaymentFirstName": "sample string 15",
      "PaymentMiddleName": "sample string 16",
      "PaymentLastName": "sample string 17",
      "PaymentAddress1": "sample string 18",
      "PaymentAddress2": "sample string 19",
      "PaymentCity": "sample string 20",
      "PaymentStateProvince": "sample string 21",
      "PaymentPostalCode": "sample string 22",
      "PaymentCountry": "sample string 23",
      "PaymentTokenID": "sample string 24",
      "PendingProfileUpdate": true,
      "Note": "sample string 26",
      "Channel": "sample string 27"
    },
    {
      "ID": "f69963a1-6d54-4646-bdad-104d78556ebb",
      "PartnerID": "sample string 1",
      "PledgeAmount": 1.0,
      "DatePledged": "2024-04-25T21:14:38.8153227-06:00",
      "AppealCode": "sample string 2",
      "StartDate": "2024-04-25T21:14:38.8153227-06:00",
      "DayToCharge": 1,
      "PledgeType": "sample string 3",
      "Frequency": "sample string 4",
      "Installments": 1,
      "PledgeProgramName": "sample string 5",
      "BatchType": "sample string 6",
      "Active": true,
      "AutoPayment": true,
      "PaymentType": "sample string 9",
      "PaymentSubType": "sample string 10",
      "PaymentBank": "sample string 11",
      "PaymentNumber": "sample string 13",
      "PaymentExtraID": "sample string 14",
      "PaymentExpDate": "2024-04-25T21:14:38.8153227-06:00",
      "PaymentFirstName": "sample string 15",
      "PaymentMiddleName": "sample string 16",
      "PaymentLastName": "sample string 17",
      "PaymentAddress1": "sample string 18",
      "PaymentAddress2": "sample string 19",
      "PaymentCity": "sample string 20",
      "PaymentStateProvince": "sample string 21",
      "PaymentPostalCode": "sample string 22",
      "PaymentCountry": "sample string 23",
      "PaymentTokenID": "sample string 24",
      "PendingProfileUpdate": true,
      "Note": "sample string 26",
      "Channel": "sample string 27"
    }
  ]
}

application/xml, text/xml

Sample:
<PledgeHistoryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDS.Web.WebApi.Models">
  <NextPageLink>sample string 1</NextPageLink>
  <PageCount>3</PageCount>
  <PreviousPageLink>sample string 2</PreviousPageLink>
  <TotalCount>4</TotalCount>
</PledgeHistoryModel>