forked from joola/joola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apiary.apib
2414 lines (1914 loc) · 78.7 KB
/
apiary.apib
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
FORMAT: 1A
HOST: http://joola-develop.herokuapp.com
# joola
[joola](http://github.com/joola/joola) is an open-source data analytics and visualization framework.
To learn more about joola, installation, configuration and usage, please refer to our [wiki](http://github.com/joola/joola/wiki).
This guide describes the resources that make up the joola API.
If you have any problems or requests please open an [issue](http://github.com/joola/joola/issues).
## Using This Guide
We will be using `http://localhost:8080` which is the default configuration for a fresh installation of joola.
You can use the `Debugging Host` to execute requests against a valid, online joola instance we have put up for the purpose of this guide. A valid token for this purpose is `apitoken-demo`.
Some actions will not be available in order to maintain system integrity.
While we understand how naive we are with this request, please apply Fair Usage and avoid vandalism of the system as much as possible. The node serving this guide will recycle every hour.
## Current Version
To check what version of joola is running, run:
```bash
$ curl http://localhost:8080/system/version?APIToken=apitoken-demo
{"version": "joola version 0.8.6"}
```
## Schema
All data is sent and received as JSON.
```bash
$ curl -i http://127.0.0.1:8080/system/version?APIToken=apitoken-demo
HTTP/1.1 200 OK
Server: joola
Access-Control-Allow-Credentials: true
Access-Control-Expose-Headers: ETag, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset
X-joola-Request-Id: HpEO6kDLn:1399190956781:Uj184Jhop
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4987
X-RateLimit-Reset: 1399192026
Retry-After: 1069
X-joola-Duration: 14
X-joola-Requested-By: HpEO6kDLn
X-joola-Fulfilled-By: HpEO6kDLn
X-joola-Duration-Fulfilled: 2
Content-Type: application/json
Content-Length: 36
ETag: "867689076"
Date: Sun, 04 May 2014 08:09:16 GMT
```
Blank fields are included as `null` instead of being omitted.
All timestamps are returned in ISO 8601 format:
```
YYYY-MM-DDTHH:MM:SSZ
```
## HTTP Verbs
joola API uses the following Verbs.
| Header | Description |
|----------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `HEAD` | Can be issued against any resource to get just the HTTP header info. |
| `GET` | Used for retrieving resources. |
| `POST` | Used for creating resources, or performing custom actions. |
| `PATCH` | Used for updating resources with partial JSON data. For instance, an Issue resource has title and body attributes. A PATCH request may accept one or more of the attributes to update the resource. |
| `PUT` | Used for replacing resources or collections. For PUT requests with no body attribute, be sure to set the Content-Length header to zero. Rarely used as part of the framework. |
| `DELETE` | Used for deleting resources. |
## Authentication
There are three ways to authenticate through joola API.
Requests that require authentication will return 404 Not Found, instead of 403 Forbidden, in some places. This is to prevent the accidental leakage of private information to unauthorized users.
#### Basic Authentication
```bash
$ curl -u "workspace/username:password" http://localhost:8080/system/version
```
#### APIToken (sent in a header)
```bash
$ curl -H "Authorization: token my-apitoken" http://localhost:8080/system/version
```
#### APIToken (sent as a parameter)
```bash
$ curl http://localhost:8080/system/version?APIToken=my-apitoken
```
## Rate Limits
joola support rate limits. The default rate is `5000` requests per hour, but can be changed as part of the [configuration](http://github.com/joola/joola/wiki/configuration).
You can check the returned HTTP headers of any API request to see your current rate limit:
```bash
$ curl -i http://127.0.0.1:8080/system/version?APIToken=apitoken-demo
HTTP/1.1 200 OK
Date: Sun, 04 May 2014 07:39:52 GMT
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4989
X-RateLimit-Reset: 1399192026
```
The headers include the information about the current rate limit status:
| Header | Description |
|-----------------------|---------------------------------------------------------------------------------|
| X-RateLimit-Limit | The maximum number of requests that the consumer is permitted to make per hour. |
| X-RateLimit-Remaining | The number of requests remaining in the current rate limit window. |
| X-RateLimit-Reset | The time at which the current rate limit window resets in UTC epoch seconds. |
| Retry-After | The number of seconds before the current rate limit resets. |
## Response Headers
Each API request fulfilled by joola contains some useful response headers:
| Header | |
|------------------------------|---------------------------------------------------------------------------------------|
| X-joola-Request-Id | Unique request id assigned by joola server. Format: {NODE_UUID}:{TIMESTAMP}:{UUID} |
| X-joola-Duration | Total duration of request from route in to out. |
| X-joola-Duration-Fulfilled | Total duration of request from dispatch in/out. |
| X-joola-Requested-By | Node UUID of the requester. |
| X-joola-Fulfilled-By | Node UUID of the fulfiller. |
# Group Workspaces
Notes related resources of the **Workspaces API**
## Workspaces [/workspaces{?APIToken}]
Workspaces are a high-level logical containers.
Each workspace is a separate logical and (sometimes) phyisical container, it has its own roles, users, collections and other meta data information describing the container.
Having multiple workspaces is the corner-stone for joola's multi-tenancy.
### Workspace Structure
| Field | Type | Description |
|:-------------|:-------|:----------------------------------------|
| key | string | Workspace unique key. |
| name | string | A nice display name for the Workspace. |
| description | string | Workspace description. |
+ Parameters
+ APIToken (optional, string, `apitoken-demo`) ... The `APIToken` of the user performing the action.
### List all Workspaces [GET]
+ Response 200 (application/json; charset=utf-8)
[
{
"key": "_test",
"description": "Workspace for internal joola tests",
"name": "joola Framework Tests"
},
{
"key": "_stats",
"description": "Stores internal statistics of joola",
"name": "Internal Stats"
},
{
"key": "demo",
"description": "A starter/playground workpsace",
"name": "Demo Workspace"
}
]
### Create a Workspace [POST]
+ Request (application/json; charset=utf-8)
{
"key": "workspace-name",
"name": "Workspace Name"
}
+ Response 200 (application/json; charset=utf-8)
{
"key": "workspace-name",
"name": "Workspace Name",
"description": null
}
+ Response 500 (application/json; charset=utf-8)
{ "message": "workspace already exists", "documentation_url": "http://github.com/joola/joola/wiki" }
## Workspace [/workspaces/{key}{?APIToken}]
+ Parameters
+ key (required, string, `workspace-name`) ... String `key` of the Workspace to perform action with. Has example value.
+ APIToken (optional, string, `apitoken-demo`) ... The `APIToken` of the user performing the action.
### Retrieve a Workspace [GET]
+ Response 200 (application/json; charset=utf-8)
+ Body
{
"key": "workspace-name",
"name": "Workspace Name",
"description": null
}
+ Response 401 (application/json; charset=utf-8)
{ "message": "missing permission.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 403 (application/json; charset=utf-8)
{ "message": "forbidden.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 500 (application/json; charset=utf-8)
{ "message": "workspace [{key}] does not exist.", "documentation_url": "http://github.com/joola/joola/wiki" }
### Update a Workspace [PATCH]
+ Request (application/json; charset=utf-8)
{ "description": "workspace description" }
+ Response 200
{
"key": "workspace-name",
"name": "Workspace Name",
"description": "workspace description"
}
+ Response 401 (application/json; charset=utf-8)
{ "message": "missing permission.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 403 (application/json; charset=utf-8)
{ "message": "forbidden.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 415 (application/json; charset=utf-8)
{ "message": "unsupported media type.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 500 (application/json; charset=utf-8)
{ "message": "role [{key}] does not exist.", "documentation_url": "http://github.com/joola/joola/wiki" }
### Remove a Workspace [DELETE]
+ Response 200
{}
+ Response 401 (application/json; charset=utf-8)
{ "message": "missing permission.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 403 (application/json; charset=utf-8)
{ "message": "forbidden.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 415 (application/json; charset=utf-8)
{ "message": "unsupported media type.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 500 (application/json; charset=utf-8)
{ "message": "workspace [{key}] does not exist.", "documentation_url": "http://github.com/joola/joola/wiki" }
# Group Collections
Notes related resources of the **Collections API**
## Collections [/collections/{workspace}{?APIToken}]
### Collection Structure
| Field | Type | Description |
|:-------------|:-------|:----------------------------------------|
| key | string | Collection unique key. |
| name | string | A nice display name for the Collection. |
| description | string | Collection description. |
| strongTyped | bool | Is the collection strong typed? |
| dimensions | array | Array of dimensions part of the collection |
| metrics | array | Array of Metrics part of the collection |
+ Parameters
+ workspace (required, string, `demo`) ... The `Workspace` of the collection performing the action.
+ APIToken (optional, string, `apitoken-demo`) ... The `APIToken` of the user performing the action.
### List all Collections [GET]
+ Response 200 (application/json; charset=utf-8)
[
{
"key": "visits",
"strongTyped": true,
"dimensions": [
{
"datatype": "date",
"type": "dimension",
"name": "timestamp",
"key": "visits.timestamp"
},
{
"datatype": "string",
"type": "dimension",
"name": "browser",
"key": "visits.browser"
},
{
"datatype": "string",
"type": "dimension",
"name": "engine",
"key": "visits.engine"
},
{
"datatype": "string",
"type": "dimension",
"name": "os",
"key": "visits.os"
},
{
"datatype": "string",
"type": "dimension",
"name": "userid",
"key": "visits.userid"
},
{
"datatype": "ip",
"type": "dimension",
"name": "ip",
"key": "visits.ip"
},
{
"datatype": "string",
"type": "dimension",
"name": "referrer",
"key": "visits.referrer"
},
{
"datatype": "date",
"type": "dimension",
"name": "timestamp",
"key": "clicks.timestamp"
},
{
"datatype": "string",
"type": "dimension",
"name": "browser",
"key": "clicks.browser"
},
{
"datatype": "string",
"type": "dimension",
"name": "engine",
"key": "clicks.engine"
},
{
"datatype": "string",
"type": "dimension",
"name": "os",
"key": "clicks.os"
},
{
"datatype": "string",
"type": "dimension",
"name": "userid",
"key": "clicks.userid"
},
{
"datatype": "ip",
"type": "dimension",
"name": "ip",
"key": "clicks.ip"
},
{
"datatype": "string",
"type": "dimension",
"name": "referrer",
"key": "clicks.referrer"
},
{
"datatype": "date",
"type": "dimension",
"name": "timestamp",
"key": "mousemoves.timestamp"
},
{
"datatype": "string",
"type": "dimension",
"name": "browser",
"key": "mousemoves.browser"
},
{
"datatype": "string",
"type": "dimension",
"name": "engine",
"key": "mousemoves.engine"
},
{
"datatype": "string",
"type": "dimension",
"name": "os",
"key": "mousemoves.os"
},
{
"datatype": "string",
"type": "dimension",
"name": "userid",
"key": "mousemoves.userid"
},
{
"datatype": "ip",
"type": "dimension",
"name": "ip",
"key": "mousemoves.ip"
},
{
"datatype": "string",
"type": "dimension",
"name": "referrer",
"key": "mousemoves.referrer"
}
],
"metrics": [
{
"datatype": "number",
"type": "metric",
"name": "visits",
"key": "visits.visits",
"min": 0,
"max": 1
},
{
"datatype": "number",
"type": "metric",
"name": "loadtime",
"key": "visits.loadtime",
"min": 0,
"max": 10000
},
{
"datatype": "number",
"type": "metric",
"name": "clicks",
"key": "clicks.clicks",
"min": 0,
"max": 1
},
{
"datatype": "number",
"type": "metric",
"name": "mousemoves",
"key": "mousemoves.mousemoves",
"min": 0,
"max": 1000
}
],
"description": ""
},
{
"key": "clicks",
"strongTyped": true,
"dimensions": [
{
"datatype": "date",
"type": "dimension",
"name": "timestamp",
"key": "visits.timestamp"
},
{
"datatype": "string",
"type": "dimension",
"name": "browser",
"key": "visits.browser"
},
{
"datatype": "string",
"type": "dimension",
"name": "engine",
"key": "visits.engine"
},
{
"datatype": "string",
"type": "dimension",
"name": "os",
"key": "visits.os"
},
{
"datatype": "string",
"type": "dimension",
"name": "userid",
"key": "visits.userid"
},
{
"datatype": "ip",
"type": "dimension",
"name": "ip",
"key": "visits.ip"
},
{
"datatype": "string",
"type": "dimension",
"name": "referrer",
"key": "visits.referrer"
},
{
"datatype": "date",
"type": "dimension",
"name": "timestamp",
"key": "clicks.timestamp"
},
{
"datatype": "string",
"type": "dimension",
"name": "browser",
"key": "clicks.browser"
},
{
"datatype": "string",
"type": "dimension",
"name": "engine",
"key": "clicks.engine"
},
{
"datatype": "string",
"type": "dimension",
"name": "os",
"key": "clicks.os"
},
{
"datatype": "string",
"type": "dimension",
"name": "userid",
"key": "clicks.userid"
},
{
"datatype": "ip",
"type": "dimension",
"name": "ip",
"key": "clicks.ip"
},
{
"datatype": "string",
"type": "dimension",
"name": "referrer",
"key": "clicks.referrer"
},
{
"datatype": "date",
"type": "dimension",
"name": "timestamp",
"key": "mousemoves.timestamp"
},
{
"datatype": "string",
"type": "dimension",
"name": "browser",
"key": "mousemoves.browser"
},
{
"datatype": "string",
"type": "dimension",
"name": "engine",
"key": "mousemoves.engine"
},
{
"datatype": "string",
"type": "dimension",
"name": "os",
"key": "mousemoves.os"
},
{
"datatype": "string",
"type": "dimension",
"name": "userid",
"key": "mousemoves.userid"
},
{
"datatype": "ip",
"type": "dimension",
"name": "ip",
"key": "mousemoves.ip"
},
{
"datatype": "string",
"type": "dimension",
"name": "referrer",
"key": "mousemoves.referrer"
}
],
"metrics": [
{
"datatype": "number",
"type": "metric",
"name": "visits",
"key": "visits.visits",
"min": 0,
"max": 1
},
{
"datatype": "number",
"type": "metric",
"name": "loadtime",
"key": "visits.loadtime",
"min": 0,
"max": 10000
},
{
"datatype": "number",
"type": "metric",
"name": "clicks",
"key": "clicks.clicks",
"min": 0,
"max": 1
},
{
"datatype": "number",
"type": "metric",
"name": "mousemoves",
"key": "mousemoves.mousemoves",
"min": 0,
"max": 1000
}
],
"description": ""
},
{
"key": "mousemoves",
"strongTyped": true,
"dimensions": [
{
"datatype": "date",
"type": "dimension",
"name": "timestamp",
"key": "visits.timestamp"
},
{
"datatype": "string",
"type": "dimension",
"name": "browser",
"key": "visits.browser"
},
{
"datatype": "string",
"type": "dimension",
"name": "engine",
"key": "visits.engine"
},
{
"datatype": "string",
"type": "dimension",
"name": "os",
"key": "visits.os"
},
{
"datatype": "string",
"type": "dimension",
"name": "userid",
"key": "visits.userid"
},
{
"datatype": "ip",
"type": "dimension",
"name": "ip",
"key": "visits.ip"
},
{
"datatype": "string",
"type": "dimension",
"name": "referrer",
"key": "visits.referrer"
},
{
"datatype": "date",
"type": "dimension",
"name": "timestamp",
"key": "clicks.timestamp"
},
{
"datatype": "string",
"type": "dimension",
"name": "browser",
"key": "clicks.browser"
},
{
"datatype": "string",
"type": "dimension",
"name": "engine",
"key": "clicks.engine"
},
{
"datatype": "string",
"type": "dimension",
"name": "os",
"key": "clicks.os"
},
{
"datatype": "string",
"type": "dimension",
"name": "userid",
"key": "clicks.userid"
},
{
"datatype": "ip",
"type": "dimension",
"name": "ip",
"key": "clicks.ip"
},
{
"datatype": "string",
"type": "dimension",
"name": "referrer",
"key": "clicks.referrer"
},
{
"datatype": "date",
"type": "dimension",
"name": "timestamp",
"key": "mousemoves.timestamp"
},
{
"datatype": "string",
"type": "dimension",
"name": "browser",
"key": "mousemoves.browser"
},
{
"datatype": "string",
"type": "dimension",
"name": "engine",
"key": "mousemoves.engine"
},
{
"datatype": "string",
"type": "dimension",
"name": "os",
"key": "mousemoves.os"
},
{
"datatype": "string",
"type": "dimension",
"name": "userid",
"key": "mousemoves.userid"
},
{
"datatype": "ip",
"type": "dimension",
"name": "ip",
"key": "mousemoves.ip"
},
{
"datatype": "string",
"type": "dimension",
"name": "referrer",
"key": "mousemoves.referrer"
}
],
"metrics": [
{
"datatype": "number",
"type": "metric",
"name": "visits",
"key": "visits.visits",
"min": 0,
"max": 1
},
{
"datatype": "number",
"type": "metric",
"name": "loadtime",
"key": "visits.loadtime",
"min": 0,
"max": 10000
},
{
"datatype": "number",
"type": "metric",
"name": "clicks",
"key": "clicks.clicks",
"min": 0,
"max": 1
},
{
"datatype": "number",
"type": "metric",
"name": "mousemoves",
"key": "mousemoves.mousemoves",
"min": 0,
"max": 1000
}
],
"description": ""
}
]
## Collection [/collections/{workspace}/{key}{?APIToken}]
+ Parameters
+ workspace (optional, string, `demo`) ... The `Workspace` of the collection performing the action.
+ key (required, string, `clicks`) ... String `key` of the Collection to perform action with.
+ APIToken (optional, string, `apitoken-demo`) ... The `APIToken` of the user performing the action.
### Retrieve a Collection [GET]
+ Response 200 (application/json; charset=utf-8)
+ Body
{
"key": "clicks",
"name": "clicks",
"strongTyped": "true",
"dimensions": [
{
"datatype": "date",
"type": "dimension",
"name": "timestamp",
"key": "timestamp"
},
{
"datatype": "string",
"type": "dimension",
"name": "browser",
"key": "browser"
},
{
"datatype": "string",
"type": "dimension",
"name": "engine",
"key": "engine"
},
{
"datatype": "string",
"type": "dimension",
"name": "os",
"key": "os"
},
{
"datatype": "string",
"type": "dimension",
"name": "userid",
"key": "userid"
},
{
"datatype": "ip",
"type": "dimension",
"name": "ip",
"key": "ip"
},
{
"datatype": "string",
"type": "dimension",
"name": "referrer",
"key": "referrer"
}
],
"description": ""
}
+ Response 401 (application/json; charset=utf-8)
{ "message": "missing permission.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 403 (application/json; charset=utf-8)
{ "message": "forbidden.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 500 (application/json; charset=utf-8)
{ "message": "collection [{key}] does not exist.", "documentation_url": "http://github.com/joola/joola/wiki" }
### Update a Collection [PATCH]
+ Request (application/json; charset=utf-8)
{ "description": "collection description" }
+ Response 200
{
"key": "demo-visits",
"name": "demo-visits",
"strongTyped": "true",
"dimensions": [
{
"datatype": "date",
"type": "dimension",
"name": "timestamp",
"key": "timestamp"
},
{
"datatype": "string",
"type": "dimension",
"name": "browser",
"key": "browser"
},
{
"datatype": "string",
"type": "dimension",
"name": "engine",
"key": "engine"
},
{
"datatype": "string",
"type": "dimension",
"name": "os",
"key": "os"
},
{
"datatype": "string",
"type": "dimension",
"name": "userid",
"key": "userid"
},
{
"datatype": "ip",
"type": "dimension",
"name": "ip",
"key": "ip"
},
{
"datatype": "string",
"type": "dimension",
"name": "referrer",
"key": "referrer"
}
],
"description": "collection description"
}
+ Response 401 (application/json; charset=utf-8)
{ "message": "missing permission.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 403 (application/json; charset=utf-8)
{ "message": "forbidden.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 415 (application/json; charset=utf-8)
{ "message": "unsupported media type.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 500 (application/json; charset=utf-8)
{ "message": "role [{key}] does not exist.", "documentation_url": "http://github.com/joola/joola/wiki" }
### Remove a Collection [DELETE]
+ Response 200
{}
+ Response 401 (application/json; charset=utf-8)
{ "message": "missing permission.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 403 (application/json; charset=utf-8)
{ "message": "forbidden.", "documentation_url": "http://github.com/joola/joola/wiki" }
+ Response 500 (application/json; charset=utf-8)
{ "message": "collection [{key}] does not exist.", "documentation_url": "http://github.com/joola/joola/wiki" }
## Dimensions [/collections/{workspace}/{collection}/dimensions{?APIToken}]
Optional body will compose a joint metadata of collection and document.
+ Parameters
+ workspace (required, string, `demo`) ... The `Workspace` of the collection performing the action.
+ collection (required, string, `visits`) ... String `Collection` of the Collection to perform action with.
+ APIToken (optional, string, `apitoken-demo`) ... The `APIToken` of the user performing the action.
### Retrieve all Dimensions [GET]
+ Request (application/json; charset=utf-8)
{}
+ Response 200 (application/json; charset=utf-8)
+ Body
[
{
"datatype": "date",
"name": "timestamp",
"key": "timestamp"
},
{
"datatype": "string",
"name": "browser",
"key": "browser"
},
{
"datatype": "string",
"name": "engine",
"key": "engine"
},
{
"datatype": "string",
"name": "os",
"key": "os"
},