List a page of pledge drives where the ID is greater than the optionally supplied fromthisid parameter

GET /pledgedrive/list/{fromthisid}

Returned in ID order.

Path parameters

  • fromthisid integer Required

    The ID that is previous to the one to start from e.g. if IDs are 1,2,3 fromthisid as 1 will return 2,3

Responses

  • 200 application/json

    List returned OK

    Hide response attributes Show response attributes object
    • id integer

      Minimum value is 1.

    • name string
  • 401 application/json

    Authentication unauthorised

    Hide response attribute Show response attribute object
    • error string
  • 403 application/json

    Invalid permission

    Hide response attribute Show response attribute object
    • error string
GET /pledgedrive/list/{fromthisid}
curl \
 --request GET 'https://YOURSITE.infoodle.com/apiv2/pledgedrive/list/4' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 123,
    "name": "2025 Building Campaigns"
  }
]
Response examples (401)
{
  "error": "Unauthorised"
}
Response examples (403)
{
  "error": "Invalid Permission"
}