-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcalls.http
68 lines (50 loc) · 1.42 KB
/
calls.http
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
##### VSCODE / REST Client https://marketplace.visualstudio.com/items?itemName=humao.rest-client
# Create a .env file and set the corresponding variables
# See all $dotenv fields below
@endpoint=https://pretix.eu/api/v1/
@token={{$dotenv PRETIX_TOKEN}}
#########################
# organizers/
#########################
###
GET {{endpoint}}/organizers/
Host: pretix.eu
Authorization: Token {{token}}
#########################
# events
#########################
GET {{endpoint}}/organizers/noi-digital/events
Host: pretix.eu
Authorization: Token {{token}}
#########################
# checkin list
#########################
GET {{endpoint}}/organizers/noi-digital/events/sfscon23/checkinlists
Host: pretix.eu
Authorization: Token {{token}}
#########################
# checkin list status
#########################
GET {{endpoint}}/organizers/noi-digital/events/sfscon23/checkinlists/313919/status
Host: pretix.eu
Authorization: Token {{token}}
#########################
# create conf checkin list status
#########################
@api=http://localhost:8000
GET {{api}}/openapi.json
Content-Type: application/json
#########################
# create conf checkin list status
#########################
POST {{api}}/api/conferences
Content-Type: application/json
{
"default": "True",
"force": "True"
}
#########################
# get conferences
#########################
GET {{api}}/api/conferences
Content-Type: application/json