Skip to content

Commit 5353d93

Browse files
update postman collection
1 parent 8d77bc7 commit 5353d93

File tree

1 file changed

+280
-8
lines changed

1 file changed

+280
-8
lines changed

assets/misc/meilisearch-collection-postman.json

Lines changed: 280 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"info": {
33
"_postman_id": "cc6bb097-033d-4f65-8704-f10e4e4b10d0",
4-
"name": "Meilisearch v1.11",
4+
"name": "Meilisearch v1.12",
55
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
66
"_exporter_id": "25294324"
77
},
@@ -652,6 +652,11 @@
652652
"value": "3",
653653
"disabled": true
654654
},
655+
{
656+
"key": "batchUids",
657+
"value": "0",
658+
"disabled": true
659+
},
655660
{
656661
"key": "indexUids",
657662
"value": "books",
@@ -669,37 +674,37 @@
669674
},
670675
{
671676
"key": "beforeEnqueuedAt",
672-
"value": null,
677+
"value": "",
673678
"disabled": true
674679
},
675680
{
676681
"key": "afterEnqueuedAt",
677-
"value": null,
682+
"value": "",
678683
"disabled": true
679684
},
680685
{
681686
"key": "beforeStartedAt",
682-
"value": null,
687+
"value": "",
683688
"disabled": true
684689
},
685690
{
686691
"key": "afterStartedAt",
687-
"value": null,
692+
"value": "",
688693
"disabled": true
689694
},
690695
{
691696
"key": "beforeFinishedAt",
692-
"value": null,
697+
"value": "",
693698
"disabled": true
694699
},
695700
{
696701
"key": "afterFinishedAt",
697-
"value": null,
702+
"value": "",
698703
"disabled": true
699704
},
700705
{
701706
"key": "canceledBy",
702-
"value": null,
707+
"value": "",
703708
"disabled": true
704709
},
705710
{
@@ -711,6 +716,11 @@
711716
"key": "from",
712717
"value": "10",
713718
"disabled": true
719+
},
720+
{
721+
"key": "reverse",
722+
"value": "false",
723+
"disabled": true
714724
}
715725
]
716726
}
@@ -888,6 +898,118 @@
888898
}
889899
]
890900
},
901+
{
902+
"name": "Batches",
903+
"item": [
904+
{
905+
"name": "Get one batch",
906+
"request": {
907+
"method": "GET",
908+
"header": [],
909+
"url": {
910+
"raw": "{{url}}/batches/0",
911+
"host": [
912+
"{{url}}"
913+
],
914+
"path": [
915+
"batches",
916+
"0"
917+
]
918+
}
919+
},
920+
"response": []
921+
},
922+
{
923+
"name": "Get all batches",
924+
"request": {
925+
"method": "GET",
926+
"header": [],
927+
"url": {
928+
"raw": "{{url}}/batches",
929+
"host": [
930+
"{{url}}"
931+
],
932+
"path": [
933+
"batches"
934+
],
935+
"query": [
936+
{
937+
"key": "uids",
938+
"value": "3",
939+
"disabled": true
940+
},
941+
{
942+
"key": "batchUids",
943+
"value": "0,1",
944+
"disabled": true
945+
},
946+
{
947+
"key": "indexUids",
948+
"value": "books",
949+
"disabled": true
950+
},
951+
{
952+
"key": "types",
953+
"value": "documentAdditionOrUpdate",
954+
"disabled": true
955+
},
956+
{
957+
"key": "statuses",
958+
"value": "failed",
959+
"disabled": true
960+
},
961+
{
962+
"key": "beforeEnqueuedAt",
963+
"value": "",
964+
"disabled": true
965+
},
966+
{
967+
"key": "afterEnqueuedAt",
968+
"value": "",
969+
"disabled": true
970+
},
971+
{
972+
"key": "beforeStartedAt",
973+
"value": "",
974+
"disabled": true
975+
},
976+
{
977+
"key": "afterStartedAt",
978+
"value": "",
979+
"disabled": true
980+
},
981+
{
982+
"key": "beforeFinishedAt",
983+
"value": "",
984+
"disabled": true
985+
},
986+
{
987+
"key": "afterFinishedAt",
988+
"value": "",
989+
"disabled": true
990+
},
991+
{
992+
"key": "limit",
993+
"value": "2",
994+
"disabled": true
995+
},
996+
{
997+
"key": "from",
998+
"value": "10",
999+
"disabled": true
1000+
},
1001+
{
1002+
"key": "reverse",
1003+
"value": "false",
1004+
"disabled": true
1005+
}
1006+
]
1007+
}
1008+
},
1009+
"response": []
1010+
}
1011+
]
1012+
},
8911013
{
8921014
"name": "Indexes",
8931015
"item": [
@@ -2384,6 +2506,156 @@
23842506
},
23852507
"response": []
23862508
},
2509+
{
2510+
"name": "Get facet search",
2511+
"request": {
2512+
"method": "GET",
2513+
"header": [],
2514+
"url": {
2515+
"raw": "{{url}}/indexes/{{indexUID}}/settings/facet-search",
2516+
"host": [
2517+
"{{url}}"
2518+
],
2519+
"path": [
2520+
"indexes",
2521+
"{{indexUID}}",
2522+
"settings",
2523+
"facet-search"
2524+
]
2525+
}
2526+
},
2527+
"response": []
2528+
},
2529+
{
2530+
"name": "Update facet search",
2531+
"protocolProfileBehavior": {
2532+
"disabledSystemHeaders": {
2533+
"content-type": true
2534+
}
2535+
},
2536+
"request": {
2537+
"method": "PUT",
2538+
"header": [
2539+
{
2540+
"key": "Content-Type",
2541+
"value": "application/json",
2542+
"type": "text"
2543+
}
2544+
],
2545+
"body": {
2546+
"mode": "raw",
2547+
"raw": "false"
2548+
},
2549+
"url": {
2550+
"raw": "{{url}}/indexes/{{indexUID}}/settings/facet-search",
2551+
"host": [
2552+
"{{url}}"
2553+
],
2554+
"path": [
2555+
"indexes",
2556+
"{{indexUID}}",
2557+
"settings",
2558+
"facet-search"
2559+
]
2560+
}
2561+
},
2562+
"response": []
2563+
},
2564+
{
2565+
"name": "Reset facet search",
2566+
"request": {
2567+
"method": "DELETE",
2568+
"header": [],
2569+
"url": {
2570+
"raw": "{{url}}/indexes/{{indexUID}}/settings/facet-search",
2571+
"host": [
2572+
"{{url}}"
2573+
],
2574+
"path": [
2575+
"indexes",
2576+
"{{indexUID}}",
2577+
"settings",
2578+
"facet-search"
2579+
]
2580+
}
2581+
},
2582+
"response": []
2583+
},
2584+
{
2585+
"name": "Get prefix search",
2586+
"request": {
2587+
"method": "GET",
2588+
"header": [],
2589+
"url": {
2590+
"raw": "{{url}}/indexes/{{indexUID}}/settings/prefix-search",
2591+
"host": [
2592+
"{{url}}"
2593+
],
2594+
"path": [
2595+
"indexes",
2596+
"{{indexUID}}",
2597+
"settings",
2598+
"prefix-search"
2599+
]
2600+
}
2601+
},
2602+
"response": []
2603+
},
2604+
{
2605+
"name": "Update prefix search",
2606+
"protocolProfileBehavior": {
2607+
"disabledSystemHeaders": {
2608+
"content-type": true
2609+
}
2610+
},
2611+
"request": {
2612+
"method": "PUT",
2613+
"header": [
2614+
{
2615+
"key": "Content-Type",
2616+
"value": "application/json",
2617+
"type": "text"
2618+
}
2619+
],
2620+
"body": {
2621+
"mode": "raw",
2622+
"raw": "\"disabled\""
2623+
},
2624+
"url": {
2625+
"raw": "{{url}}/indexes/{{indexUID}}/settings/prefix-search",
2626+
"host": [
2627+
"{{url}}"
2628+
],
2629+
"path": [
2630+
"indexes",
2631+
"{{indexUID}}",
2632+
"settings",
2633+
"prefix-search"
2634+
]
2635+
}
2636+
},
2637+
"response": []
2638+
},
2639+
{
2640+
"name": "Reset prefix search",
2641+
"request": {
2642+
"method": "DELETE",
2643+
"header": [],
2644+
"url": {
2645+
"raw": "{{url}}/indexes/{{indexUID}}/settings/prefix-search",
2646+
"host": [
2647+
"{{url}}"
2648+
],
2649+
"path": [
2650+
"indexes",
2651+
"{{indexUID}}",
2652+
"settings",
2653+
"prefix-search"
2654+
]
2655+
}
2656+
},
2657+
"response": []
2658+
},
23872659
{
23882660
"name": "Get search cutoff",
23892661
"request": {

0 commit comments

Comments
 (0)