GET api/v1/transaction/{listId}/gob/members

Get the donor transaction for give on behalf of the members based on list id.

Request Information

Parameters

NameDescriptionAdditional information
listId
List identifier.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "ListId": "sample string 1",
  "Members": [
    {
      "MemberId": "sample string 1",
      "FirstName": "sample string 2",
      "LastName": "sample string 3",
      "Amount": 4
    },
    {
      "MemberId": "sample string 1",
      "FirstName": "sample string 2",
      "LastName": "sample string 3",
      "Amount": 4
    },
    {
      "MemberId": "sample string 1",
      "FirstName": "sample string 2",
      "LastName": "sample string 3",
      "Amount": 4
    }
  ]
}