@apteva/integrations 0.3.38 → 0.3.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/apps/firecrawl.json +363 -105
- package/src/apps/gigs-marketplace.json +95 -152
- package/src/apps/omnikit-cms.json +18 -0
- package/src/apps/omnikit-code-ops.json +18 -0
- package/src/apps/omnikit-messaging.json +18 -0
- package/src/apps/omnikit-storage.json +49 -105
- package/src/apps/pushover.json +92 -15
- package/src/apps/rankbird.json +1 -1
- package/src/apps/sendgrid.json +226 -33
- package/src/apps/socialcast.json +13 -1
- package/src/apps/stripe.json +609 -151
- package/src/apps/pushover-notifications.json +0 -119
- package/src/apps/sendgrid-email.json +0 -275
- package/src/apps/stripe-payments.json +0 -911
|
@@ -16,18 +16,13 @@
|
|
|
16
16
|
"api_key"
|
|
17
17
|
],
|
|
18
18
|
"headers": {
|
|
19
|
-
"X-API-Key": "{{
|
|
19
|
+
"X-API-Key": "{{token}}"
|
|
20
20
|
},
|
|
21
21
|
"credential_fields": [
|
|
22
22
|
{
|
|
23
|
-
"name": "
|
|
23
|
+
"name": "token",
|
|
24
24
|
"label": "Api Key",
|
|
25
25
|
"description": "Your Gigs API key"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"name": "userId",
|
|
29
|
-
"label": "User Id",
|
|
30
|
-
"description": "Default user ID for operations (can be overridden per request)"
|
|
31
26
|
}
|
|
32
27
|
]
|
|
33
28
|
},
|
|
@@ -59,6 +54,10 @@
|
|
|
59
54
|
"description": "Deadline in ISO 8601 format (YYYY-MM-DD)",
|
|
60
55
|
"format": "date"
|
|
61
56
|
},
|
|
57
|
+
"project_id": {
|
|
58
|
+
"type": "integer",
|
|
59
|
+
"description": "Associated project ID"
|
|
60
|
+
},
|
|
62
61
|
"template_id": {
|
|
63
62
|
"type": "integer",
|
|
64
63
|
"description": "Template ID to apply instructions from"
|
|
@@ -78,12 +77,11 @@
|
|
|
78
77
|
},
|
|
79
78
|
"userId": {
|
|
80
79
|
"type": "integer",
|
|
81
|
-
"description": "User ID
|
|
80
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
82
81
|
}
|
|
83
82
|
},
|
|
84
83
|
"required": [
|
|
85
|
-
"title"
|
|
86
|
-
"userId"
|
|
84
|
+
"title"
|
|
87
85
|
]
|
|
88
86
|
}
|
|
89
87
|
},
|
|
@@ -97,7 +95,7 @@
|
|
|
97
95
|
"properties": {
|
|
98
96
|
"userId": {
|
|
99
97
|
"type": "integer",
|
|
100
|
-
"description": "User ID for
|
|
98
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
101
99
|
},
|
|
102
100
|
"role": {
|
|
103
101
|
"type": "string",
|
|
@@ -142,7 +140,7 @@
|
|
|
142
140
|
"name": "get_gig_details",
|
|
143
141
|
"description": "Get detailed information about a specific gig",
|
|
144
142
|
"method": "GET",
|
|
145
|
-
"path": "/gigs
|
|
143
|
+
"path": "/gigs/%7B%7Bid%7D%7D",
|
|
146
144
|
"input_schema": {
|
|
147
145
|
"type": "object",
|
|
148
146
|
"properties": {
|
|
@@ -160,7 +158,7 @@
|
|
|
160
158
|
"name": "assign_gig",
|
|
161
159
|
"description": "Assign a gig to a worker (client only)",
|
|
162
160
|
"method": "POST",
|
|
163
|
-
"path": "/gigs/
|
|
161
|
+
"path": "/gigs/%7B%7Bid%7D%7D/assign",
|
|
164
162
|
"input_schema": {
|
|
165
163
|
"type": "object",
|
|
166
164
|
"properties": {
|
|
@@ -174,13 +172,12 @@
|
|
|
174
172
|
},
|
|
175
173
|
"userId": {
|
|
176
174
|
"type": "integer",
|
|
177
|
-
"description": "
|
|
175
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
178
176
|
}
|
|
179
177
|
},
|
|
180
178
|
"required": [
|
|
181
179
|
"id",
|
|
182
|
-
"worker_id"
|
|
183
|
-
"userId"
|
|
180
|
+
"worker_id"
|
|
184
181
|
]
|
|
185
182
|
}
|
|
186
183
|
},
|
|
@@ -188,7 +185,7 @@
|
|
|
188
185
|
"name": "update_gig_status",
|
|
189
186
|
"description": "Update the status of a gig",
|
|
190
187
|
"method": "PUT",
|
|
191
|
-
"path": "/gigs/
|
|
188
|
+
"path": "/gigs/%7B%7Bid%7D%7D/status",
|
|
192
189
|
"input_schema": {
|
|
193
190
|
"type": "object",
|
|
194
191
|
"properties": {
|
|
@@ -210,13 +207,12 @@
|
|
|
210
207
|
},
|
|
211
208
|
"userId": {
|
|
212
209
|
"type": "integer",
|
|
213
|
-
"description": "User ID
|
|
210
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
214
211
|
}
|
|
215
212
|
},
|
|
216
213
|
"required": [
|
|
217
214
|
"id",
|
|
218
|
-
"status"
|
|
219
|
-
"userId"
|
|
215
|
+
"status"
|
|
220
216
|
]
|
|
221
217
|
}
|
|
222
218
|
},
|
|
@@ -224,7 +220,7 @@
|
|
|
224
220
|
"name": "update_gig",
|
|
225
221
|
"description": "Update gig details such as title, description, budget, deadline, or priority",
|
|
226
222
|
"method": "PUT",
|
|
227
|
-
"path": "/gigs
|
|
223
|
+
"path": "/gigs/%7B%7Bid%7D%7D",
|
|
228
224
|
"input_schema": {
|
|
229
225
|
"type": "object",
|
|
230
226
|
"properties": {
|
|
@@ -269,7 +265,7 @@
|
|
|
269
265
|
"name": "cancel_gig",
|
|
270
266
|
"description": "Cancel a gig (client only)",
|
|
271
267
|
"method": "DELETE",
|
|
272
|
-
"path": "/gigs
|
|
268
|
+
"path": "/gigs/%7B%7Bid%7D%7D",
|
|
273
269
|
"input_schema": {
|
|
274
270
|
"type": "object",
|
|
275
271
|
"properties": {
|
|
@@ -283,12 +279,11 @@
|
|
|
283
279
|
},
|
|
284
280
|
"userId": {
|
|
285
281
|
"type": "integer",
|
|
286
|
-
"description": "User ID
|
|
282
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
287
283
|
}
|
|
288
284
|
},
|
|
289
285
|
"required": [
|
|
290
|
-
"id"
|
|
291
|
-
"userId"
|
|
286
|
+
"id"
|
|
292
287
|
]
|
|
293
288
|
}
|
|
294
289
|
},
|
|
@@ -352,13 +347,12 @@
|
|
|
352
347
|
},
|
|
353
348
|
"userId": {
|
|
354
349
|
"type": "integer",
|
|
355
|
-
"description": "User ID
|
|
350
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
356
351
|
}
|
|
357
352
|
},
|
|
358
353
|
"required": [
|
|
359
354
|
"name",
|
|
360
|
-
"content"
|
|
361
|
-
"userId"
|
|
355
|
+
"content"
|
|
362
356
|
]
|
|
363
357
|
}
|
|
364
358
|
},
|
|
@@ -380,7 +374,7 @@
|
|
|
380
374
|
},
|
|
381
375
|
"userId": {
|
|
382
376
|
"type": "integer",
|
|
383
|
-
"description": "
|
|
377
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
384
378
|
},
|
|
385
379
|
"limit": {
|
|
386
380
|
"type": "integer",
|
|
@@ -417,7 +411,7 @@
|
|
|
417
411
|
},
|
|
418
412
|
"userId": {
|
|
419
413
|
"type": "integer",
|
|
420
|
-
"description": "User ID
|
|
414
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
421
415
|
},
|
|
422
416
|
"limit": {
|
|
423
417
|
"type": "integer",
|
|
@@ -467,12 +461,11 @@
|
|
|
467
461
|
},
|
|
468
462
|
"userId": {
|
|
469
463
|
"type": "integer",
|
|
470
|
-
"description": "User ID
|
|
464
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
471
465
|
}
|
|
472
466
|
},
|
|
473
467
|
"required": [
|
|
474
|
-
"name"
|
|
475
|
-
"userId"
|
|
468
|
+
"name"
|
|
476
469
|
]
|
|
477
470
|
}
|
|
478
471
|
},
|
|
@@ -494,7 +487,7 @@
|
|
|
494
487
|
},
|
|
495
488
|
"userId": {
|
|
496
489
|
"type": "integer",
|
|
497
|
-
"description": "
|
|
490
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
498
491
|
},
|
|
499
492
|
"limit": {
|
|
500
493
|
"type": "integer",
|
|
@@ -516,7 +509,7 @@
|
|
|
516
509
|
"name": "apply_template_to_gig",
|
|
517
510
|
"description": "Apply a template's instructions to a gig",
|
|
518
511
|
"method": "POST",
|
|
519
|
-
"path": "/gigs/
|
|
512
|
+
"path": "/gigs/%7B%7Bid%7D%7D/apply-template",
|
|
520
513
|
"input_schema": {
|
|
521
514
|
"type": "object",
|
|
522
515
|
"properties": {
|
|
@@ -530,13 +523,12 @@
|
|
|
530
523
|
},
|
|
531
524
|
"userId": {
|
|
532
525
|
"type": "integer",
|
|
533
|
-
"description": "User ID
|
|
526
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
534
527
|
}
|
|
535
528
|
},
|
|
536
529
|
"required": [
|
|
537
530
|
"id",
|
|
538
|
-
"template_id"
|
|
539
|
-
"userId"
|
|
531
|
+
"template_id"
|
|
540
532
|
]
|
|
541
533
|
}
|
|
542
534
|
},
|
|
@@ -544,7 +536,7 @@
|
|
|
544
536
|
"name": "add_instruction_to_gig",
|
|
545
537
|
"description": "Add an instruction from the instruction library to a gig. Use 'List Instructions' or 'Search Instructions' to find the library instruction_id.",
|
|
546
538
|
"method": "POST",
|
|
547
|
-
"path": "/gigs/
|
|
539
|
+
"path": "/gigs/%7B%7Bid%7D%7D/instructions",
|
|
548
540
|
"input_schema": {
|
|
549
541
|
"type": "object",
|
|
550
542
|
"properties": {
|
|
@@ -566,13 +558,12 @@
|
|
|
566
558
|
},
|
|
567
559
|
"userId": {
|
|
568
560
|
"type": "integer",
|
|
569
|
-
"description": "User ID
|
|
561
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
570
562
|
}
|
|
571
563
|
},
|
|
572
564
|
"required": [
|
|
573
565
|
"id",
|
|
574
|
-
"instruction_id"
|
|
575
|
-
"userId"
|
|
566
|
+
"instruction_id"
|
|
576
567
|
]
|
|
577
568
|
}
|
|
578
569
|
},
|
|
@@ -580,7 +571,7 @@
|
|
|
580
571
|
"name": "get_gig_instructions",
|
|
581
572
|
"description": "Get all instructions attached to a gig. Returns gig_instructions records with their 'id' (needed for remove/complete/customize/reset operations), instruction details, completion status, and submitted files.",
|
|
582
573
|
"method": "GET",
|
|
583
|
-
"path": "/gigs/
|
|
574
|
+
"path": "/gigs/%7B%7Bid%7D%7D/instructions",
|
|
584
575
|
"input_schema": {
|
|
585
576
|
"type": "object",
|
|
586
577
|
"properties": {
|
|
@@ -598,7 +589,7 @@
|
|
|
598
589
|
"name": "mark_instruction_complete",
|
|
599
590
|
"description": "Mark a gig instruction as completed. Use 'Get Gig Instructions' first to find the gig_instructions record ID.",
|
|
600
591
|
"method": "PUT",
|
|
601
|
-
"path": "/gigs/
|
|
592
|
+
"path": "/gigs/%7B%7Bid%7D%7D/instructions/%7B%7BinstructionId%7D%7D/complete",
|
|
602
593
|
"input_schema": {
|
|
603
594
|
"type": "object",
|
|
604
595
|
"properties": {
|
|
@@ -612,13 +603,12 @@
|
|
|
612
603
|
},
|
|
613
604
|
"userId": {
|
|
614
605
|
"type": "integer",
|
|
615
|
-
"description": "User ID
|
|
606
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
616
607
|
}
|
|
617
608
|
},
|
|
618
609
|
"required": [
|
|
619
610
|
"id",
|
|
620
|
-
"instructionId"
|
|
621
|
-
"userId"
|
|
611
|
+
"instructionId"
|
|
622
612
|
]
|
|
623
613
|
}
|
|
624
614
|
},
|
|
@@ -626,7 +616,7 @@
|
|
|
626
616
|
"name": "submit_work",
|
|
627
617
|
"description": "Submit work files for a gig",
|
|
628
618
|
"method": "POST",
|
|
629
|
-
"path": "/gigs/
|
|
619
|
+
"path": "/gigs/%7B%7Bid%7D%7D/submissions",
|
|
630
620
|
"input_schema": {
|
|
631
621
|
"type": "object",
|
|
632
622
|
"properties": {
|
|
@@ -656,14 +646,13 @@
|
|
|
656
646
|
},
|
|
657
647
|
"userId": {
|
|
658
648
|
"type": "integer",
|
|
659
|
-
"description": "
|
|
649
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
660
650
|
}
|
|
661
651
|
},
|
|
662
652
|
"required": [
|
|
663
653
|
"id",
|
|
664
654
|
"file_name",
|
|
665
|
-
"file_url"
|
|
666
|
-
"userId"
|
|
655
|
+
"file_url"
|
|
667
656
|
]
|
|
668
657
|
}
|
|
669
658
|
},
|
|
@@ -671,7 +660,7 @@
|
|
|
671
660
|
"name": "get_submissions",
|
|
672
661
|
"description": "Get all submissions for a gig",
|
|
673
662
|
"method": "GET",
|
|
674
|
-
"path": "/gigs/
|
|
663
|
+
"path": "/gigs/%7B%7Bid%7D%7D/submissions",
|
|
675
664
|
"input_schema": {
|
|
676
665
|
"type": "object",
|
|
677
666
|
"properties": {
|
|
@@ -689,7 +678,7 @@
|
|
|
689
678
|
"name": "review_submission",
|
|
690
679
|
"description": "Review and approve/reject a work submission (client only)",
|
|
691
680
|
"method": "POST",
|
|
692
|
-
"path": "/gigs/
|
|
681
|
+
"path": "/gigs/%7B%7Bid%7D%7D/submissions/%7B%7BsubmissionId%7D%7D/review",
|
|
693
682
|
"input_schema": {
|
|
694
683
|
"type": "object",
|
|
695
684
|
"properties": {
|
|
@@ -716,14 +705,13 @@
|
|
|
716
705
|
},
|
|
717
706
|
"userId": {
|
|
718
707
|
"type": "integer",
|
|
719
|
-
"description": "
|
|
708
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
720
709
|
}
|
|
721
710
|
},
|
|
722
711
|
"required": [
|
|
723
712
|
"id",
|
|
724
713
|
"submissionId",
|
|
725
|
-
"status"
|
|
726
|
-
"userId"
|
|
714
|
+
"status"
|
|
727
715
|
]
|
|
728
716
|
}
|
|
729
717
|
},
|
|
@@ -731,7 +719,7 @@
|
|
|
731
719
|
"name": "request_revision",
|
|
732
720
|
"description": "Request changes to a work submission",
|
|
733
721
|
"method": "POST",
|
|
734
|
-
"path": "/gigs/
|
|
722
|
+
"path": "/gigs/%7B%7Bid%7D%7D/submissions/%7B%7BsubmissionId%7D%7D/revision",
|
|
735
723
|
"input_schema": {
|
|
736
724
|
"type": "object",
|
|
737
725
|
"properties": {
|
|
@@ -749,14 +737,13 @@
|
|
|
749
737
|
},
|
|
750
738
|
"userId": {
|
|
751
739
|
"type": "integer",
|
|
752
|
-
"description": "User ID
|
|
740
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
753
741
|
}
|
|
754
742
|
},
|
|
755
743
|
"required": [
|
|
756
744
|
"id",
|
|
757
745
|
"submissionId",
|
|
758
|
-
"revision_notes"
|
|
759
|
-
"userId"
|
|
746
|
+
"revision_notes"
|
|
760
747
|
]
|
|
761
748
|
}
|
|
762
749
|
},
|
|
@@ -764,7 +751,7 @@
|
|
|
764
751
|
"name": "get_gig_activity",
|
|
765
752
|
"description": "Get activity log/history for a gig",
|
|
766
753
|
"method": "GET",
|
|
767
|
-
"path": "/gigs/
|
|
754
|
+
"path": "/gigs/%7B%7Bid%7D%7D/activity",
|
|
768
755
|
"input_schema": {
|
|
769
756
|
"type": "object",
|
|
770
757
|
"properties": {
|
|
@@ -796,6 +783,10 @@
|
|
|
796
783
|
],
|
|
797
784
|
"default": "all"
|
|
798
785
|
},
|
|
786
|
+
"project_id": {
|
|
787
|
+
"type": "integer",
|
|
788
|
+
"description": "Filter by project ID"
|
|
789
|
+
},
|
|
799
790
|
"limit": {
|
|
800
791
|
"type": "integer",
|
|
801
792
|
"description": "Number of users to return",
|
|
@@ -816,7 +807,7 @@
|
|
|
816
807
|
"name": "get_instruction",
|
|
817
808
|
"description": "Get a single instruction from the library by ID",
|
|
818
809
|
"method": "GET",
|
|
819
|
-
"path": "/instructions
|
|
810
|
+
"path": "/instructions/%7B%7Bid%7D%7D",
|
|
820
811
|
"input_schema": {
|
|
821
812
|
"type": "object",
|
|
822
813
|
"properties": {
|
|
@@ -826,7 +817,7 @@
|
|
|
826
817
|
},
|
|
827
818
|
"userId": {
|
|
828
819
|
"type": "integer",
|
|
829
|
-
"description": "User ID
|
|
820
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
830
821
|
}
|
|
831
822
|
},
|
|
832
823
|
"required": [
|
|
@@ -838,7 +829,7 @@
|
|
|
838
829
|
"name": "update_instruction",
|
|
839
830
|
"description": "Update an instruction's content, media, or settings",
|
|
840
831
|
"method": "PUT",
|
|
841
|
-
"path": "/instructions
|
|
832
|
+
"path": "/instructions/%7B%7Bid%7D%7D",
|
|
842
833
|
"input_schema": {
|
|
843
834
|
"type": "object",
|
|
844
835
|
"properties": {
|
|
@@ -902,7 +893,7 @@
|
|
|
902
893
|
"name": "delete_instruction",
|
|
903
894
|
"description": "Delete an instruction from the library",
|
|
904
895
|
"method": "DELETE",
|
|
905
|
-
"path": "/instructions
|
|
896
|
+
"path": "/instructions/%7B%7Bid%7D%7D",
|
|
906
897
|
"input_schema": {
|
|
907
898
|
"type": "object",
|
|
908
899
|
"properties": {
|
|
@@ -912,12 +903,11 @@
|
|
|
912
903
|
},
|
|
913
904
|
"userId": {
|
|
914
905
|
"type": "integer",
|
|
915
|
-
"description": "User ID
|
|
906
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
916
907
|
}
|
|
917
908
|
},
|
|
918
909
|
"required": [
|
|
919
|
-
"id"
|
|
920
|
-
"userId"
|
|
910
|
+
"id"
|
|
921
911
|
]
|
|
922
912
|
}
|
|
923
913
|
},
|
|
@@ -925,7 +915,7 @@
|
|
|
925
915
|
"name": "get_template",
|
|
926
916
|
"description": "Get a template with its instructions",
|
|
927
917
|
"method": "GET",
|
|
928
|
-
"path": "/templates
|
|
918
|
+
"path": "/templates/%7B%7Bid%7D%7D",
|
|
929
919
|
"input_schema": {
|
|
930
920
|
"type": "object",
|
|
931
921
|
"properties": {
|
|
@@ -935,7 +925,7 @@
|
|
|
935
925
|
},
|
|
936
926
|
"userId": {
|
|
937
927
|
"type": "integer",
|
|
938
|
-
"description": "User ID
|
|
928
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
939
929
|
}
|
|
940
930
|
},
|
|
941
931
|
"required": [
|
|
@@ -973,12 +963,11 @@
|
|
|
973
963
|
},
|
|
974
964
|
"userId": {
|
|
975
965
|
"type": "integer",
|
|
976
|
-
"description": "User ID
|
|
966
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
977
967
|
}
|
|
978
968
|
},
|
|
979
969
|
"required": [
|
|
980
|
-
"id"
|
|
981
|
-
"userId"
|
|
970
|
+
"id"
|
|
982
971
|
]
|
|
983
972
|
}
|
|
984
973
|
},
|
|
@@ -986,7 +975,7 @@
|
|
|
986
975
|
"name": "delete_template",
|
|
987
976
|
"description": "Delete a gig template",
|
|
988
977
|
"method": "DELETE",
|
|
989
|
-
"path": "/gigs/templates
|
|
978
|
+
"path": "/gigs/templates/%7B%7Bid%7D%7D",
|
|
990
979
|
"input_schema": {
|
|
991
980
|
"type": "object",
|
|
992
981
|
"properties": {
|
|
@@ -996,12 +985,11 @@
|
|
|
996
985
|
},
|
|
997
986
|
"userId": {
|
|
998
987
|
"type": "integer",
|
|
999
|
-
"description": "User ID
|
|
988
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
1000
989
|
}
|
|
1001
990
|
},
|
|
1002
991
|
"required": [
|
|
1003
|
-
"id"
|
|
1004
|
-
"userId"
|
|
992
|
+
"id"
|
|
1005
993
|
]
|
|
1006
994
|
}
|
|
1007
995
|
},
|
|
@@ -1009,7 +997,7 @@
|
|
|
1009
997
|
"name": "clone_template",
|
|
1010
998
|
"description": "Create a copy of a template for customization",
|
|
1011
999
|
"method": "POST",
|
|
1012
|
-
"path": "/gigs/templates/
|
|
1000
|
+
"path": "/gigs/templates/%7B%7Bid%7D%7D/clone",
|
|
1013
1001
|
"input_schema": {
|
|
1014
1002
|
"type": "object",
|
|
1015
1003
|
"properties": {
|
|
@@ -1023,13 +1011,12 @@
|
|
|
1023
1011
|
},
|
|
1024
1012
|
"userId": {
|
|
1025
1013
|
"type": "integer",
|
|
1026
|
-
"description": "User ID
|
|
1014
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
1027
1015
|
}
|
|
1028
1016
|
},
|
|
1029
1017
|
"required": [
|
|
1030
1018
|
"id",
|
|
1031
|
-
"name"
|
|
1032
|
-
"userId"
|
|
1019
|
+
"name"
|
|
1033
1020
|
]
|
|
1034
1021
|
}
|
|
1035
1022
|
},
|
|
@@ -1037,7 +1024,7 @@
|
|
|
1037
1024
|
"name": "add_instruction_to_template",
|
|
1038
1025
|
"description": "Add an instruction from the library to a template",
|
|
1039
1026
|
"method": "POST",
|
|
1040
|
-
"path": "/templates/
|
|
1027
|
+
"path": "/templates/%7B%7Bid%7D%7D/instructions",
|
|
1041
1028
|
"input_schema": {
|
|
1042
1029
|
"type": "object",
|
|
1043
1030
|
"properties": {
|
|
@@ -1060,7 +1047,7 @@
|
|
|
1060
1047
|
},
|
|
1061
1048
|
"userId": {
|
|
1062
1049
|
"type": "integer",
|
|
1063
|
-
"description": "User ID
|
|
1050
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
1064
1051
|
}
|
|
1065
1052
|
},
|
|
1066
1053
|
"required": [
|
|
@@ -1074,7 +1061,7 @@
|
|
|
1074
1061
|
"name": "remove_instruction_from_template",
|
|
1075
1062
|
"description": "Remove an instruction from a template",
|
|
1076
1063
|
"method": "DELETE",
|
|
1077
|
-
"path": "/templates/
|
|
1064
|
+
"path": "/templates/%7B%7Bid%7D%7D/instructions/%7B%7BinstructionId%7D%7D",
|
|
1078
1065
|
"input_schema": {
|
|
1079
1066
|
"type": "object",
|
|
1080
1067
|
"properties": {
|
|
@@ -1088,7 +1075,7 @@
|
|
|
1088
1075
|
},
|
|
1089
1076
|
"userId": {
|
|
1090
1077
|
"type": "integer",
|
|
1091
|
-
"description": "User ID
|
|
1078
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
1092
1079
|
}
|
|
1093
1080
|
},
|
|
1094
1081
|
"required": [
|
|
@@ -1101,7 +1088,7 @@
|
|
|
1101
1088
|
"name": "reorder_template_instructions",
|
|
1102
1089
|
"description": "Reorder the instructions within a template",
|
|
1103
1090
|
"method": "PUT",
|
|
1104
|
-
"path": "/gigs/templates/
|
|
1091
|
+
"path": "/gigs/templates/%7B%7Bid%7D%7D/instructions/reorder",
|
|
1105
1092
|
"input_schema": {
|
|
1106
1093
|
"type": "object",
|
|
1107
1094
|
"properties": {
|
|
@@ -1126,13 +1113,12 @@
|
|
|
1126
1113
|
},
|
|
1127
1114
|
"userId": {
|
|
1128
1115
|
"type": "integer",
|
|
1129
|
-
"description": "User ID
|
|
1116
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
1130
1117
|
}
|
|
1131
1118
|
},
|
|
1132
1119
|
"required": [
|
|
1133
1120
|
"id",
|
|
1134
|
-
"instructions"
|
|
1135
|
-
"userId"
|
|
1121
|
+
"instructions"
|
|
1136
1122
|
]
|
|
1137
1123
|
}
|
|
1138
1124
|
},
|
|
@@ -1158,14 +1144,13 @@
|
|
|
1158
1144
|
},
|
|
1159
1145
|
"userId": {
|
|
1160
1146
|
"type": "integer",
|
|
1161
|
-
"description": "User ID
|
|
1147
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
1162
1148
|
}
|
|
1163
1149
|
},
|
|
1164
1150
|
"required": [
|
|
1165
1151
|
"id",
|
|
1166
1152
|
"template_id",
|
|
1167
|
-
"is_required"
|
|
1168
|
-
"userId"
|
|
1153
|
+
"is_required"
|
|
1169
1154
|
]
|
|
1170
1155
|
}
|
|
1171
1156
|
},
|
|
@@ -1173,7 +1158,7 @@
|
|
|
1173
1158
|
"name": "remove_gig_instruction",
|
|
1174
1159
|
"description": "Remove an instruction from a gig. Use 'Get Gig Instructions' first to find the gig_instructions record ID for the instruction you want to remove.",
|
|
1175
1160
|
"method": "DELETE",
|
|
1176
|
-
"path": "/gigs/
|
|
1161
|
+
"path": "/gigs/%7B%7Bid%7D%7D/instructions/%7B%7BinstructionId%7D%7D",
|
|
1177
1162
|
"input_schema": {
|
|
1178
1163
|
"type": "object",
|
|
1179
1164
|
"properties": {
|
|
@@ -1196,7 +1181,7 @@
|
|
|
1196
1181
|
"name": "customize_gig_instruction",
|
|
1197
1182
|
"description": "Customize an instruction for a specific gig with custom content or media. Use 'Get Gig Instructions' first to find the gig_instructions record ID.",
|
|
1198
1183
|
"method": "PUT",
|
|
1199
|
-
"path": "/gigs/
|
|
1184
|
+
"path": "/gigs/%7B%7Bid%7D%7D/instructions/%7B%7BinstructionId%7D%7D",
|
|
1200
1185
|
"input_schema": {
|
|
1201
1186
|
"type": "object",
|
|
1202
1187
|
"properties": {
|
|
@@ -1222,13 +1207,12 @@
|
|
|
1222
1207
|
},
|
|
1223
1208
|
"userId": {
|
|
1224
1209
|
"type": "integer",
|
|
1225
|
-
"description": "User ID
|
|
1210
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
1226
1211
|
}
|
|
1227
1212
|
},
|
|
1228
1213
|
"required": [
|
|
1229
1214
|
"id",
|
|
1230
|
-
"instructionId"
|
|
1231
|
-
"userId"
|
|
1215
|
+
"instructionId"
|
|
1232
1216
|
]
|
|
1233
1217
|
}
|
|
1234
1218
|
},
|
|
@@ -1271,7 +1255,7 @@
|
|
|
1271
1255
|
"name": "delete_submission",
|
|
1272
1256
|
"description": "Delete a work submission from a gig",
|
|
1273
1257
|
"method": "DELETE",
|
|
1274
|
-
"path": "/gigs/
|
|
1258
|
+
"path": "/gigs/%7B%7Bid%7D%7D/submissions/%7B%7BsubmissionId%7D%7D",
|
|
1275
1259
|
"input_schema": {
|
|
1276
1260
|
"type": "object",
|
|
1277
1261
|
"properties": {
|
|
@@ -1285,13 +1269,12 @@
|
|
|
1285
1269
|
},
|
|
1286
1270
|
"userId": {
|
|
1287
1271
|
"type": "integer",
|
|
1288
|
-
"description": "User ID
|
|
1272
|
+
"description": "Optional. User ID for audit trail / tracking"
|
|
1289
1273
|
}
|
|
1290
1274
|
},
|
|
1291
1275
|
"required": [
|
|
1292
1276
|
"id",
|
|
1293
|
-
"submissionId"
|
|
1294
|
-
"userId"
|
|
1277
|
+
"submissionId"
|
|
1295
1278
|
]
|
|
1296
1279
|
}
|
|
1297
1280
|
},
|
|
@@ -1299,17 +1282,22 @@
|
|
|
1299
1282
|
"name": "complete_gig",
|
|
1300
1283
|
"description": "Complete a gig by verifying all required instructions are done, creating a submissions folder, moving files, and updating status to completed",
|
|
1301
1284
|
"method": "POST",
|
|
1302
|
-
"path": "/gigs/
|
|
1285
|
+
"path": "/gigs/%7B%7Bid%7D%7D/complete",
|
|
1303
1286
|
"input_schema": {
|
|
1304
1287
|
"type": "object",
|
|
1305
1288
|
"properties": {
|
|
1306
1289
|
"id": {
|
|
1307
1290
|
"type": "integer",
|
|
1308
1291
|
"description": "Gig ID to complete"
|
|
1292
|
+
},
|
|
1293
|
+
"project_id": {
|
|
1294
|
+
"type": "integer",
|
|
1295
|
+
"description": "Project ID for storage operations (required for folder creation)"
|
|
1309
1296
|
}
|
|
1310
1297
|
},
|
|
1311
1298
|
"required": [
|
|
1312
|
-
"id"
|
|
1299
|
+
"id",
|
|
1300
|
+
"project_id"
|
|
1313
1301
|
]
|
|
1314
1302
|
}
|
|
1315
1303
|
},
|
|
@@ -1317,7 +1305,7 @@
|
|
|
1317
1305
|
"name": "reset_instruction_status",
|
|
1318
1306
|
"description": "Reset a gig instruction to not completed, clearing all submission data and files. Use 'Get Gig Instructions' first to find the gig_instructions record ID.",
|
|
1319
1307
|
"method": "PUT",
|
|
1320
|
-
"path": "/gigs/
|
|
1308
|
+
"path": "/gigs/%7B%7Bid%7D%7D/instructions/%7B%7BinstructionId%7D%7D/reset",
|
|
1321
1309
|
"input_schema": {
|
|
1322
1310
|
"type": "object",
|
|
1323
1311
|
"properties": {
|
|
@@ -1431,7 +1419,7 @@
|
|
|
1431
1419
|
"name": "delete_user",
|
|
1432
1420
|
"description": "Delete a user (model) from the gigs platform and their linked contact record. Only users belonging to the modeling project can be deleted.",
|
|
1433
1421
|
"method": "DELETE",
|
|
1434
|
-
"path": "/users
|
|
1422
|
+
"path": "/users/%7B%7Buser_id%7D%7D",
|
|
1435
1423
|
"input_schema": {
|
|
1436
1424
|
"type": "object",
|
|
1437
1425
|
"properties": {
|
|
@@ -1449,7 +1437,7 @@
|
|
|
1449
1437
|
"name": "update_user",
|
|
1450
1438
|
"description": "Update a user (model) profile and contact details. Changes are automatically synced to the linked contact record. Supports phone, notes, tags, and custom attributes.",
|
|
1451
1439
|
"method": "PUT",
|
|
1452
|
-
"path": "/users
|
|
1440
|
+
"path": "/users/%7B%7Buser_id%7D%7D",
|
|
1453
1441
|
"input_schema": {
|
|
1454
1442
|
"type": "object",
|
|
1455
1443
|
"properties": {
|
|
@@ -1509,50 +1497,5 @@
|
|
|
1509
1497
|
]
|
|
1510
1498
|
}
|
|
1511
1499
|
}
|
|
1512
|
-
]
|
|
1513
|
-
"webhooks": {
|
|
1514
|
-
"signature_header": "x-webhook-signature",
|
|
1515
|
-
"events": [
|
|
1516
|
-
{
|
|
1517
|
-
"name": "gig.created",
|
|
1518
|
-
"description": "New gig created"
|
|
1519
|
-
},
|
|
1520
|
-
{
|
|
1521
|
-
"name": "gig.assigned",
|
|
1522
|
-
"description": "Gig assigned to a worker"
|
|
1523
|
-
},
|
|
1524
|
-
{
|
|
1525
|
-
"name": "gig.status_updated",
|
|
1526
|
-
"description": "Gig status manually changed"
|
|
1527
|
-
},
|
|
1528
|
-
{
|
|
1529
|
-
"name": "gig.cancelled",
|
|
1530
|
-
"description": "Gig cancelled"
|
|
1531
|
-
},
|
|
1532
|
-
{
|
|
1533
|
-
"name": "gig.completed",
|
|
1534
|
-
"description": "Gig completed"
|
|
1535
|
-
},
|
|
1536
|
-
{
|
|
1537
|
-
"name": "gig.work_submitted",
|
|
1538
|
-
"description": "Work submitted for a gig"
|
|
1539
|
-
},
|
|
1540
|
-
{
|
|
1541
|
-
"name": "gig.submission_approved",
|
|
1542
|
-
"description": "Submission approved"
|
|
1543
|
-
},
|
|
1544
|
-
{
|
|
1545
|
-
"name": "gig.submission_rejected",
|
|
1546
|
-
"description": "Submission rejected"
|
|
1547
|
-
},
|
|
1548
|
-
{
|
|
1549
|
-
"name": "gig.revision_requested",
|
|
1550
|
-
"description": "Revision requested on submission"
|
|
1551
|
-
},
|
|
1552
|
-
{
|
|
1553
|
-
"name": "gig.instruction_completed",
|
|
1554
|
-
"description": "Gig instruction marked complete"
|
|
1555
|
-
}
|
|
1556
|
-
]
|
|
1557
|
-
}
|
|
1500
|
+
]
|
|
1558
1501
|
}
|