-
Notifications
You must be signed in to change notification settings - Fork 5
/
openapi.yaml
4684 lines (4589 loc) · 145 KB
/
openapi.yaml
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
openapi: 3.0.0
info:
title: Namely API
description: >-
Move your app forward with the Namely API Move your app forward with the
Namely API
version: ''
x-api-status-urls: false
x-konfig-ignore:
object-with-no-properties: true
servers:
- url: https://{company}.namely.com/api/v1
variables:
company:
default: your-company
tags:
- name: Home Feed
- name: Company Resources
- name: Jobs Info
- name: Groups & Teams
- name: Profile Fields
- name: Profiles
- name: Job Tier
- name: Job Title
- name: Groups
- name: Events
- name: Comments
- name: Profile Fields Sections
- name: Namely System Info
- name: Countries
- name: Notifications
- name: Company Info
- name: Teams
- name: Likes
- name: Reports
paths:
/companies/info:
get:
tags:
- Company Info
summary: Company Info
operationId: CompanyInfo_getInfo
description: >-
Get company related information. This includes authentication methods,
name, permalink, and background image.
Note: Authentication is **not** required for this endpoint because the
data (company name, background image, etc.) are required for displaying
the public home page of a Namely company.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/CompanyInfoGetInfoResponse'
/folders:
get:
tags:
- Company Resources
summary: Get all Folders
operationId: GET_folders
security:
- Authorization: []
description: This endpoint returns a list of folders and their information.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/GetFoldersResponse'
post:
tags:
- Company Resources
summary: Create Folder
operationId: POST_folders
security:
- Authorization: []
description: >-
To create a folder, a title is required. An array of folders will be
returned upon success, similar to folders index endpoint.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Create_Folder'
responses:
'201':
description: Created Reponse
content:
application/json:
schema:
$ref: '#/components/schemas/PostFoldersResponse'
/resources/{id}:
parameters:
- description: The resource's id.
name: id
in: path
required: true
schema:
type: string
get:
tags:
- Company Resources
summary: Get a Resource
operationId: CompanyResources_getById
security:
- Authorization: []
description: >-
Specify the id of the resource to get a complete description. Please see
"Download Resource" documentation to actually download a specific
resource.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/CompanyResourcesGetByIdResponse'
/folders/{id}/resources:
parameters:
- description: Use the folder id to pull the resources you want to see.
name: id
in: path
required: true
schema:
type: string
get:
tags:
- Company Resources
summary: Get Resources in a Folder
operationId: CompanyResources_getFolderResources
security:
- Authorization: []
description: >-
This method returns an array of resources, whose format and content will
be the same as the show resource endpoint.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: >-
#/components/schemas/CompanyResourcesGetFolderResourcesResponse
delete:
tags:
- Company Resources
summary: Delete Resource
operationId: CompanyResources_deleteResourceById
security:
- Authorization: []
description: This endpoint deletes a specified resource.
responses:
'200':
description: Successful Response
/resources:
get:
tags:
- Company Resources
summary: Get Resources not in a Folder
operationId: GET_resources
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/GetResourcesResponse'
/folders/{id}:
parameters:
- description: <code>id</code> of the folder you want to update
name: id
in: path
required: true
schema:
type: string
put:
tags:
- Company Resources
summary: Update Folder
operationId: CompanyResources_updateFolderName
security:
- Authorization: []
description: Updates the name of a folder.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Update_Folder'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/CompanyResourcesUpdateFolderNameResponse'
delete:
tags:
- Company Resources
summary: Delete Folder
operationId: CompanyResources_deleteFolderById
security:
- Authorization: []
description: You must pass in the folder id to delete a specific folder.
responses:
'200':
description: Successful Response
/groups:
get:
tags:
- Groups & Teams
- Groups
summary: Get all Groups
operationId: GET_groups
security:
- Authorization: []
description: >-
Returns an array of all groups. Every group must belong to one and only
one group type. Each group type can have zero to many associated groups.
Although not present in this endpoint, each group can also have zero to
many associated profiles (i.e. people within groups).
Office Locations and Departments are groups.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/GetGroupsResponse'
/groups/{id}:
parameters:
- description: id of the group you want to view
name: id
in: path
required: true
schema:
type: string
get:
tags:
- Groups & Teams
- Groups
summary: Get a Group
operationId: GroupsTeams_getGroupDetails
security:
- Authorization: []
description: >-
Returns same information about the group as in the
#endpoint:Z6r47eQWjcuNA9mq5 endpoint, as well as linked any profiles
associated with that group (zero to many).
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/GroupsTeamsGetGroupDetailsResponse'
/group_types:
get:
tags:
- Groups & Teams
- Groups
summary: Get all Group Types
operationId: GroupsTeams_getAllGroupTypes
security:
- Authorization: []
description: >-
Returns an array of all group types. Although not present in this
endpoint, every group must belong to one and only one group type. Each
group type can have zero to many associated groups. Each group type can
also have zero to many associated profiles (i.e. people within groups
that belong to those group types).
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/GroupsTeamsGetAllGroupTypesResponse'
/group_types/{id}:
parameters:
- description: id of the group type you want to view
name: id
in: path
required: true
schema:
type: string
get:
tags:
- Groups & Teams
summary: Get a Group Type
operationId: GroupsTeams_getGroupTypeDetails
security:
- Authorization: []
description: >-
Returns same information about the group as in the
#endpoint:27wPhQbAeFhxwiHkp endpoint, as well as linked any profiles
associated with that group type (zero to many).
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/GroupsTeamsGetGroupTypeDetailsResponse'
/group_types/{id}/groups:
parameters:
- name: id
in: path
required: true
schema:
type: string
get:
tags:
- Groups & Teams
summary: Get Groups from Group Type
operationId: GroupsTeams_getGroupTypeGroups
security:
- Authorization: []
description: >-
Returns an array of all groups associated with the `id` of the
group_type.
responses:
'200':
description: ''
content:
application/javascript:
schema:
$ref: '#/components/schemas/GroupsTeamsGetGroupTypeGroupsResponse'
/teams:
get:
tags:
- Groups & Teams
- Teams
summary: Get all Teams
operationId: GET_teams
description: >-
Returns an array of all teams as well as linked, a list of team
categories. Every team can belong to zero to many team categories. Each
team category can have zero to many associated teams. Although not
present in this endpoint, each team can also have zero to many
associated profiles (i.e. people within teams).
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/GetTeamsResponse'
/teams/{id}:
parameters:
- description: <code>id</code> of the team you want to view
name: id
in: path
required: true
schema:
type: string
get:
tags:
- Groups & Teams
summary: Get a Team
operationId: GroupsTeams_get
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/GroupsTeamsGetResponse'
/events:
get:
tags:
- Home Feed
- Events
summary: Get all Events
operationId: GET_events
security:
- Authorization: []
description: >-
Returns all events, paginated. Linked to the event is an array of any
profiles that commented on the event. Only events associated with the
profiles of active employees are eligible to appear.
parameters:
- description: Limit of records to be retrieved
name: limit
in: query
schema:
type: integer
maximum: 30
default: ''
- description: >-
<code>id</code> of the first record BEFORE the events you want to
retrieve
name: after
in: query
schema:
type: string
- description: >-
The type of event you want to retrieve; examples include `birthday`,
`announcement`, `recent_arrival` or `anniversary`
name: filter[type]
in: query
schema:
type: string
- description: >-
<code>id</code> of the profile that you wish to pull all associated
events from
name: profile_id
in: query
schema:
type: string
- description: >-
This parameter allows you to change how results are ordered. Valid
values are `asc` and `desc` - It defaults to `desc`
name: order
in: query
schema:
type: string
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/GetEventsResponse'
post:
tags:
- Home Feed
- Events
summary: Create an Announcement
operationId: POST_events
security:
- Authorization: []
description: >-
Creates an announcement. Other event types are auto-generated and cannot
be manually created.
The file parameters allow you to include a file which is located in the
announcement. As with uploading a file to a profile, the file must be
previously uploaded via the `file create` endpoint.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Create_Event'
responses:
'201':
description: Create Response
content:
application/json:
schema:
$ref: '#/components/schemas/PostEventsResponse'
/events/{id}:
parameters:
- description: id of event.
name: id
in: path
required: true
schema:
type: string
get:
tags:
- Home Feed
- Events
summary: Get an Event
operationId: HomeFeed_getEvent
security:
- Authorization: []
description: Returns information about a single event.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/HomeFeedGetEventResponse'
delete:
tags:
- Home Feed
summary: Delete an Announcement
operationId: HomeFeed_deleteAnnouncement
description: Delete a particular event.
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/HomeFeedDeleteAnnouncementResponse'
/events/{event-id}/comments:
parameters:
- description: <code>id</code> of the event whose comments you want to view
name: event-id
in: path
required: true
schema:
type: string
get:
tags:
- Home Feed
- Comments
summary: Get an Event's Comments
operationId: HomeFeed_getEventComments
security:
- Authorization: []
description: Returns all comments associated with a particular event.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/HomeFeedGetEventCommentsResponse'
/likes/event/{event-id}/recent:
parameters:
- description: <code>id</code> of the event whose likes you want to view
name: event-id
in: path
required: true
schema:
type: string
get:
tags:
- Home Feed
- Likes
summary: Get an Event's Likes
operationId: HomeFeed_getEventLikes
security:
- Authorization: []
description: Returns a list of profiles that liked a particular event.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/HomeFeedGetEventLikesResponse'
/likes/event_comment/{comment-id}/recent:
parameters:
- description: <code>id</code> of the comment whose likes you want to view
name: comment-id
in: path
required: true
schema:
type: string
get:
tags:
- Home Feed
summary: Get an Event's Comment's Likes
operationId: HomeFeed_getEventCommentLikes
description: >-
Returns a list of profiles that liked a particular comment on a
particular event.
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/HomeFeedGetEventCommentLikesResponse'
/events/{id}/comments:
parameters:
- description: id of event.
name: id
in: path
required: true
schema:
type: string
post:
tags:
- Home Feed
- Comments
summary: Create an Event's Comment
operationId: HomeFeed_createEventComment
security:
- Authorization: []
description: Creates a comment on a particular event.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Create_Comment'
responses:
'201':
description: Created Response
content:
application/json:
schema:
$ref: '#/components/schemas/HomeFeedCreateEventCommentResponse'
/likes/event/{id}:
parameters:
- description: <code>id</code> of the event you want to like
name: id
in: path
required: true
schema:
type: string
post:
tags:
- Home Feed
summary: Create an Event's Like
operationId: HomeFeed_createEventLike
security:
- Authorization: []
description: >-
Like a particular event simply by `POST`ing to the endpoint with its
<code>id</code> in the path parameters.
responses:
'200':
description: Success!
content:
application/json:
schema:
$ref: '#/components/schemas/HomeFeedCreateEventLikeResponse'
examples:
response:
value:
message:
likes_count: 2
liked_by_current_profile: true
/likes/event_comment/{comment-id}:
parameters:
- description: <code>id</code> of the comment you want to like
name: comment-id
in: path
required: true
schema:
type: string
post:
tags:
- Home Feed
summary: Create an Event's Comment's Like
operationId: HomeFeed_likeEventComment
description: >-
Like a particular comment simply by `POST`ing to the endpoint with its
<code>id</code> in the path parameters.
responses:
default:
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/HomeFeedLikeEventCommentResponse'
delete:
tags:
- Home Feed
summary: Delete an Event's Comment's Like
operationId: HomeFeed_deleteEventCommentLike
description: >-
Delete your like from a particular comment. You can only delete your own
like (from the profile related to the token).
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/HomeFeedDeleteEventCommentLikeResponse'
/events/{event-id}/comments/{comment-id}:
parameters:
- description: <code>id</code> of the event to which the comment belongs
name: event-id
in: path
required: true
schema:
type: string
- description: <code>id</code> of the comment you want to delete from the event
name: comment-id
in: path
required: true
schema:
type: string
delete:
tags:
- Home Feed
- Comments
summary: Delete an Event's Comment
operationId: HomeFeed_removeEventComment
security:
- Authorization: []
description: Delete a particular comment on an event.
responses:
'200':
description: Succssful Response
content:
application/json:
schema:
$ref: '#/components/schemas/HomeFeedRemoveEventCommentResponse'
/likes/event/{event-id}:
parameters:
- description: <code>id</code> of the event from which you want to delete the like
name: event-id
in: path
required: true
schema:
type: string
delete:
tags:
- Home Feed
summary: Delete an Event's Like
operationId: HomeFeed_removeEventLike
security:
- Authorization: []
description: Delete a particular like from an event.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Delete_Like'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/HomeFeedRemoveEventLikeResponse'
/job_tiers:
get:
tags:
- Jobs Info
- Job Tier
summary: Get all Job Tiers
operationId: JobsInfo_getAllJobTiers
security:
- Authorization: []
description: >-
Returns an array of all job tiers. Each job tier can have zero to many
linked job titles (while each job title must have one and only one
linked job tier).
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/JobsInfoGetAllJobTiersResponse'
post:
tags:
- Jobs Info
- Job Tier
summary: Create a Job Tier
operationId: JobsInfo_createJobTier
security:
- Authorization: []
description: Creates a job tier.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Create_Job_Tier'
responses:
'201':
description: Create Response
content:
application/json:
schema:
$ref: '#/components/schemas/JobsInfoCreateJobTierResponse'
/job_tiers/{id}:
parameters:
- description: <code>id</code> of the job tier you want to view
name: id
in: path
required: true
schema:
type: string
get:
tags:
- Jobs Info
- Job Tier
summary: Get a Job Tier
operationId: JobsInfo_getJobTier
security:
- Authorization: []
description: Returns information about a single job tier.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/JobsInfoGetJobTierResponse'
put:
tags:
- Jobs Info
- Job Tier
summary: Update a Job Tier
operationId: JobsInfo_updateLabel
security:
- Authorization: []
description: >-
Updates the label of a job tier.
Use the #endpoint:3iHo6fSyKNs2dsaSC endpoint to get a list of job tiers,
whose <code>id</code> is used in the path parameters.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Update_Job_Tier'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/JobsInfoUpdateLabelResponse'
/job_titles:
get:
tags:
- Jobs Info
- Job Title
summary: Get all Job Titles
operationId: JobsInfo_getAllJobTitles
security:
- Authorization: []
description: >-
Returns all job titles. Each job title must have one and only one linked
job tier (and each job tier can have zero to many linked job titles).
When using the #endpoint:K6iFb2x6z2yTM9jev endpoint, the API user must
either use the <code>title</code> or <code>id</code> of a
<code>job_title</code>.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/JobsInfoGetAllJobTitlesResponse'
post:
tags:
- Jobs Info
- Job Title
summary: Create a Job Title
operationId: JobsInfo_createJobTitle
security:
- Authorization: []
description: >-
Creates a job title.
Use the #endpoint:xfyRRDnWE32d5PNBZ endpoint to get a list of job tiers,
whose <code>id</code> is used to populate the value for the
<code>parent</code> (job tier) key in the request body.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Create_Job_Title'
responses:
'201':
description: Create Response
content:
application/json:
schema:
$ref: '#/components/schemas/JobsInfoCreateJobTitleResponse'
/job_titles/{id}:
parameters:
- description: id of the job title you want to view
name: id
in: path
required: true
schema:
type: string
get:
tags:
- Jobs Info
- Job Title
summary: Get a Job Title
operationId: JobsInfo_getJobTitleById
security:
- Authorization: []
description: >-
Returns information about a single Job Title..
When using the #endpoint:K6iFb2x6z2yTM9jev endpoint, the API user must
either use the <code>title</code> or <code>id</code> of a
<code>job_title</code>.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/JobsInfoGetJobTitleByIdResponse'
put:
tags:
- Jobs Info
- Job Title
summary: Update a Job Title
operationId: JobsInfo_updateJobTitle
security:
- Authorization: []
description: >-
Updates the label and/or parent (job tier) of a job title.
Use the #endpoint:xfyRRDnWE32d5PNBZ endpoint to get a list of job tiers,
whose <code>id</code> is used to populate the value for the
<code>parent</code> (job tier) key in the request body.
If not updating the <code>parent</code>, use the <code>id</code> of the
current <code>parent</code> value; if not updating the
<code>title</code>, use the current job title <code>title</code>.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Update_Job_Title'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/JobsInfoUpdateJobTitleResponse'
/countries:
get:
tags:
- Namely System Info
- Countries
summary: Get all Countries
operationId: GET_countries
security:
- Authorization: []
description: >-
Returns all valid countries in Namely. A country is universal and may
not be modified.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/GetCountriesResponse'
/countries/{id}:
parameters:
- description: >-
id of the country (an abbreviation of the country's name) you want to
view
name: id
in: path
required: true
schema:
type: string
get:
tags:
- Namely System Info
- Countries
summary: Get a Country
operationId: NamelySystemInfo_getCountryDetails
security:
- Authorization: []
description: >-
Returns one country, as well as a list of a country’s subdivisions (e.g.
a list of its states or provinces).
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/NamelySystemInfoGetCountryDetailsResponse'
/notifications:
get:
tags:
- Notifications
summary: Get all Notifications
operationId: GET_notifications
security:
- Authorization: []
description: >-
Returns all notifications for the current API user/token bearer.
There are three main types of notifications:
1. Time Off
2. Mentioned/Appreciated
3. Generic (All Other)
<strong>There are also three "200" responses on this page</strong>.
However, the actual notification response is a combination of all three
responses (assuming the user has received all three types of
notifications).
Time Off and Mentioned/Appreciated have distinct "links" associated with