SendRegning

Get participant

Verison: 1.0 (read more)

Request

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

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
39
40
41
42
43
44
{
    "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,
    "price": 42.00,
    "discountCode": {
        "code": "code",
        "amount": 100.00
    },
    "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/{number}"
        },
        "matchToRecipient": {
            "uri": "/host/events/{number}/participants/1/{number}/match"
        },
        "invoice": {
            "uri": "/host/events/{number}/participants/1/{number}/invoice"
        }
    }
}

discountCode object is omitted if not signed up with a discount code