SendRegning

List participants

Verison: 1.0 (read more)

Request

1
GET /host/events/{number}/participants

Response

HTTP/1.1 200 OK

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
[
    {
        "number": 1,
        "name": "Edsger Dijkstra",
        "email": "edsger@algorithm.com",
        "mobile": "11223344",
        "invoice": {
            "name": "Edsger Dijkstra",
            "zip": "0665",
            "city": "Oslo",
            "country": "NORGE",
            "orgNo": null,
            "yourRef": null
        },
        "hasPaid": false,
        "customFields": [
            {
                "number": 1,
                "name": "favorite food",
                "type": "TEXT",
                "options": null,
                "value": "pizza"
            },
            {
                "number": 2,
                "name": "tshirt?",
                "type": "BOOLEAN",
                "options": null,
                "value": true
            }
        ],
        "_links": {
            "self": {
                "uri": "/host/events/{number}/participants/1"
            }
        }
    }
]