JustGiving API

Uri /{appId}/v1/event/{eventId}/pages
Verb GET
Auth No

Retrieves a collection of page summaries that are assigned to a specific event

Http

To request: https://api.justgiving.com/{appId}/v1/event/{eventId}/pages
Perform the following HTTP request:

GET /{appId}/v1/event/{eventId}/pages?page={value}&pagesize={value}&orderby={value}&orderdirection={value} HTTP/1.1
Host: api.justgiving.com
Content-type: application/json

Url Parameters

eventId (Integer (32bit))
eventId

Query String Parameters

page (System.String)
The page number to retrieve (Optional).
pageSize (System.String)
Number of search results to retrieve, pageSize cannot exceed 100 (Optional).
orderBy (System.String)
Field by which pages are ordered by i.e createdDate and updatedDate. Ordering is currently ignored
orderDirection (System.String)
Order direction for the returned pages i.e DESCENDING and ASCENDING. Ordering is currently ignored

HTTP Status Codes

  • 200 OK - OK

Response Examples

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
    "eventId": 1234,
    "fundraisingPages": [
        {
            "campaignGuid": null,
            "companyAppealId": 0,
            "createdDate": null,
            "currencyCode": null,
            "currencySymbol": null,
            "designId": 1,
            "domain": "www.justgiving.com",
            "eventId": 12345,
            "eventName": "My Awesome Event",
            "giftAidPlusSupplement": 1.25,
            "images": [
                 
            ],
            "inMemoryPerson": {
                "FirstName": "Georg",
                "LastName": "Hegel",
                "PersonId": 0,
                "RelationShip": null,
                "dateOfBirth": "\/Date(-6290784000000+0000)\/",
                "dateOfDeath": "\/Date(-4359052800000+0000)\/"
            },
            "legacyId": null,
            "offlineDonations": 10,
            "pageGuid": null,
            "pageId": 1457423,
            "pageImages": [
                "42010\/65f56cc6-3535-436e-927d-eb9c24b82a6e.jpg"
            ],
            "pageOwner": null,
            "pageOwnerGuid": null,
            "pageShortName": "myJustGivingShortName",
            "pageStatus": "Active",
            "pageTitle": "My Fundraising Page!",
            "raisedAmount": 20.0,
            "targetAmount": 1000.0,
            "totalRaisedOnline": 50.00,
            "updatedDate": null,
            "smsCode": "PEJN76",
            "charityId": 1
        }
    ],
    "totalFundraisingPages": 1,
    "totalPages": 1,
    "totalRaised": 0
}
eventId (Integer (32bit))
totalFundraisingPages (Integer (32bit))
totalPages (Integer (32bit))
totalRaised (Decimal)
fundraisingPages (ICollection of FundraisingPageSummary)
errorMessage (String)