From 7825b02f839eab75b80300e25c19927d05e31e50 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 20 Jul 2023 15:01:38 +0200 Subject: [PATCH 01/62] Update OpenAPI.json --- reference/OpenAPI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index e96ddebf1..73f3155b5 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -35840,7 +35840,7 @@ "type": "integer", "description": "Results omit this value. (single value)" }, - "has_value": { + "$has_value": { "type": "string", "description": "Value is NOT null. The value for this parameter is an empty string." }, From 1c206d2c5a39265203b2fbb25b908e1bb8b492b7 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 20 Jul 2023 16:32:10 +0200 Subject: [PATCH 02/62] Update OpenAPI.json --- reference/OpenAPI.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 73f3155b5..6d20d0486 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -22274,8 +22274,10 @@ }, "categories": { "type": "array", - "description": "Empty array.", - "items": {} + "description": "Contains details about the category.", + "items": { + "$ref": "#/components/schemas/20_obj_category_object" + } }, "loyalty_tiers_expiration": { "type": "object", @@ -22845,7 +22847,10 @@ }, "categories": { "type": "array", - "description": "Empty array." + "description": "Contains details about the category.", + "items": { + "$ref": "#/components/schemas/20_obj_category_object" + } }, "type": { "type": "string", @@ -42857,7 +42862,7 @@ "key": "value" } } - }, + }, "Qualify product using product_id": { "value": { "customer": { @@ -79614,4 +79619,4 @@ } } } -} \ No newline at end of file +} From 385d85fb1d3da83ef69cf8d31baa349095a464d7 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 20 Jul 2023 17:12:24 +0200 Subject: [PATCH 03/62] Update OpenAPI.json --- reference/OpenAPI.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 6d20d0486..3ac87f64c 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -28023,9 +28023,6 @@ "voucher": { "$ref": "#/components/schemas/2_req_campaign_object_voucher_object_LOYALTY_CARD" }, - "": { - "type": "string" - } } }, "8_loyalty_tiers_expiration_balance": { From 02911dd793c21b48ff778f04bdcf03bfbe207c3e Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 20 Jul 2023 17:12:39 +0200 Subject: [PATCH 04/62] Update OpenAPI.json --- reference/OpenAPI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 3ac87f64c..953684faf 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -28022,7 +28022,7 @@ }, "voucher": { "$ref": "#/components/schemas/2_req_campaign_object_voucher_object_LOYALTY_CARD" - }, + } } }, "8_loyalty_tiers_expiration_balance": { From 1f831e1a310e7fa6dd4c93c90e1cf3846595decf Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 14 Sep 2023 07:28:19 +0200 Subject: [PATCH 05/62] done --- Changelog.md | 26 +++++++- reference/OpenAPI.json | 136 ++++++++++++++++++++++++++++++++++++++--- 2 files changed, 154 insertions(+), 8 deletions(-) diff --git a/Changelog.md b/Changelog.md index 29343746c..d360c7027 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,29 @@ # Changelog +## 20230828 + +**Added schemas** +- CategoryObject +- CreateCategory +- ResponseCreateCategory +- UpdateCategoryRequest +- ResponseUpdateCategory +- ListCategories + +**Endpoints changes** +- `/v1/categories` +- GET +- Response schema was replaced with `ListCategories` +- POST +- Request parameters schema was replaced with `CreateCategory` +- Response schema was replaced with `ResponseCreateCategory` +- `/v1/categories/{categoryId}` +- GET +- Response schema was replaced with `CategoryObject` +- PUT +- Request parameters schema was replaced with `UpdateCategoryRequest` +- Response schema was replaced with `ResponseUpdateCategory` + ## 20230823 - New Endpoints ### Introduced new endpoints and related object schemas @@ -315,4 +339,4 @@ The following endpoints in the OpenAPI document found in the `paths` object are `/v1/category-object` `/v1/metadata-schema-object` `/v1/location-object` -`/v1/qualification-object` \ No newline at end of file +`/v1/qualification-object` diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index baf160ad3..19ecb825c 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -39165,6 +39165,128 @@ } } }, + "CategoryObject": { + "allOf": [ + { + "type": "object", + "properties": { + "updated_at": { + "type": "string" + } + } + }, + { + "$ref": "#/components/schemas/ResponseCreateCategory" + } + ] + }, + "CreateCategory": { + "title": "CreateCategory", + "x-stoplight": { + "id": "wa3p2p8kef0fn" + }, + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "hierarchy": { + "type": "integer" + } + }, + "required": [ + "name", + "hierarchy" + ] + }, + "ResponseCreateCategory": { + "title": "ResponseCreateCategory", + "x-stoplight": { + "id": "bzep9crox651t" + }, + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "hierarchy": { + "type": "integer" + }, + "created_at": { + "type": "string" + }, + "object": { + "type": "string", + "default": "category", + "pattern": "/category/" + } + }, + "required": [ + "id", + "name", + "hierarchy", + "created_at", + "object" + ] + }, + "UpdateCategoryRequest": { + "$ref": "#/components/schemas/CreateCategory" + }, + "ResponseUpdateCategory": { + "allOf": [ + { + "$ref": "#/components/schemas/ResponseCreateCategory" + }, + { + "type": "object", + "properties": { + "updated_at": { + "type": "string" + } + }, + "required": [ + "updated_at" + ] + } + ] + }, + "ListCategories": { + "title": "ListCategories", + "x-stoplight": { + "id": "lxwe1mp60v02h" + }, + "type": "object", + "properties": { + "object": { + "type": "string", + "default": "list", + "pattern": "/list/" + }, + "data_ref": { + "type": "string", + "pattern": "/data/", + "default": "data" + }, + "data": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CategoryObject" + } + }, + "total": { + "type": "integer" + } + }, + "required": [ + "object", + "data_ref", + "data", + "total" + ] + }, "a_req_importCSV": { "type": "object", "title": "Import CSV file", @@ -79173,7 +79295,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/20_res_list_categories" + "$ref": "#/components/schemas/ListCategories" }, "examples": { "Example": { @@ -79252,7 +79374,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/20_req_create_category" + "$ref": "#/components/schemas/CreateCategory" }, "examples": { "Example": { @@ -79271,7 +79393,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/20_res_create_category" + "$ref": "#/components/schemas/ResponseCreateCategory" }, "examples": { "Example": { @@ -79352,7 +79474,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/20_obj_category_object" + "$ref": "#/components/schemas/CategoryObject" }, "examples": { "Example": { @@ -79432,7 +79554,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/20_req_update_categories_categoryId" + "$ref": "#/components/schemas/UpdateCategoryRequest" }, "examples": { "Example": { @@ -79451,7 +79573,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/20_obj_category_object" + "$ref": "#/components/schemas/ResponseUpdateCategory" }, "examples": { "Example": { @@ -80923,4 +81045,4 @@ } } } -} \ No newline at end of file +} From 1c28dc84a9d60627170186a5d9b755be3ef4dd20 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 14 Sep 2023 07:35:40 +0200 Subject: [PATCH 06/62] Update Changelog.md --- Changelog.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Changelog.md b/Changelog.md index d360c7027..489765aa2 100644 --- a/Changelog.md +++ b/Changelog.md @@ -12,17 +12,17 @@ **Endpoints changes** - `/v1/categories` -- GET -- Response schema was replaced with `ListCategories` -- POST -- Request parameters schema was replaced with `CreateCategory` -- Response schema was replaced with `ResponseCreateCategory` + - GET + - Response schema was replaced with `ListCategories` (old 20_res_list_categories) + - POST + - Request parameters schema was replaced with `CreateCategory` (old 20_req_create_category) + - Response schema was replaced with `ResponseCreateCategory` (old 20_res_create_category) - `/v1/categories/{categoryId}` -- GET -- Response schema was replaced with `CategoryObject` -- PUT -- Request parameters schema was replaced with `UpdateCategoryRequest` -- Response schema was replaced with `ResponseUpdateCategory` + - GET + - Response schema was replaced with `CategoryObject` (old 20_obj_category_object) + - PUT + - Request parameters schema was replaced with `UpdateCategoryRequest` (old 20_req_update_categories_categoryId) + - Response schema was replaced with `ResponseUpdateCategory` (old 20_obj_category_object) ## 20230823 - New Endpoints From 4aaf7b56777a4dbff2268cc3e92dcb7ab4a67dff Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 18 Sep 2023 15:41:32 +0200 Subject: [PATCH 07/62] Update OpenAPI.json --- reference/OpenAPI.json | 9 --------- 1 file changed, 9 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 912fabfa6..0fc53e1ce 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -39184,9 +39184,6 @@ }, "CreateCategory": { "title": "CreateCategory", - "x-stoplight": { - "id": "wa3p2p8kef0fn" - }, "type": "object", "properties": { "name": { @@ -39203,9 +39200,6 @@ }, "ResponseCreateCategory": { "title": "ResponseCreateCategory", - "x-stoplight": { - "id": "bzep9crox651t" - }, "type": "object", "properties": { "id": { @@ -39257,9 +39251,6 @@ }, "ListCategories": { "title": "ListCategories", - "x-stoplight": { - "id": "lxwe1mp60v02h" - }, "type": "object", "properties": { "object": { From c1587eace205034fa002f8f5f4ebf6358c7a1abe Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 18 Sep 2023 15:44:44 +0200 Subject: [PATCH 08/62] Update OpenAPI.json --- reference/OpenAPI.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 0fc53e1ce..b315feb91 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -39217,7 +39217,7 @@ "object": { "type": "string", "default": "category", - "pattern": "/category/" + "enum": ["category"] } }, "required": [ @@ -39256,12 +39256,11 @@ "object": { "type": "string", "default": "list", - "pattern": "/list/" + "enum": ["list"] }, "data_ref": { "type": "string", - "pattern": "/data/", - "default": "data" + "enum": ["data"] }, "data": { "type": "array", From cd9ea9ebab4aca8d41a41cbe283983e4fdfd1f5a Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 18 Sep 2023 15:50:03 +0200 Subject: [PATCH 09/62] Update OpenAPI.json --- reference/OpenAPI.json | 31 ++----------------------------- 1 file changed, 2 insertions(+), 29 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index b315feb91..fdec8d46b 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -39168,19 +39168,7 @@ } }, "CategoryObject": { - "allOf": [ - { - "type": "object", - "properties": { - "updated_at": { - "type": "string" - } - } - }, - { - "$ref": "#/components/schemas/ResponseCreateCategory" - } - ] + "$ref": "#/components/schemas/ResponseCreateCategory" }, "CreateCategory": { "title": "CreateCategory", @@ -39232,22 +39220,7 @@ "$ref": "#/components/schemas/CreateCategory" }, "ResponseUpdateCategory": { - "allOf": [ - { - "$ref": "#/components/schemas/ResponseCreateCategory" - }, - { - "type": "object", - "properties": { - "updated_at": { - "type": "string" - } - }, - "required": [ - "updated_at" - ] - } - ] + "$ref": "#/components/schemas/ResponseCreateCategory" }, "ListCategories": { "title": "ListCategories", From 4ce93b4688f8ed5de10389eeff0c98c41df3d0ae Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 18 Sep 2023 15:56:00 +0200 Subject: [PATCH 10/62] Revert "Update OpenAPI.json" This reverts commit cd9ea9ebab4aca8d41a41cbe283983e4fdfd1f5a. --- reference/OpenAPI.json | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index fdec8d46b..b315feb91 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -39168,7 +39168,19 @@ } }, "CategoryObject": { - "$ref": "#/components/schemas/ResponseCreateCategory" + "allOf": [ + { + "type": "object", + "properties": { + "updated_at": { + "type": "string" + } + } + }, + { + "$ref": "#/components/schemas/ResponseCreateCategory" + } + ] }, "CreateCategory": { "title": "CreateCategory", @@ -39220,7 +39232,22 @@ "$ref": "#/components/schemas/CreateCategory" }, "ResponseUpdateCategory": { - "$ref": "#/components/schemas/ResponseCreateCategory" + "allOf": [ + { + "$ref": "#/components/schemas/ResponseCreateCategory" + }, + { + "type": "object", + "properties": { + "updated_at": { + "type": "string" + } + }, + "required": [ + "updated_at" + ] + } + ] }, "ListCategories": { "title": "ListCategories", From e63ed855f4cced20b4ac8c48f4b0a6612a37054e Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 18 Sep 2023 16:28:26 +0200 Subject: [PATCH 11/62] Update OpenAPI.json --- reference/OpenAPI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index f31e9fcf7..98725effd 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -79258,7 +79258,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/20_obj_category_object" + "$ref": "#/components/schemas/CategoryObject" } } } From 78c547b590f7102ba4d8a79fd744f8b5694708f9 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:15:08 +0200 Subject: [PATCH 12/62] first commit --- .gitignore | 3 +++ docs/.env.example | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 .gitignore create mode 100644 docs/.env.example diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..b4b08819a --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/docs/.env +/docs/node_modules +.idea/* diff --git a/docs/.env.example b/docs/.env.example new file mode 100644 index 000000000..8f9fa5797 --- /dev/null +++ b/docs/.env.example @@ -0,0 +1,2 @@ +README_IO_AUTH=rdme_x +X_README_VERSION=2018-08-01 From fea14a7ed85c0357504fd88f6a7cb3318ba1d34a Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:23:03 +0200 Subject: [PATCH 13/62] category-slugs --- docs/guides/building_blocks/Campaigns.md | 3 +- docs/guides/building_blocks/Customer.md | 3 +- docs/guides/building_blocks/Distribution.md | 3 +- docs/guides/building_blocks/Earning-Rules.md | 3 +- .../guides/building_blocks/Formula-Builder.md | 3 +- .../building_blocks/Metadata-Custom-Fields.md | 3 +- docs/guides/building_blocks/Orders.md | 3 +- docs/guides/building_blocks/Products.md | 3 +- docs/guides/building_blocks/Promotion-Tier.md | 3 +- docs/guides/building_blocks/Redemption.md | 3 +- docs/guides/building_blocks/Rewards.md | 3 +- .../building_blocks/Validation-Rules.md | 3 +- docs/guides/building_blocks/Vouchers.md | 3 +- docs/guides/building_blocks/Webhooks.md | 3 +- .../Locking-Validation-Session.md | 3 +- .../campaign_recipes/Loyalty Program.md | 3 +- .../campaign_recipes/Prepaid-Gift-Cards.md | 3 +- .../guides/campaign_recipes/Qualifications.md | 3 +- .../campaign_recipes/Referral-Program.md | 3 +- .../Stacking-Promotion-Tiers.md | 3 +- .../Transfer-Loyalty-Points.md | 3 +- docs/guides/development/API-Reference.md | 3 +- .../development/API-Version-Upgrades.md | 3 +- docs/guides/development/Client-Side-API.md | 3 +- docs/guides/development/Error-Codes.md | 3 +- docs/guides/development/Examples.md | 3 +- docs/guides/development/Limits.md | 3 +- docs/guides/development/Performance.md | 3 +- docs/guides/development/SDKs.md | 3 +- docs/guides/development/Security.md | 3 +- docs/guides/development/Test-Mode-Sandbox.md | 3 +- docs/guides/development/Troubleshooting.md | 3 +- .../discounts_recipes/Discount-Effects.md | 3 +- .../Free-Shipping-Discount.md | 3 +- .../Give-Items-For-Free-Unit-Discount.md | 3 +- .../Product-Specific-Discounts.md | 3 +- .../Stackable-Discounts-API.md | 3 +- .../CSV-Export-With-API.md | 3 +- .../distributions_recipes/Geofencing.md | 3 +- .../Import-Legacy-Codes.md | 3 +- .../Messaging-Automation.md | 3 +- docs/guides/getting_started/API-Endpoints.md | 3 +- docs/guides/getting_started/Authentication.md | 3 +- docs/guides/getting_started/Home.md | 3 +- .../getting_started/Integration-Checklist.md | 3 +- docs/guides/getting_started/Key-Concepts.md | 3 +- docs/guides/getting_started/Quickstart.md | 3 +- docs/guides/more/Roadmap.md | 3 +- docs/guides/more/Status.md | 3 +- docs/guides/more/Support.md | 3 +- docs/package-lock.json | 62 +++++++++++++++++++ docs/package.json | 6 ++ 52 files changed, 168 insertions(+), 50 deletions(-) create mode 100644 docs/package-lock.json create mode 100644 docs/package.json diff --git a/docs/guides/building_blocks/Campaigns.md b/docs/guides/building_blocks/Campaigns.md index 9ebf491eb..82f9a83f0 100644 --- a/docs/guides/building_blocks/Campaigns.md +++ b/docs/guides/building_blocks/Campaigns.md @@ -1,7 +1,8 @@ --- title: Campaigns excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: campaigns type: basic hidden: false diff --git a/docs/guides/building_blocks/Customer.md b/docs/guides/building_blocks/Customer.md index 3f457bdb3..d32467270 100644 --- a/docs/guides/building_blocks/Customer.md +++ b/docs/guides/building_blocks/Customer.md @@ -1,7 +1,8 @@ --- title: Customers excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: customers type: basic hidden: false diff --git a/docs/guides/building_blocks/Distribution.md b/docs/guides/building_blocks/Distribution.md index b32ef4637..03133abfb 100644 --- a/docs/guides/building_blocks/Distribution.md +++ b/docs/guides/building_blocks/Distribution.md @@ -1,7 +1,8 @@ --- title: Distribution excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: distribution type: basic hidden: false diff --git a/docs/guides/building_blocks/Earning-Rules.md b/docs/guides/building_blocks/Earning-Rules.md index d033f1c83..f433ecc57 100644 --- a/docs/guides/building_blocks/Earning-Rules.md +++ b/docs/guides/building_blocks/Earning-Rules.md @@ -1,7 +1,8 @@ --- title: Earning Rules excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: earning-rules type: basic hidden: false diff --git a/docs/guides/building_blocks/Formula-Builder.md b/docs/guides/building_blocks/Formula-Builder.md index 4a7f0d8f4..dcafbc349 100644 --- a/docs/guides/building_blocks/Formula-Builder.md +++ b/docs/guides/building_blocks/Formula-Builder.md @@ -1,7 +1,8 @@ --- title: Formula Builder excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: formula-builder type: basic hidden: false diff --git a/docs/guides/building_blocks/Metadata-Custom-Fields.md b/docs/guides/building_blocks/Metadata-Custom-Fields.md index 507228878..61ce2e95a 100644 --- a/docs/guides/building_blocks/Metadata-Custom-Fields.md +++ b/docs/guides/building_blocks/Metadata-Custom-Fields.md @@ -1,7 +1,8 @@ --- title: Metadata (custom fields) excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: metadata-custom-fields type: basic hidden: false diff --git a/docs/guides/building_blocks/Orders.md b/docs/guides/building_blocks/Orders.md index 9d563b74b..5c04b3364 100644 --- a/docs/guides/building_blocks/Orders.md +++ b/docs/guides/building_blocks/Orders.md @@ -1,7 +1,8 @@ --- title: Orders excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: orders type: basic hidden: false diff --git a/docs/guides/building_blocks/Products.md b/docs/guides/building_blocks/Products.md index 993de555e..41fb2a9f3 100644 --- a/docs/guides/building_blocks/Products.md +++ b/docs/guides/building_blocks/Products.md @@ -1,7 +1,8 @@ --- title: Products excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: products type: basic hidden: false diff --git a/docs/guides/building_blocks/Promotion-Tier.md b/docs/guides/building_blocks/Promotion-Tier.md index 2dc62d2c0..544a95d3c 100644 --- a/docs/guides/building_blocks/Promotion-Tier.md +++ b/docs/guides/building_blocks/Promotion-Tier.md @@ -1,7 +1,8 @@ --- title: Promotion Tier excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: promotion-tier type: basic hidden: false diff --git a/docs/guides/building_blocks/Redemption.md b/docs/guides/building_blocks/Redemption.md index dd56777e4..f854c767b 100644 --- a/docs/guides/building_blocks/Redemption.md +++ b/docs/guides/building_blocks/Redemption.md @@ -1,7 +1,8 @@ --- title: Redemption excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: redemption type: basic hidden: false diff --git a/docs/guides/building_blocks/Rewards.md b/docs/guides/building_blocks/Rewards.md index bcf3b30a4..b2de18a3c 100644 --- a/docs/guides/building_blocks/Rewards.md +++ b/docs/guides/building_blocks/Rewards.md @@ -1,7 +1,8 @@ --- title: Rewards excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: rewards type: basic hidden: false diff --git a/docs/guides/building_blocks/Validation-Rules.md b/docs/guides/building_blocks/Validation-Rules.md index fbfb46455..d302889ff 100644 --- a/docs/guides/building_blocks/Validation-Rules.md +++ b/docs/guides/building_blocks/Validation-Rules.md @@ -1,7 +1,8 @@ --- title: Validation Rules excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: validation-rules type: basic hidden: false diff --git a/docs/guides/building_blocks/Vouchers.md b/docs/guides/building_blocks/Vouchers.md index 86422f066..70ee20f9a 100644 --- a/docs/guides/building_blocks/Vouchers.md +++ b/docs/guides/building_blocks/Vouchers.md @@ -1,7 +1,8 @@ --- title: Vouchers excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: vouchers type: basic hidden: false diff --git a/docs/guides/building_blocks/Webhooks.md b/docs/guides/building_blocks/Webhooks.md index ffac29a07..501ad598c 100644 --- a/docs/guides/building_blocks/Webhooks.md +++ b/docs/guides/building_blocks/Webhooks.md @@ -1,7 +1,8 @@ --- title: Webhooks excerpt: -category: 639ba16d677235008f800454 +category: 639ba16d677235008f800454 +category-slug: building-blocks slug: webhooks type: link hidden: false diff --git a/docs/guides/campaign_recipes/Locking-Validation-Session.md b/docs/guides/campaign_recipes/Locking-Validation-Session.md index 5f66800e9..6fb743ab0 100644 --- a/docs/guides/campaign_recipes/Locking-Validation-Session.md +++ b/docs/guides/campaign_recipes/Locking-Validation-Session.md @@ -1,7 +1,8 @@ --- title: Locking Validation Session excerpt: Temporary lock the voucher's usage until redemption is successful. -category: 639ba16d677235008f80045c +category: 639ba16d677235008f80045c +category-slug: campaigns-1 slug: locking-validation-session type: basic hidden: false diff --git a/docs/guides/campaign_recipes/Loyalty Program.md b/docs/guides/campaign_recipes/Loyalty Program.md index 50263bcdd..8b662c960 100644 --- a/docs/guides/campaign_recipes/Loyalty Program.md +++ b/docs/guides/campaign_recipes/Loyalty Program.md @@ -1,7 +1,8 @@ --- title: Loyalty Program excerpt: null -category: 639ba16d677235008f80045c +category: 639ba16d677235008f80045c +category-slug: campaigns-1 slug: loyalty-program type: basic hidden: false diff --git a/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md b/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md index 64d050bcf..8fc8e1c74 100644 --- a/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md +++ b/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md @@ -1,7 +1,8 @@ --- title: Prepaid Gift Cards excerpt: null -category: 639ba16d677235008f80045c +category: 639ba16d677235008f80045c +category-slug: campaigns-1 slug: prepaid-gift-cards type: basic hidden: false diff --git a/docs/guides/campaign_recipes/Qualifications.md b/docs/guides/campaign_recipes/Qualifications.md index 68386a2b5..25103e861 100644 --- a/docs/guides/campaign_recipes/Qualifications.md +++ b/docs/guides/campaign_recipes/Qualifications.md @@ -1,7 +1,8 @@ --- title: Qualification - Checking eligibility excerpt: null -category: 639ba16d677235008f80045c +category: 639ba16d677235008f80045c +category-slug: campaigns-1 slug: checking-eligibility type: basic hidden: false diff --git a/docs/guides/campaign_recipes/Referral-Program.md b/docs/guides/campaign_recipes/Referral-Program.md index 6141ea833..c834f9eb7 100644 --- a/docs/guides/campaign_recipes/Referral-Program.md +++ b/docs/guides/campaign_recipes/Referral-Program.md @@ -1,7 +1,8 @@ --- title: Referral Program excerpt: null -category: 639ba16d677235008f80045c +category: 639ba16d677235008f80045c +category-slug: campaigns-1 slug: referral-program type: link hidden: false diff --git a/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md b/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md index dcb4e8f04..00c940da8 100644 --- a/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md +++ b/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md @@ -1,7 +1,8 @@ --- title: Stacking Promotion Tiers excerpt: 'In this tutorial, you will learn how to validate, redeem, and manage promotion stacks using API.' -category: 639ba16d677235008f80045c +category: 639ba16d677235008f80045c +category-slug: campaigns-1 slug: stacking-promotion-tiers type: basic hidden: false diff --git a/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md b/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md index 371239f04..bb9d23723 100644 --- a/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md +++ b/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md @@ -1,7 +1,8 @@ --- title: Transfer Loyalty Points excerpt: See how to transfer points between loyalty cards. -category: 639ba16d677235008f80045c +category: 639ba16d677235008f80045c +category-slug: campaigns-1 slug: transfer-loyalty-points type: basic hidden: false diff --git a/docs/guides/development/API-Reference.md b/docs/guides/development/API-Reference.md index 875fa84ab..474e06f89 100644 --- a/docs/guides/development/API-Reference.md +++ b/docs/guides/development/API-Reference.md @@ -1,7 +1,8 @@ --- title: API Reference excerpt: -category: 639ba16d677235008f800447 +category: 639ba16d677235008f800447 +category-slug: development slug: api-reference type: link hidden: false diff --git a/docs/guides/development/API-Version-Upgrades.md b/docs/guides/development/API-Version-Upgrades.md index 7af49f2b8..80e5599e1 100644 --- a/docs/guides/development/API-Version-Upgrades.md +++ b/docs/guides/development/API-Version-Upgrades.md @@ -1,7 +1,8 @@ --- title: API Version Upgrades excerpt: Keep track of changes and upgrades to the Voucherify API. -category: 639ba16d677235008f800447 +category: 639ba16d677235008f800447 +category-slug: development slug: api-version-upgrades type: basic hidden: false diff --git a/docs/guides/development/Client-Side-API.md b/docs/guides/development/Client-Side-API.md index 0f8672221..f094a6002 100644 --- a/docs/guides/development/Client-Side-API.md +++ b/docs/guides/development/Client-Side-API.md @@ -1,7 +1,8 @@ --- title: Client-side API excerpt: -category: 639ba16d677235008f800447 +category: 639ba16d677235008f800447 +category-slug: development slug: client-side-api type: basic hidden: false diff --git a/docs/guides/development/Error-Codes.md b/docs/guides/development/Error-Codes.md index a5b5c2cb6..2cbb6cf91 100644 --- a/docs/guides/development/Error-Codes.md +++ b/docs/guides/development/Error-Codes.md @@ -1,7 +1,8 @@ --- title: Error Codes excerpt: -category: 639ba16d677235008f800447 +category: 639ba16d677235008f800447 +category-slug: development slug: error-codes type: link hidden: false diff --git a/docs/guides/development/Examples.md b/docs/guides/development/Examples.md index 10be3ae2b..f5f86a5d5 100644 --- a/docs/guides/development/Examples.md +++ b/docs/guides/development/Examples.md @@ -1,7 +1,8 @@ --- title: Examples excerpt: Here are some exemplary integrations and third-party guides for you to learn more about Voucherify. -category: 639ba16d677235008f800447 +category: 639ba16d677235008f800447 +category-slug: development slug: examples type: basic hidden: false diff --git a/docs/guides/development/Limits.md b/docs/guides/development/Limits.md index 2ad1ba83e..bd0d48097 100644 --- a/docs/guides/development/Limits.md +++ b/docs/guides/development/Limits.md @@ -1,7 +1,8 @@ --- title: Limits excerpt: API calls limits and optimization -category: 639ba16d677235008f800447 +category: 639ba16d677235008f800447 +category-slug: development slug: limits type: basic hidden: false diff --git a/docs/guides/development/Performance.md b/docs/guides/development/Performance.md index f080d5b6e..9bf53c1af 100644 --- a/docs/guides/development/Performance.md +++ b/docs/guides/development/Performance.md @@ -1,7 +1,8 @@ --- title: Performance excerpt: Average response rates -category: 639ba16d677235008f800447 +category: 639ba16d677235008f800447 +category-slug: development slug: performance type: basic hidden: false diff --git a/docs/guides/development/SDKs.md b/docs/guides/development/SDKs.md index 0fa336469..943f85fbd 100644 --- a/docs/guides/development/SDKs.md +++ b/docs/guides/development/SDKs.md @@ -1,7 +1,8 @@ --- title: SDKs excerpt: -category: 639ba16d677235008f800447 +category: 639ba16d677235008f800447 +category-slug: development slug: sdks type: basic hidden: false diff --git a/docs/guides/development/Security.md b/docs/guides/development/Security.md index 0e45db74e..d45ce0f26 100644 --- a/docs/guides/development/Security.md +++ b/docs/guides/development/Security.md @@ -1,7 +1,8 @@ --- title: Security excerpt: -category: 639ba16d677235008f800447 +category: 639ba16d677235008f800447 +category-slug: development slug: security type: basic hidden: false diff --git a/docs/guides/development/Test-Mode-Sandbox.md b/docs/guides/development/Test-Mode-Sandbox.md index 98e689845..5b03659fa 100644 --- a/docs/guides/development/Test-Mode-Sandbox.md +++ b/docs/guides/development/Test-Mode-Sandbox.md @@ -1,7 +1,8 @@ --- title: Test mode (Sandbox) excerpt: Run integration tests of your promotions before going to production -category: 639ba16d677235008f800447 +category: 639ba16d677235008f800447 +category-slug: development slug: testing type: basic hidden: false diff --git a/docs/guides/development/Troubleshooting.md b/docs/guides/development/Troubleshooting.md index 0033c5d98..8bdc4d40d 100644 --- a/docs/guides/development/Troubleshooting.md +++ b/docs/guides/development/Troubleshooting.md @@ -1,7 +1,8 @@ --- title: Troubleshooting excerpt: -category: 639ba16d677235008f800447 +category: 639ba16d677235008f800447 +category-slug: development slug: troubleshooting type: basic hidden: false diff --git a/docs/guides/discounts_recipes/Discount-Effects.md b/docs/guides/discounts_recipes/Discount-Effects.md index f1be4e5a2..15d7d5015 100644 --- a/docs/guides/discounts_recipes/Discount-Effects.md +++ b/docs/guides/discounts_recipes/Discount-Effects.md @@ -1,7 +1,8 @@ --- title: Discount Effects excerpt: The discount effect defines how the discount will be applied to the customer's cart. In this article, we're going to show you how different effects work with discounts. -category: 639ba16d677235008f80045e +category: 639ba16d677235008f80045e +category-slug: discounts slug: discount-effects type: basic hidden: false diff --git a/docs/guides/discounts_recipes/Free-Shipping-Discount.md b/docs/guides/discounts_recipes/Free-Shipping-Discount.md index cf1902e97..593bf8d2d 100644 --- a/docs/guides/discounts_recipes/Free-Shipping-Discount.md +++ b/docs/guides/discounts_recipes/Free-Shipping-Discount.md @@ -1,7 +1,8 @@ --- title: Free shipping disount excerpt: How to use free shipping discounts? -category: 639ba16d677235008f80045e +category: 639ba16d677235008f80045e +category-slug: discounts slug: free-shipping-discount type: basic hidden: false diff --git a/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md b/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md index 9fa2b5fa3..348692671 100644 --- a/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md +++ b/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md @@ -1,7 +1,8 @@ --- title: Give item(s) for free - unit discount excerpt: How to add free items to customers' orders? -category: 639ba16d677235008f80045e +category: 639ba16d677235008f80045e +category-slug: discounts slug: give-item-for-free-unit-discount type: basic hidden: false diff --git a/docs/guides/discounts_recipes/Product-Specific-Discounts.md b/docs/guides/discounts_recipes/Product-Specific-Discounts.md index 53bc7f2ab..f1407ca61 100644 --- a/docs/guides/discounts_recipes/Product-Specific-Discounts.md +++ b/docs/guides/discounts_recipes/Product-Specific-Discounts.md @@ -1,7 +1,8 @@ --- title: Product-specific discounts excerpt: A recipe for using *applicable_to* validation rule -category: 639ba16d677235008f80045e +category: 639ba16d677235008f80045e +category-slug: discounts slug: discount-for-particular-product type: basic hidden: false diff --git a/docs/guides/discounts_recipes/Stackable-Discounts-API.md b/docs/guides/discounts_recipes/Stackable-Discounts-API.md index b8025f275..d78eecda8 100644 --- a/docs/guides/discounts_recipes/Stackable-Discounts-API.md +++ b/docs/guides/discounts_recipes/Stackable-Discounts-API.md @@ -1,7 +1,8 @@ --- title: Stackable discounts API excerpt: -category: 639ba16d677235008f80045e +category: 639ba16d677235008f80045e +category-slug: discounts slug: manage-stackable-discounts type: basic hidden: false diff --git a/docs/guides/distributions_recipes/CSV-Export-With-API.md b/docs/guides/distributions_recipes/CSV-Export-With-API.md index 10df13bbc..a41bcad57 100644 --- a/docs/guides/distributions_recipes/CSV-Export-With-API.md +++ b/docs/guides/distributions_recipes/CSV-Export-With-API.md @@ -1,7 +1,8 @@ --- title: CSV export with API excerpt: null -category: 639ba16d677235008f80045d +category: 639ba16d677235008f80045d +category-slug: distribution-1 slug: csv-export type: basic hidden: false diff --git a/docs/guides/distributions_recipes/Geofencing.md b/docs/guides/distributions_recipes/Geofencing.md index a7add04e0..2d6ef692c 100644 --- a/docs/guides/distributions_recipes/Geofencing.md +++ b/docs/guides/distributions_recipes/Geofencing.md @@ -1,7 +1,8 @@ --- title: Geofencing excerpt: -category: 639ba16d677235008f80045d +category: 639ba16d677235008f80045d +category-slug: distribution-1 slug: geofencing type: link hidden: false diff --git a/docs/guides/distributions_recipes/Import-Legacy-Codes.md b/docs/guides/distributions_recipes/Import-Legacy-Codes.md index 756607198..bd2be5d45 100644 --- a/docs/guides/distributions_recipes/Import-Legacy-Codes.md +++ b/docs/guides/distributions_recipes/Import-Legacy-Codes.md @@ -1,7 +1,8 @@ --- title: Import legacy codes excerpt: null -category: 639ba16d677235008f80045d +category: 639ba16d677235008f80045d +category-slug: distribution-1 slug: import-codes type: basic hidden: false diff --git a/docs/guides/distributions_recipes/Messaging-Automation.md b/docs/guides/distributions_recipes/Messaging-Automation.md index 20638f2ff..7d393ff94 100644 --- a/docs/guides/distributions_recipes/Messaging-Automation.md +++ b/docs/guides/distributions_recipes/Messaging-Automation.md @@ -1,7 +1,8 @@ --- title: Messaging automation excerpt: How to set up an automatic promotion delivery for a dynamic customer segment? -category: 639ba16d677235008f80045d +category: 639ba16d677235008f80045d +category-slug: distribution-1 slug: automatic-delivery type: basic hidden: false diff --git a/docs/guides/getting_started/API-Endpoints.md b/docs/guides/getting_started/API-Endpoints.md index c85aa7fd5..a0f0d0247 100644 --- a/docs/guides/getting_started/API-Endpoints.md +++ b/docs/guides/getting_started/API-Endpoints.md @@ -1,7 +1,8 @@ --- title: API Endpoints excerpt: -category: 639ba16d677235008f80043f +category: 639ba16d677235008f80043f +category-slug: getting-started slug: api-endpoints type: basic hidden: false diff --git a/docs/guides/getting_started/Authentication.md b/docs/guides/getting_started/Authentication.md index 294d3e6b2..bfab48c08 100644 --- a/docs/guides/getting_started/Authentication.md +++ b/docs/guides/getting_started/Authentication.md @@ -1,7 +1,8 @@ --- title: Authentication excerpt: Authorization methods and principles used to access the Voucherify platform HTTP APIs. -category: 639ba16d677235008f80043f +category: 639ba16d677235008f80043f +category-slug: getting-started slug: authentication type: basic hidden: false diff --git a/docs/guides/getting_started/Home.md b/docs/guides/getting_started/Home.md index 25e3a6719..04066dadd 100644 --- a/docs/guides/getting_started/Home.md +++ b/docs/guides/getting_started/Home.md @@ -1,7 +1,8 @@ --- title: Home excerpt: Welcome to [Voucherify's](https://www.voucherify.io) Developer Hub. -category: 639ba16d677235008f80043f +category: 639ba16d677235008f80043f +category-slug: getting-started slug: introduction type: basic hidden: false diff --git a/docs/guides/getting_started/Integration-Checklist.md b/docs/guides/getting_started/Integration-Checklist.md index 4adc34859..e74c3dd72 100644 --- a/docs/guides/getting_started/Integration-Checklist.md +++ b/docs/guides/getting_started/Integration-Checklist.md @@ -1,7 +1,8 @@ --- title: Integration checklist excerpt: Get the documentation, sample code, and developer tools — everything you need to build digital promotions faster -category: 639ba16d677235008f80043f +category: 639ba16d677235008f80043f +category-slug: getting-started slug: welcome type: basic hidden: false diff --git a/docs/guides/getting_started/Key-Concepts.md b/docs/guides/getting_started/Key-Concepts.md index 8c811294c..ca7beb19d 100644 --- a/docs/guides/getting_started/Key-Concepts.md +++ b/docs/guides/getting_started/Key-Concepts.md @@ -1,7 +1,8 @@ --- title: Key concepts excerpt: Voucherify offers several building blocks to help you implement promotional campaigns and integrate it with your stack. -category: 639ba16d677235008f80043f +category: 639ba16d677235008f80043f +category-slug: getting-started slug: key-concepts type: basic hidden: false diff --git a/docs/guides/getting_started/Quickstart.md b/docs/guides/getting_started/Quickstart.md index d7bfea379..64a9492d4 100644 --- a/docs/guides/getting_started/Quickstart.md +++ b/docs/guides/getting_started/Quickstart.md @@ -1,7 +1,8 @@ --- title: Quickstart excerpt: Get started with Voucherify API and dashboard by redeeming your first coupon code. -category: 639ba16d677235008f80043f +category: 639ba16d677235008f80043f +category-slug: getting-started slug: quickstart type: basic hidden: false diff --git a/docs/guides/more/Roadmap.md b/docs/guides/more/Roadmap.md index 009332d4c..4e1a1c5e9 100644 --- a/docs/guides/more/Roadmap.md +++ b/docs/guides/more/Roadmap.md @@ -1,7 +1,8 @@ --- title: Roadmap excerpt: -category: 639ba16d677235008f800441 +category: 639ba16d677235008f800441 +category-slug: more slug: roadmap type: link hidden: false diff --git a/docs/guides/more/Status.md b/docs/guides/more/Status.md index 55030f391..d630139d7 100644 --- a/docs/guides/more/Status.md +++ b/docs/guides/more/Status.md @@ -1,7 +1,8 @@ --- title: Status excerpt: -category: 639ba16d677235008f800441 +category: 639ba16d677235008f800441 +category-slug: more slug: status type: link hidden: false diff --git a/docs/guides/more/Support.md b/docs/guides/more/Support.md index 1371db822..a514a1f11 100644 --- a/docs/guides/more/Support.md +++ b/docs/guides/more/Support.md @@ -1,7 +1,8 @@ --- title: Support excerpt: -category: 639ba16d677235008f800441 +category: 639ba16d677235008f800441 +category-slug: more slug: support type: basic hidden: false diff --git a/docs/package-lock.json b/docs/package-lock.json new file mode 100644 index 000000000..92460d07d --- /dev/null +++ b/docs/package-lock.json @@ -0,0 +1,62 @@ +{ + "name": "docs", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "dotenv": "^16.3.1", + "node-fetch": "^2.7.0" + } + }, + "node_modules/dotenv": { + "version": "16.3.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", + "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/whatwg-url/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/whatwg-url/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + } + } +} diff --git a/docs/package.json b/docs/package.json new file mode 100644 index 000000000..ac316b92a --- /dev/null +++ b/docs/package.json @@ -0,0 +1,6 @@ +{ + "dependencies": { + "dotenv": "^16.3.1", + "node-fetch": "^2.7.0" + } +} From 4353d750adbac44b5a8b75671e61fb88d35a7d97 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:45:30 +0200 Subject: [PATCH 14/62] script --- docs/index.js | 73 ++++++++++++++++++++++++++++++++++++++++++ docs/package-lock.json | 9 ++++++ docs/package.json | 1 + 3 files changed, 83 insertions(+) create mode 100644 docs/index.js diff --git a/docs/index.js b/docs/index.js new file mode 100644 index 000000000..0c95e2f79 --- /dev/null +++ b/docs/index.js @@ -0,0 +1,73 @@ +const fetch = require("node-fetch"); +const fs = require("fs/promises"); +const path = require("path"); +require("dotenv").config(); + +const { version } = require("minimist")(process.argv.slice(2)); + +if (!version) { + console.log( + "`version` argument was not provided :/, next time try add `--version=************` at the end of file execution command" + ); + return; +} + +(async () => { + const options = { + method: "GET", + headers: { + "x-readme-version": version, + authorization: "Basic " + btoa(process.env.README_IO_AUTH + ":"), + }, + }; + + const response = await fetch( + "https://dash.readme.com/api/v1/categories?perPage=100", + options + ).then((res) => res.json()); + + if (response.error) { + console.log(response); + return; + } + + const categories = response; + const pathsToFiles = []; + const basePath = path.join(__dirname, "/guides"); + const getFiles = async (path) => { + const items = await fs.readdir(path, { + withFileTypes: true, + }); + for (const item of items) { + const itemPath = path + `/${item.name}`; + if (item.isDirectory()) { + await getFiles(itemPath); + continue; + } + pathsToFiles.push(itemPath); + } + }; + + await getFiles(basePath); + + for (const pathToFile of pathsToFiles) { + const data = await fs.readFile(pathToFile, { encoding: "utf8" }); + const categorySlug = data + .match(/category\-slug: .*/)?.[0] + ?.split?.("category-slug: ")?.[1]; + if (!categorySlug) { + console.log(`error, ${categorySlug}, ${pathToFile}`); + continue; + } + const category = categories.find((c) => c.slug === categorySlug); + if (!category) { + console.log(`error, ${categorySlug}, ${category}, ${pathToFile}`); + continue; + } + await fs.writeFile( + pathToFile, + data.replace(/category: .*/, `category: ${category.id}`).toString(), + "utf8" + ); + } +})(); diff --git a/docs/package-lock.json b/docs/package-lock.json index 92460d07d..43ee98c91 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -6,6 +6,7 @@ "": { "dependencies": { "dotenv": "^16.3.1", + "minimist": "^1.2.8", "node-fetch": "^2.7.0" } }, @@ -20,6 +21,14 @@ "url": "https://github.com/motdotla/dotenv?sponsor=1" } }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/node-fetch": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", diff --git a/docs/package.json b/docs/package.json index ac316b92a..e03f7f143 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,7 @@ { "dependencies": { "dotenv": "^16.3.1", + "minimist": "^1.2.8", "node-fetch": "^2.7.0" } } From afc59f5c5901f060ca1cc7ebdd200c8144909e00 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:51:37 +0200 Subject: [PATCH 15/62] slugs2 --- docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md | 3 ++- docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md | 3 ++- docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md | 3 ++- ...CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md | 3 ++- docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md | 3 ++- docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md | 3 ++- docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md | 3 ++- docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md | 3 ++- docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md | 3 ++- docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md | 3 ++- docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md | 3 ++- docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md | 3 ++- .../CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md | 3 ++- .../CAMPAIGNS-API-Import-Vouchers-To-Campaign.md | 3 ++- docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md | 3 ++- docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md | 3 ++- docs/reference-docs/CATEGORIES-API-Category-Object.md | 3 ++- docs/reference-docs/CATEGORIES-API-Create-Category.md | 3 ++- docs/reference-docs/CATEGORIES-API-Delete-Category.md | 3 ++- docs/reference-docs/CATEGORIES-API-Get-Category.md | 3 ++- docs/reference-docs/CATEGORIES-API-List-Categories.md | 3 ++- docs/reference-docs/CATEGORIES-API-Update-Category.md | 3 ++- docs/reference-docs/CONSENTS-API-Consents-Object.md | 3 ++- docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md | 3 ++- docs/reference-docs/CONSENTS-API-List-Consents.md | 3 ++- docs/reference-docs/CUSTOMERS-API-Create-Customer.md | 3 ++- docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md | 3 ++- docs/reference-docs/CUSTOMERS-API-Customer-Object.md | 3 ++- .../CUSTOMERS-API-Delete-Customer-Permanently.md | 3 ++- docs/reference-docs/CUSTOMERS-API-Get-Customer.md | 3 ++- .../reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md | 3 ++- docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md | 3 ++- docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md | 3 ++- docs/reference-docs/CUSTOMERS-API-List-Customers.md | 3 ++- docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md | 3 ++- docs/reference-docs/CUSTOMERS-API-Update-Customer.md | 3 ++- .../CUSTOMERS-API-Update-Customers-Consents-Client-Side.md | 3 ++- docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md | 3 ++- .../CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md | 3 ++- docs/reference-docs/CUSTOMES-API-Delete-Customer.md | 3 ++- docs/reference-docs/EVENTS-API-Custom-Event-Object.md | 3 ++- .../EVENTS-API-Track-Custom-Event-Client-Side.md | 3 ++- docs/reference-docs/EVENTS-API-Track-Custom-Event.md | 3 ++- docs/reference-docs/EXPORTS-API-Create-Export.md | 3 ++- docs/reference-docs/EXPORTS-API-Delete-Export.md | 3 ++- docs/reference-docs/EXPORTS-API-Download-Export.md | 3 ++- docs/reference-docs/EXPORTS-API-Export-Object.md | 3 ++- docs/reference-docs/EXPORTS-API-Get-Export.md | 3 ++- docs/reference-docs/EXPORTS-API-List-Exports.md | 3 ++- docs/reference-docs/Errors.md | 3 ++- docs/reference-docs/Establish-Validation-Session.md | 3 ++- docs/reference-docs/Fetching-Data.md | 3 ++- docs/reference-docs/Introduction.md | 3 ++- docs/reference-docs/LOCATIONS-API-Get-Location.md | 3 ++- docs/reference-docs/LOCATIONS-API-List-Locations.md | 3 ++- docs/reference-docs/LOCATIONS-API-Location-Object.md | 3 ++- docs/reference-docs/LOYALTIES-API-Add-Member.md | 3 ++- .../LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md | 3 ++- .../LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md | 3 ++- docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md | 3 ++- docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md | 3 ++- .../LOYALTIES-API-Create-Points-Expiration-Export.md | 3 ++- docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md | 3 ++- docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md | 3 ++- docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md | 3 ++- docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md | 3 ++- docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md | 3 ++- docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md | 3 ++- docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md | 3 ++- .../LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md | 3 ++- .../LOYALTIES-API-Export-Loyalty-Card-Transactions.md | 3 ++- docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md | 3 ++- docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md | 3 ++- docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md | 3 ++- docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md | 3 ++- docs/reference-docs/LOYALTIES-API-Get-Member-1.md | 3 ++- docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md | 3 ++- docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md | 3 ++- docs/reference-docs/LOYALTIES-API-Get-Member.md | 3 ++- docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md | 3 ++- docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md | 3 ++- docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md | 3 ++- docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md | 3 ++- docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md | 3 ++- .../LOYALTIES-API-List-Loyalty-Card-Transactions-1.md | 3 ++- .../LOYALTIES-API-List-Loyalty-Card-Transactions.md | 3 ++- .../LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md | 3 ++- docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md | 3 ++- docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md | 3 ++- docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md | 3 ++- docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md | 3 ++- docs/reference-docs/LOYALTIES-API-List-Members.md | 3 ++- docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md | 3 ++- docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md | 3 ++- docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md | 3 ++- docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md | 3 ++- docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md | 3 ++- docs/reference-docs/LOYALTIES-API-Redeem-Reward.md | 3 ++- docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md | 3 ++- docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md | 3 ++- docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md | 3 ++- docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md | 3 ++- .../reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md | 3 ++- .../reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md | 3 ++- .../METADATA-SCHEMAS-API-List-Metadata-Schemas.md | 3 ++- .../METADATA-SCHEMAS-API-Metadata-Schema-Object.md | 3 ++- docs/reference-docs/ORDERS-API-Create-Order.md | 3 ++- docs/reference-docs/ORDERS-API-Create-Orders-Export.md | 3 ++- docs/reference-docs/ORDERS-API-Get-Order.md | 3 ++- docs/reference-docs/ORDERS-API-Import-Orders.md | 3 ++- docs/reference-docs/ORDERS-API-List-Orders.md | 3 ++- docs/reference-docs/ORDERS-API-Order-Object.md | 3 ++- docs/reference-docs/ORDERS-API-Update-Order.md | 3 ++- docs/reference-docs/Object-Schemas.md | 3 ++- .../PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md | 3 ++- .../PRODUCT-COLLECTIONS-API-List-Product-Collections.md | 3 ++- .../PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md | 3 ++- .../PRODUCT-COLLECTIONS-API-Product-Collection-Object.md | 3 ++- .../PRODUCT-COLLECTIONS-Get-Product-Collection.md | 3 ++- docs/reference-docs/PRODUCTS-API-Create-Product.md | 3 ++- docs/reference-docs/PRODUCTS-API-Create-SKU.md | 3 ++- docs/reference-docs/PRODUCTS-API-Delete-Product.md | 3 ++- docs/reference-docs/PRODUCTS-API-Delete-SKU.md | 3 ++- docs/reference-docs/PRODUCTS-API-Get-Product.md | 3 ++- docs/reference-docs/PRODUCTS-API-Get-SKU.md | 3 ++- docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md | 3 ++- docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md | 3 ++- docs/reference-docs/PRODUCTS-API-List-Products.md | 3 ++- docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md | 3 ++- docs/reference-docs/PRODUCTS-API-Product-Object.md | 3 ++- docs/reference-docs/PRODUCTS-API-SKU-Object.md | 3 ++- docs/reference-docs/PRODUCTS-API-Update-Product.md | 3 ++- docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md | 3 ++- .../PRODUCTS-API-Update-Products-Metadata-In-Bulk.md | 3 ++- docs/reference-docs/PRODUCTS-API-Update-SKU.md | 3 ++- .../PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md | 3 ++- docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md | 3 ++- docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md | 3 ++- docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md | 3 ++- docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md | 3 ++- docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md | 3 ++- docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md | 3 ++- docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md | 3 ++- .../PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md | 3 ++- docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md | 3 ++- .../PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md | 3 ++- .../PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md | 3 ++- docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md | 3 ++- docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md | 3 ++- docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md | 3 ++- docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md | 3 ++- docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md | 3 ++- docs/reference-docs/PUBLICATIONS-API-Create-Publication.md | 3 ++- docs/reference-docs/PUBLICATIONS-API-List-Publications.md | 3 ++- docs/reference-docs/PUBLICATIONS-API-Publication-Object.md | 3 ++- .../QUALIFICATIONS-API-Check-Eligibility-Client-Side.md | 3 ++- docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md | 3 ++- docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md | 3 ++- docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md | 3 ++- .../reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md | 3 ++- docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md | 3 ++- docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md | 3 ++- .../REDEMPTIONS-API-Redeem-Voucher-Client-Side.md | 3 ++- docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md | 3 ++- docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md | 3 ++- .../REDEMPTIONS-API-Rollback-Redemption-Object.md | 3 ++- docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md | 3 ++- docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md | 3 ++- docs/reference-docs/REWARDS-API-Create-Reward.md | 3 ++- docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md | 3 ++- docs/reference-docs/REWARDS-API-Delete-Reward.md | 3 ++- docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md | 3 ++- docs/reference-docs/REWARDS-API-Get-Reward.md | 3 ++- docs/reference-docs/REWARDS-API-List-Reward-Assignments.md | 3 ++- docs/reference-docs/REWARDS-API-List-Rewards.md | 3 ++- docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md | 3 ++- docs/reference-docs/REWARDS-API-Reward-Object.md | 3 ++- docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md | 3 ++- docs/reference-docs/REWARDS-API-Update-Reward.md | 3 ++- docs/reference-docs/SEGMENTS-API-Create-Segment.md | 3 ++- docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md | 3 ++- docs/reference-docs/SEGMENTS-API-Delete-Segment.md | 3 ++- docs/reference-docs/SEGMENTS-API-Get-Segment.md | 3 ++- ...BLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md | 3 ++- .../STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md | 3 ++- .../STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md | 3 ++- .../STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md | 3 ++- ...E-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md | 3 ++- .../STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md | 3 ++- docs/reference-docs/Stacking-API-Overview.md | 3 ++- .../VALIDATION-RULES-API-Create-Validation-Rule.md | 3 ++- ...VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md | 3 ++- .../VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md | 3 ++- .../VALIDATION-RULES-API-Delete-Validation-Rule.md | 3 ++- .../reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md | 3 ++- .../VALIDATION-RULES-API-List-Validation-Rule-Assignments.md | 3 ++- .../VALIDATION-RULES-API-List-Validation-Rules-Assignments.md | 3 ++- .../VALIDATION-RULES-API-List-Validation-Rules.md | 3 ++- .../VALIDATION-RULES-API-Update-Validation-Rule.md | 3 ++- .../VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md | 3 ++- .../VALIDATION-RULES-API-Validation-Rule-Object.md | 3 ++- docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md | 3 ++- docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md | 3 ++- .../VALIDATIONS-API-Validate-Voucher-Client-Side.md | 3 ++- docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md | 3 ++- docs/reference-docs/VALIDATIONS-API-Validation-Object.md | 3 ++- .../VOUCHERS-API-Add-Remove-Gift-Card-Balance.md | 3 ++- docs/reference-docs/VOUCHERS-API-Create-Voucher.md | 3 ++- docs/reference-docs/VOUCHERS-API-Delete-Voucher.md | 3 ++- docs/reference-docs/VOUCHERS-API-Disable-Voucher.md | 3 ++- docs/reference-docs/VOUCHERS-API-Enable-Voucher.md | 3 ++- docs/reference-docs/VOUCHERS-API-Examine-Qualification.md | 3 ++- .../VOUCHERS-API-Export-Gift-Card-Transactions.md | 3 ++- docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md | 3 ++- docs/reference-docs/VOUCHERS-API-Get-Voucher.md | 3 ++- docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md | 3 ++- docs/reference-docs/VOUCHERS-API-Import-Vouchers.md | 3 ++- .../reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md | 3 ++- docs/reference-docs/VOUCHERS-API-List-Vouchers.md | 3 ++- docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md | 3 ++- docs/reference-docs/VOUCHERS-API-Update-Voucher.md | 3 ++- docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md | 3 ++- .../VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md | 3 ++- docs/reference-docs/VOUCHERS-API-Voucher-Object.md | 3 ++- docs/reference-docs/Validation-Session.md | 3 ++- docs/reference-docs/Versioning.md | 3 ++- 226 files changed, 452 insertions(+), 226 deletions(-) diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md b/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md index 252e51ec8..b13c06281 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md @@ -1,7 +1,8 @@ --- title: Async Action Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fabf slug: async-action-object hidden: false diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md b/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md index 863223462..c4663213f 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md @@ -1,7 +1,8 @@ --- title: Get Async Action type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-async-action parentDoc: 639ba2658407100061f5fabf hidden: false diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md b/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md index 3b853fd5e..ed88c6572 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md @@ -1,7 +1,8 @@ --- title: List Async Actions type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-async-actions parentDoc: 639ba2658407100061f5fabf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md index 279c640f0..ead674500 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md @@ -1,7 +1,8 @@ --- title: Add Voucher with Specific Code to Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: add-voucher-with-specific-code-to-campaign parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md index e918b5b9c..a2b8d7800 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md @@ -1,7 +1,8 @@ --- title: Add Vouchers to Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: add-vouchers-to-campaign parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md b/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md index 24561c976..c709f4f23 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md +++ b/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md @@ -1,7 +1,8 @@ --- title: Campaign Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5faaf slug: campaign-object hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md index 088e64e49..0325505ef 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md @@ -1,7 +1,8 @@ --- title: Create Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-campaign parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md index 90f2af094..c33d81ec7 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md @@ -1,7 +1,8 @@ --- title: Delete Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-campaign parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md index 0ca0e6f01..4ed360cc2 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md @@ -1,7 +1,8 @@ --- title: Disable Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: disable-campaign parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md index e83028761..efe34a52f 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md @@ -1,7 +1,8 @@ --- title: Enable Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: enable-campaign parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md b/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md index abdc31193..9270c8aa8 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md +++ b/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md @@ -1,7 +1,8 @@ --- title: Examine Qualification [Deprecated] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: examine-campaigns-qualification parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md index c972748a6..496a1ee3f 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md @@ -1,7 +1,8 @@ --- title: Get Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-campaign parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md index 2f2983183..4753c84e6 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md +++ b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md @@ -1,7 +1,8 @@ --- title: Import Vouchers to Campaign by CSV type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: import-vouchers-to-campaign-using-csv parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md index 30ecea456..e174785dc 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md @@ -1,7 +1,8 @@ --- title: Import Vouchers to Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: import-vouchers-to-campaign parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md b/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md index cbdadc6db..e0dd1ab93 100644 --- a/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md +++ b/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md @@ -1,7 +1,8 @@ --- title: List Campaigns type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-campaigns parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md index 61bb68e9a..b9b6c7a1b 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md @@ -1,7 +1,8 @@ --- title: Update Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-campaign parentDoc: 639ba2658407100061f5faaf hidden: false diff --git a/docs/reference-docs/CATEGORIES-API-Category-Object.md b/docs/reference-docs/CATEGORIES-API-Category-Object.md index 7aa67b3d4..15c4e9c65 100644 --- a/docs/reference-docs/CATEGORIES-API-Category-Object.md +++ b/docs/reference-docs/CATEGORIES-API-Category-Object.md @@ -1,7 +1,8 @@ --- title: Category Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fac1 slug: category-object hidden: false diff --git a/docs/reference-docs/CATEGORIES-API-Create-Category.md b/docs/reference-docs/CATEGORIES-API-Create-Category.md index d9b58a2e7..9453f8705 100644 --- a/docs/reference-docs/CATEGORIES-API-Create-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Create-Category.md @@ -1,7 +1,8 @@ --- title: Create Category type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-category parentDoc: 639ba2658407100061f5fac1 hidden: false diff --git a/docs/reference-docs/CATEGORIES-API-Delete-Category.md b/docs/reference-docs/CATEGORIES-API-Delete-Category.md index b537b2c10..8fffa7592 100644 --- a/docs/reference-docs/CATEGORIES-API-Delete-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Delete-Category.md @@ -1,7 +1,8 @@ --- title: Delete Category type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-category parentDoc: 639ba2658407100061f5fac1 hidden: false diff --git a/docs/reference-docs/CATEGORIES-API-Get-Category.md b/docs/reference-docs/CATEGORIES-API-Get-Category.md index 614b50f01..5a043ef7a 100644 --- a/docs/reference-docs/CATEGORIES-API-Get-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Get-Category.md @@ -1,7 +1,8 @@ --- title: Get Category type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-category parentDoc: 639ba2658407100061f5fac1 hidden: false diff --git a/docs/reference-docs/CATEGORIES-API-List-Categories.md b/docs/reference-docs/CATEGORIES-API-List-Categories.md index 91aa57a4c..1f68cd596 100644 --- a/docs/reference-docs/CATEGORIES-API-List-Categories.md +++ b/docs/reference-docs/CATEGORIES-API-List-Categories.md @@ -1,7 +1,8 @@ --- title: List Categories type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-categories parentDoc: 639ba2658407100061f5fac1 hidden: false diff --git a/docs/reference-docs/CATEGORIES-API-Update-Category.md b/docs/reference-docs/CATEGORIES-API-Update-Category.md index 5834f4fda..d1acf93ee 100644 --- a/docs/reference-docs/CATEGORIES-API-Update-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Update-Category.md @@ -1,7 +1,8 @@ --- title: Update Category type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-category parentDoc: 639ba2658407100061f5fac1 hidden: false diff --git a/docs/reference-docs/CONSENTS-API-Consents-Object.md b/docs/reference-docs/CONSENTS-API-Consents-Object.md index 8d3f90310..7016503c9 100644 --- a/docs/reference-docs/CONSENTS-API-Consents-Object.md +++ b/docs/reference-docs/CONSENTS-API-Consents-Object.md @@ -1,7 +1,8 @@ --- title: Consents Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fabe slug: consents-object hidden: false diff --git a/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md b/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md index e8248d9fb..407e72984 100644 --- a/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md +++ b/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md @@ -1,7 +1,8 @@ --- title: List Consents (client-side) type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-consents-client-side parentDoc: 639ba2658407100061f5fabe hidden: false diff --git a/docs/reference-docs/CONSENTS-API-List-Consents.md b/docs/reference-docs/CONSENTS-API-List-Consents.md index 7b5b4cb54..895526b8a 100644 --- a/docs/reference-docs/CONSENTS-API-List-Consents.md +++ b/docs/reference-docs/CONSENTS-API-List-Consents.md @@ -1,7 +1,8 @@ --- title: List Consents type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-consents parentDoc: 639ba2658407100061f5fabe hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-Create-Customer.md b/docs/reference-docs/CUSTOMERS-API-Create-Customer.md index 63749e8ee..2dc1c3adb 100644 --- a/docs/reference-docs/CUSTOMERS-API-Create-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Create-Customer.md @@ -1,7 +1,8 @@ --- title: Create Customer type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-customer parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md b/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md index 2866236a7..0aa3ef7fb 100644 --- a/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md +++ b/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md @@ -1,7 +1,8 @@ --- title: Customer Activity Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab7 slug: customer-activity-object hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-Customer-Object.md b/docs/reference-docs/CUSTOMERS-API-Customer-Object.md index 86b48dc88..477347c12 100644 --- a/docs/reference-docs/CUSTOMERS-API-Customer-Object.md +++ b/docs/reference-docs/CUSTOMERS-API-Customer-Object.md @@ -1,7 +1,8 @@ --- title: Customer Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab7 slug: customer-object hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md b/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md index c149b8b52..ac982fe46 100644 --- a/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md +++ b/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md @@ -1,7 +1,8 @@ --- title: Delete Customer Permanently type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-customer-permanently parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-Get-Customer.md b/docs/reference-docs/CUSTOMERS-API-Get-Customer.md index f34e7c137..1b4e37edf 100644 --- a/docs/reference-docs/CUSTOMERS-API-Get-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Get-Customer.md @@ -1,7 +1,8 @@ --- title: Get Customer type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-customer parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md b/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md index 2d2d3cf2e..ac636d5cc 100644 --- a/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md +++ b/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md @@ -1,7 +1,8 @@ --- title: Import and Update Customers using CSV type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: import-customers-using-csv parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md b/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md index 8df35ff1e..046e8a6d5 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md @@ -1,7 +1,8 @@ --- title: List Customer Activities type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-customer-activities parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md b/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md index 3e3772125..700adbb96 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md @@ -1,7 +1,8 @@ --- title: List Customer's Segments type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-customer-segments parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customers.md b/docs/reference-docs/CUSTOMERS-API-List-Customers.md index 8b206456f..31f726196 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customers.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customers.md @@ -1,7 +1,8 @@ --- title: List Customers type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-customers parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md b/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md index 93b2915e2..d442b54a3 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md @@ -1,7 +1,8 @@ --- title: Update Customer's consents type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-customers-consents parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customer.md b/docs/reference-docs/CUSTOMERS-API-Update-Customer.md index b93b4b9f4..8f3302ba4 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customer.md @@ -1,7 +1,8 @@ --- title: Update Customer type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-customer parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md index 6143a866c..03509d8de 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md @@ -1,7 +1,8 @@ --- title: Update Customer's consents (client-side) type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-customers-consents-client-side parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md index 56673bf74..7c00cba23 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md @@ -1,7 +1,8 @@ --- title: Update Customers in bulk type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-customers-in-bulk parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md index 2307e6940..9c44da6c6 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md @@ -1,7 +1,8 @@ --- title: Update Customers' Metadata in bulk type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-customers-metadata-in-bulk parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/CUSTOMES-API-Delete-Customer.md b/docs/reference-docs/CUSTOMES-API-Delete-Customer.md index 2978dad59..2a22ca853 100644 --- a/docs/reference-docs/CUSTOMES-API-Delete-Customer.md +++ b/docs/reference-docs/CUSTOMES-API-Delete-Customer.md @@ -1,7 +1,8 @@ --- title: Delete Customer type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-customer parentDoc: 639ba2658407100061f5fab7 hidden: false diff --git a/docs/reference-docs/EVENTS-API-Custom-Event-Object.md b/docs/reference-docs/EVENTS-API-Custom-Event-Object.md index b6ce9dfaa..eefcc71f9 100644 --- a/docs/reference-docs/EVENTS-API-Custom-Event-Object.md +++ b/docs/reference-docs/EVENTS-API-Custom-Event-Object.md @@ -1,7 +1,8 @@ --- title: Custom Event Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fabd slug: custom-event-object hidden: false diff --git a/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md b/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md index 6fe858285..723acc17f 100644 --- a/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md +++ b/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md @@ -1,7 +1,8 @@ --- title: Track Custom Event (client-side) type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: track-custom-event-client-side parentDoc: 639ba2658407100061f5fabd hidden: false diff --git a/docs/reference-docs/EVENTS-API-Track-Custom-Event.md b/docs/reference-docs/EVENTS-API-Track-Custom-Event.md index 4ef75bdbd..1be72218d 100644 --- a/docs/reference-docs/EVENTS-API-Track-Custom-Event.md +++ b/docs/reference-docs/EVENTS-API-Track-Custom-Event.md @@ -1,7 +1,8 @@ --- title: Track Custom Event type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: track-custom-event parentDoc: 639ba2658407100061f5fabd hidden: false diff --git a/docs/reference-docs/EXPORTS-API-Create-Export.md b/docs/reference-docs/EXPORTS-API-Create-Export.md index f5339497c..963e4421a 100644 --- a/docs/reference-docs/EXPORTS-API-Create-Export.md +++ b/docs/reference-docs/EXPORTS-API-Create-Export.md @@ -1,7 +1,8 @@ --- title: Create Export type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-export parentDoc: 639ba2658407100061f5fac0 hidden: false diff --git a/docs/reference-docs/EXPORTS-API-Delete-Export.md b/docs/reference-docs/EXPORTS-API-Delete-Export.md index 99e907c95..319d5a9a8 100644 --- a/docs/reference-docs/EXPORTS-API-Delete-Export.md +++ b/docs/reference-docs/EXPORTS-API-Delete-Export.md @@ -1,7 +1,8 @@ --- title: Delete Export type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-export parentDoc: 639ba2658407100061f5fac0 hidden: false diff --git a/docs/reference-docs/EXPORTS-API-Download-Export.md b/docs/reference-docs/EXPORTS-API-Download-Export.md index 48a724949..eadd28cd4 100644 --- a/docs/reference-docs/EXPORTS-API-Download-Export.md +++ b/docs/reference-docs/EXPORTS-API-Download-Export.md @@ -1,7 +1,8 @@ --- title: Download Export type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: download-export parentDoc: 639ba2658407100061f5fac0 hidden: false diff --git a/docs/reference-docs/EXPORTS-API-Export-Object.md b/docs/reference-docs/EXPORTS-API-Export-Object.md index 12b452609..7bb53db76 100644 --- a/docs/reference-docs/EXPORTS-API-Export-Object.md +++ b/docs/reference-docs/EXPORTS-API-Export-Object.md @@ -1,7 +1,8 @@ --- title: Export Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fac0 slug: export-object hidden: false diff --git a/docs/reference-docs/EXPORTS-API-Get-Export.md b/docs/reference-docs/EXPORTS-API-Get-Export.md index 073463958..e1391d0d1 100644 --- a/docs/reference-docs/EXPORTS-API-Get-Export.md +++ b/docs/reference-docs/EXPORTS-API-Get-Export.md @@ -1,7 +1,8 @@ --- title: Get Export type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-export parentDoc: 639ba2658407100061f5fac0 hidden: false diff --git a/docs/reference-docs/EXPORTS-API-List-Exports.md b/docs/reference-docs/EXPORTS-API-List-Exports.md index 19f426f8b..bac8d1226 100644 --- a/docs/reference-docs/EXPORTS-API-List-Exports.md +++ b/docs/reference-docs/EXPORTS-API-List-Exports.md @@ -1,7 +1,8 @@ --- title: List Exports type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-exports parentDoc: 639ba2658407100061f5fac0 hidden: false diff --git a/docs/reference-docs/Errors.md b/docs/reference-docs/Errors.md index 9af3b6556..3d9d5c8c3 100644 --- a/docs/reference-docs/Errors.md +++ b/docs/reference-docs/Errors.md @@ -1,7 +1,8 @@ --- title: Errors excerpt: Learn about the errors returned to responses and how you can customize them to improve your customer experience. -category: 639ba44d204cb60020b4b7ec +category: 639ba44d204cb60020b4b7ec +category-slug: introduction slug: errors type: basic hidden: false diff --git a/docs/reference-docs/Establish-Validation-Session.md b/docs/reference-docs/Establish-Validation-Session.md index ad159d781..5a80eb53a 100644 --- a/docs/reference-docs/Establish-Validation-Session.md +++ b/docs/reference-docs/Establish-Validation-Session.md @@ -1,6 +1,7 @@ --- title: Establish Validation Session -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab5 slug: establish-validation-session type: link diff --git a/docs/reference-docs/Fetching-Data.md b/docs/reference-docs/Fetching-Data.md index 68ddcbf5b..088be0ec5 100644 --- a/docs/reference-docs/Fetching-Data.md +++ b/docs/reference-docs/Fetching-Data.md @@ -1,7 +1,8 @@ --- title: Fetching Data excerpt: Learn how to specify the data you would like to fetch. -category: 639ba44d204cb60020b4b7ec +category: 639ba44d204cb60020b4b7ec +category-slug: introduction slug: listing type: basic hidden: false diff --git a/docs/reference-docs/Introduction.md b/docs/reference-docs/Introduction.md index 6545a2019..291e4debe 100644 --- a/docs/reference-docs/Introduction.md +++ b/docs/reference-docs/Introduction.md @@ -1,7 +1,8 @@ --- title: Introduction excerpt: What is Voucherify API? -category: 639ba44d204cb60020b4b7ec +category: 639ba44d204cb60020b4b7ec +category-slug: introduction slug: introduction-1 type: basic hidden: false diff --git a/docs/reference-docs/LOCATIONS-API-Get-Location.md b/docs/reference-docs/LOCATIONS-API-Get-Location.md index 64b9b17d5..fcfdfbc18 100644 --- a/docs/reference-docs/LOCATIONS-API-Get-Location.md +++ b/docs/reference-docs/LOCATIONS-API-Get-Location.md @@ -1,7 +1,8 @@ --- title: Get Location type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 64d0e09b5a917a1254315da7 slug: get-location hidden: false diff --git a/docs/reference-docs/LOCATIONS-API-List-Locations.md b/docs/reference-docs/LOCATIONS-API-List-Locations.md index 66647a53b..454471734 100644 --- a/docs/reference-docs/LOCATIONS-API-List-Locations.md +++ b/docs/reference-docs/LOCATIONS-API-List-Locations.md @@ -1,7 +1,8 @@ --- title: List Locations type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 64d0e09b5a917a1254315da7 slug: list-locations hidden: false diff --git a/docs/reference-docs/LOCATIONS-API-Location-Object.md b/docs/reference-docs/LOCATIONS-API-Location-Object.md index b7272f58c..c6495db68 100644 --- a/docs/reference-docs/LOCATIONS-API-Location-Object.md +++ b/docs/reference-docs/LOCATIONS-API-Location-Object.md @@ -1,7 +1,8 @@ --- title: Location Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 64d0e09b5a917a1254315da7 slug: location-object hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Add-Member.md b/docs/reference-docs/LOYALTIES-API-Add-Member.md index d5fb49cee..5c8229eaf 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Member.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Member.md @@ -1,7 +1,8 @@ --- title: Add Member type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: add-member parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md index 3b2e5799a..128e31fdd 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md @@ -1,7 +1,8 @@ --- title: Add or Remove Loyalty Card Balance type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: add-remove-loyalty-card-balance-1 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md index a975fea80..b43119fc4 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md @@ -1,7 +1,8 @@ --- title: Add or Remove Loyalty Card Balance type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: add-remove-loyalty-card-balance parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md index 3e4a7d511..5ede9e18b 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md @@ -1,7 +1,8 @@ --- title: Create Earning Rule type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md index f609788d7..4703e7243 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md @@ -1,7 +1,8 @@ --- title: Create Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-loyalty-program parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md b/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md index 58241335d..fea711b00 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md @@ -1,7 +1,8 @@ --- title: Create Points Expiration Export type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-points-expiration-export parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md b/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md index b2a5af4c3..15a2e4cb7 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md @@ -1,7 +1,8 @@ --- title: Create Reward Assignment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-reward-assignment-1 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md index 2b95ad73d..b1df4885d 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md @@ -1,7 +1,8 @@ --- title: Delete Earning Rule type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md index 931ad5ad1..bf6a8c45c 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md @@ -1,7 +1,8 @@ --- title: Delete Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-loyalty-program parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md b/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md index cca83eb3f..70dcf7d15 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md @@ -1,7 +1,8 @@ --- title: Delete Reward Assignment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-reward-assignment-1 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md index b04588073..5b05cffa5 100644 --- a/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md @@ -1,7 +1,8 @@ --- title: Disable Earning Rule type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: disable-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md b/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md index 52393e405..09ca3254a 100644 --- a/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md @@ -1,7 +1,8 @@ --- title: Earning Rule Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab6 slug: earning-rule-object hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md index 5b186af25..25130a74e 100644 --- a/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md @@ -1,7 +1,8 @@ --- title: Enable Earning Rule type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: enable-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md index 9abc11312..3cc9ff72b 100644 --- a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md +++ b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md @@ -1,7 +1,8 @@ --- title: Export Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: export-loyalty-card-transactions-1 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md index 9b5442046..dccdf6743 100644 --- a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md +++ b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md @@ -1,7 +1,8 @@ --- title: Export Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: export-loyalty-card-transactions parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md b/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md index 06913753f..113ddc90c 100644 --- a/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md +++ b/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md @@ -1,7 +1,8 @@ --- title: Get Reward Assignment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-reward-assignment-2 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md index bba5b32c0..154b344bf 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md @@ -1,7 +1,8 @@ --- title: Get Earning Rule type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md index 5a4a7b475..1fd681d88 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md @@ -1,7 +1,8 @@ --- title: Get Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-loyalty-program parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md index f95043ad0..93cfacfe6 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md @@ -1,7 +1,8 @@ --- title: Get Loyalty Tier type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-loyalty-tier parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-1.md b/docs/reference-docs/LOYALTIES-API-Get-Member-1.md index 40041b053..1d7aff821 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-1.md @@ -1,7 +1,8 @@ --- title: Get Member type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-member-1 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md index 01174bff8..5ffe1e628 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md @@ -1,7 +1,8 @@ --- title: Get Member Activities type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-member-activities-1 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md index 3f58fcae1..35946b553 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md @@ -1,7 +1,8 @@ --- title: Get Member Activities type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-member-activities parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member.md b/docs/reference-docs/LOYALTIES-API-Get-Member.md index 82da4ab4a..ea3abe292 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member.md @@ -1,7 +1,8 @@ --- title: Get Member type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-member parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md b/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md index e53b71b43..99f152fad 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md @@ -1,7 +1,8 @@ --- title: Get Points Expiration type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-points-expiration parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md b/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md index 63d0fdf7f..d4f024ddc 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md @@ -1,7 +1,8 @@ --- title: Get Reward Assignment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-reward-assignment-1 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md b/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md index 8f9e168dc..edaee6873 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md @@ -1,7 +1,8 @@ --- title: Get Reward Details type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-reward-details parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md b/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md index e0cfc3501..fdb4df97c 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md +++ b/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md @@ -1,7 +1,8 @@ --- title: List Earning Rules type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-earning-rules parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md index b0eb9ec64..93eba6206 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md @@ -1,7 +1,8 @@ --- title: List Loyalty Campaigns type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-loyalty-programs parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md index a2ae7a141..51e396a3e 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md @@ -1,7 +1,8 @@ --- title: List Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-loyalty-card-transactions-1 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md index 18651c66e..690e847d6 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md @@ -1,7 +1,8 @@ --- title: List Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-loyalty-card-transactions parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md index 2b38f5b46..a3676d62c 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md @@ -1,7 +1,8 @@ --- title: List Loyalty Tier Earning Rules type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-loyalty-tier-earning-rules parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md index bd3c449b0..e5847c3ff 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md @@ -1,7 +1,8 @@ --- title: List Loyalty Tier Rewards type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-loyalty-tier-rewards parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md index 6d3bfbc12..a3720089d 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md @@ -1,7 +1,8 @@ --- title: List Loyalty Tiers type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-loyalty-tiers parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md b/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md index 98b4ade30..b2bb720b1 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md +++ b/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md @@ -1,7 +1,8 @@ --- title: List Member Rewards type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-member-rewards parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md b/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md index 1ab43d0d1..4e73aa5e3 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md +++ b/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md @@ -1,7 +1,8 @@ --- title: List Member's Loyalty Tiers type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-member-loyalty-tier parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Members.md b/docs/reference-docs/LOYALTIES-API-List-Members.md index 19da5891c..96c8b0610 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Members.md +++ b/docs/reference-docs/LOYALTIES-API-List-Members.md @@ -1,7 +1,8 @@ --- title: List Members type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-members parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md index 9bb08a0cb..b8305d9f5 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md +++ b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md @@ -1,7 +1,8 @@ --- title: List Reward Assignments type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-reward-assignments-1 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md index d0cf39cd6..6ce33d12b 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md +++ b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md @@ -1,7 +1,8 @@ --- title: List Reward Assignments type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-reward-assignments-2 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md index 84f84f2a4..9f0149fa9 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md @@ -1,7 +1,8 @@ --- title: Loyalty Campaign Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab6 slug: loyalty-campaign-object hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md index 9d4476d78..352dab2ab 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md @@ -1,7 +1,8 @@ --- title: Loyalty Card Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab6 slug: loyalty-card-object hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md index f8e2ab738..7021f8a02 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md @@ -1,7 +1,8 @@ --- title: Loyalty Tier Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab6 slug: loyalty-tier-object hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md b/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md index a77f2ba23..0e83dc044 100644 --- a/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md +++ b/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md @@ -1,7 +1,8 @@ --- title: Redeem Reward type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: redeem-reward parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md b/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md index bc6a0b8f9..f90eb0d54 100644 --- a/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md +++ b/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md @@ -1,7 +1,8 @@ --- title: Redeem Reward type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: redeem-reward-1 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md b/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md index 0f0f000f4..f95ba3754 100644 --- a/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md +++ b/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md @@ -1,7 +1,8 @@ --- title: Transfer Loyalty Points type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: transfer-points parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md index ac1dca6bc..9964358bc 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md @@ -1,7 +1,8 @@ --- title: Update Earning Rule type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md index efcdd15d8..4af5eb84e 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md @@ -1,7 +1,8 @@ --- title: Update Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-loyalty-program parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md b/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md index bdc38d3bd..8342c6a69 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md @@ -1,7 +1,8 @@ --- title: Update Reward Assignment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-reward-assignment-1 parentDoc: 639ba2658407100061f5fab6 hidden: false diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md b/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md index a5befccfd..845974a49 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md @@ -1,7 +1,8 @@ --- title: Get Metadata Schema type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-metadata-schema parentDoc: 639ba2658407100061f5fac2 hidden: false diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md b/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md index 3037c99e7..350aae6ae 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md @@ -1,7 +1,8 @@ --- title: List Metadata Schemas type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-metadata-schemas parentDoc: 639ba2658407100061f5fac2 hidden: false diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md b/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md index 40574d0b8..1e0992330 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md @@ -1,7 +1,8 @@ --- title: Metadata Schema Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fac2 slug: metadata-schema-object hidden: false diff --git a/docs/reference-docs/ORDERS-API-Create-Order.md b/docs/reference-docs/ORDERS-API-Create-Order.md index 1b9484d2a..6c3a89f0b 100644 --- a/docs/reference-docs/ORDERS-API-Create-Order.md +++ b/docs/reference-docs/ORDERS-API-Create-Order.md @@ -1,7 +1,8 @@ --- title: Create Order type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-order parentDoc: 639ba2658407100061f5fab8 hidden: false diff --git a/docs/reference-docs/ORDERS-API-Create-Orders-Export.md b/docs/reference-docs/ORDERS-API-Create-Orders-Export.md index 9ee225465..2a26128fe 100644 --- a/docs/reference-docs/ORDERS-API-Create-Orders-Export.md +++ b/docs/reference-docs/ORDERS-API-Create-Orders-Export.md @@ -1,7 +1,8 @@ --- title: Create Orders Export type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-order-export parentDoc: 639ba2658407100061f5fab8 hidden: false diff --git a/docs/reference-docs/ORDERS-API-Get-Order.md b/docs/reference-docs/ORDERS-API-Get-Order.md index 046629008..bebfcf768 100644 --- a/docs/reference-docs/ORDERS-API-Get-Order.md +++ b/docs/reference-docs/ORDERS-API-Get-Order.md @@ -1,7 +1,8 @@ --- title: Get Order type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-order parentDoc: 639ba2658407100061f5fab8 hidden: false diff --git a/docs/reference-docs/ORDERS-API-Import-Orders.md b/docs/reference-docs/ORDERS-API-Import-Orders.md index 97844cd82..6b40fa3ee 100644 --- a/docs/reference-docs/ORDERS-API-Import-Orders.md +++ b/docs/reference-docs/ORDERS-API-Import-Orders.md @@ -1,7 +1,8 @@ --- title: Import Orders type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: import-orders parentDoc: 639ba2658407100061f5fab8 hidden: false diff --git a/docs/reference-docs/ORDERS-API-List-Orders.md b/docs/reference-docs/ORDERS-API-List-Orders.md index 99d9017af..2e4a059c3 100644 --- a/docs/reference-docs/ORDERS-API-List-Orders.md +++ b/docs/reference-docs/ORDERS-API-List-Orders.md @@ -1,7 +1,8 @@ --- title: List Orders type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-orders parentDoc: 639ba2658407100061f5fab8 hidden: false diff --git a/docs/reference-docs/ORDERS-API-Order-Object.md b/docs/reference-docs/ORDERS-API-Order-Object.md index 79e8bb22c..a3aa1b26d 100644 --- a/docs/reference-docs/ORDERS-API-Order-Object.md +++ b/docs/reference-docs/ORDERS-API-Order-Object.md @@ -1,7 +1,8 @@ --- title: Order Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab8 slug: order-object hidden: false diff --git a/docs/reference-docs/ORDERS-API-Update-Order.md b/docs/reference-docs/ORDERS-API-Update-Order.md index b9ae723c3..0a82f5d76 100644 --- a/docs/reference-docs/ORDERS-API-Update-Order.md +++ b/docs/reference-docs/ORDERS-API-Update-Order.md @@ -1,7 +1,8 @@ --- title: Update Order type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-order parentDoc: 639ba2658407100061f5fab8 hidden: false diff --git a/docs/reference-docs/Object-Schemas.md b/docs/reference-docs/Object-Schemas.md index 467fe1459..60bedce69 100644 --- a/docs/reference-docs/Object-Schemas.md +++ b/docs/reference-docs/Object-Schemas.md @@ -1,7 +1,8 @@ --- title: Object Schemas excerpt: Schema model definitions -category: 639ba44d204cb60020b4b7ec +category: 639ba44d204cb60020b4b7ec +category-slug: introduction slug: object-schemas type: basic hidden: false diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md index d671dfc2f..6862d576f 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md @@ -1,7 +1,8 @@ --- title: Delete Product Collection type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-product-collection parentDoc: 639ba2658407100061f5faba hidden: false diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md index 0644e245e..b1e3cf14f 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md @@ -1,7 +1,8 @@ --- title: List Product Collections type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-product-collections parentDoc: 639ba2658407100061f5faba hidden: false diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md index 4387beab1..8260c6ab6 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md @@ -1,7 +1,8 @@ --- title: List Products in Collection type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-products-in-collection parentDoc: 639ba2658407100061f5faba hidden: false diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md index a421be57f..8031139cd 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md @@ -1,7 +1,8 @@ --- title: Product Collection Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5faba slug: product-collection-object hidden: false diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md index 055bf7e50..2949891c1 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md @@ -1,7 +1,8 @@ --- title: Get Product Collection type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-product-collection parentDoc: 639ba2658407100061f5faba hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Create-Product.md b/docs/reference-docs/PRODUCTS-API-Create-Product.md index 003f46754..d683f489d 100644 --- a/docs/reference-docs/PRODUCTS-API-Create-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Create-Product.md @@ -1,7 +1,8 @@ --- title: Create Product type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-product parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Create-SKU.md b/docs/reference-docs/PRODUCTS-API-Create-SKU.md index 7874f6375..eaa1551cc 100644 --- a/docs/reference-docs/PRODUCTS-API-Create-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Create-SKU.md @@ -1,7 +1,8 @@ --- title: Create SKU type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-sku parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Delete-Product.md b/docs/reference-docs/PRODUCTS-API-Delete-Product.md index 095f7b38e..a031679e4 100644 --- a/docs/reference-docs/PRODUCTS-API-Delete-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Delete-Product.md @@ -1,7 +1,8 @@ --- title: Delete Product type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-product parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Delete-SKU.md b/docs/reference-docs/PRODUCTS-API-Delete-SKU.md index dda3a32b7..35bcba461 100644 --- a/docs/reference-docs/PRODUCTS-API-Delete-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Delete-SKU.md @@ -1,7 +1,8 @@ --- title: Delete SKU type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-sku parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Get-Product.md b/docs/reference-docs/PRODUCTS-API-Get-Product.md index a8cb5aaa6..031e4d1ca 100644 --- a/docs/reference-docs/PRODUCTS-API-Get-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Get-Product.md @@ -1,7 +1,8 @@ --- title: Get Product type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-product parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Get-SKU.md b/docs/reference-docs/PRODUCTS-API-Get-SKU.md index 51917c6dc..133850726 100644 --- a/docs/reference-docs/PRODUCTS-API-Get-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Get-SKU.md @@ -1,7 +1,8 @@ --- title: Get SKU type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-sku parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md b/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md index 6daadfe0f..658f5f418 100644 --- a/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md +++ b/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md @@ -1,7 +1,8 @@ --- title: Import Products using CSV type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: import-products-using-csv parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md b/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md index 494b60d11..3323ddee1 100644 --- a/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md +++ b/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md @@ -1,7 +1,8 @@ --- title: Import SKUs using CSV type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: import-skus-using-csv parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-List-Products.md b/docs/reference-docs/PRODUCTS-API-List-Products.md index 0d47a9087..4cf3e10c3 100644 --- a/docs/reference-docs/PRODUCTS-API-List-Products.md +++ b/docs/reference-docs/PRODUCTS-API-List-Products.md @@ -1,7 +1,8 @@ --- title: List Products type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-products parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md b/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md index 9a140a58e..2ed493b7a 100644 --- a/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md +++ b/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md @@ -1,7 +1,8 @@ --- title: List SKUs in Product type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-skus-in-product parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Product-Object.md b/docs/reference-docs/PRODUCTS-API-Product-Object.md index efcd27f56..e9f320d42 100644 --- a/docs/reference-docs/PRODUCTS-API-Product-Object.md +++ b/docs/reference-docs/PRODUCTS-API-Product-Object.md @@ -1,7 +1,8 @@ --- title: Product Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab9 slug: product-object hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-SKU-Object.md b/docs/reference-docs/PRODUCTS-API-SKU-Object.md index 08e3be940..1c3ddffea 100644 --- a/docs/reference-docs/PRODUCTS-API-SKU-Object.md +++ b/docs/reference-docs/PRODUCTS-API-SKU-Object.md @@ -1,7 +1,8 @@ --- title: SKU Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab9 slug: sku-object hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Update-Product.md b/docs/reference-docs/PRODUCTS-API-Update-Product.md index 993b3ddfb..ad8e6afde 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Product.md @@ -1,7 +1,8 @@ --- title: Update Product type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-product parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md b/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md index 983bb6b59..0d05ebeae 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md @@ -1,7 +1,8 @@ --- title: Update Products in bulk type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-products-in-bulk parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md b/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md index 29a96148f..8a24a6483 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md @@ -1,7 +1,8 @@ --- title: Update Products' Metadata in bulk type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-products-metadata-in-bulk parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PRODUCTS-API-Update-SKU.md b/docs/reference-docs/PRODUCTS-API-Update-SKU.md index ad0b129a2..eda8964c4 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Update-SKU.md @@ -1,7 +1,8 @@ --- title: Update SKU type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-sku parentDoc: 639ba2658407100061f5fab9 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md b/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md index e8e5d67db..299e27a86 100644 --- a/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md @@ -1,7 +1,8 @@ --- title: Add Promotion Tier to Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: add-promotion-tier-to-campaign parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md index 9d2aaee9f..1b8822875 100644 --- a/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md @@ -1,7 +1,8 @@ --- title: Create Promotion Stack type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-promotion-stack parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md index bfb9ecfc6..49a743811 100644 --- a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md @@ -1,7 +1,8 @@ --- title: Delete Promotion Stack type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-promotion-stack parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md index 0c3257d72..6dae7e351 100644 --- a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md @@ -1,7 +1,8 @@ --- title: Delete Promotion Tier type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-promotion-tier parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md index 7b70134d9..dcd2f9f50 100644 --- a/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md @@ -1,7 +1,8 @@ --- title: Disable Promotion Tier type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: disable-promotion-tier parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md index f9916190b..7f301ec5c 100644 --- a/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md @@ -1,7 +1,8 @@ --- title: Enable Promotion Tier type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: enable-promotion-tier parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md index add490404..a8460e670 100644 --- a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md @@ -1,7 +1,8 @@ --- title: Get Promotion Stack type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-promotion-stack parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md index bd0fe9a1b..984479c45 100644 --- a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md @@ -1,7 +1,8 @@ --- title: Get Promotion Tier type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-promotion-tier parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md index 381b1fafb..81b1e6413 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md @@ -1,7 +1,8 @@ --- title: List Promotion Stacks in Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-promotion-stacks-in-campaign parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md index ea739abc2..5944a62ab 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md @@ -1,7 +1,8 @@ --- title: List Promotion Stacks type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-all-promotion-stacks parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md index 098cc7be1..66dbc3d4f 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md @@ -1,7 +1,8 @@ --- title: List Promotion Tiers (client-side) type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-promotion-tiers-client-side parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md index 96207588b..b95fb6e61 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md @@ -1,7 +1,8 @@ --- title: List Promotion Tiers from Campaign type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-promotion-tiers-from-campaign parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md index 94d6a9485..8150ed14c 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md @@ -1,7 +1,8 @@ --- title: List Promotion Tiers type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-promotion-tiers parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md b/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md index 3f81c2fd2..12d48392e 100644 --- a/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md +++ b/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md @@ -1,7 +1,8 @@ --- title: Promotion Tier Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab0 slug: promotion-tier-object hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md index 7eb951a92..300adfbfc 100644 --- a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md @@ -1,7 +1,8 @@ --- title: Update Promotion Stack type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-promotion-stack parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md index 181940d68..513bfded0 100644 --- a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md @@ -1,7 +1,8 @@ --- title: Update Promotion Tier type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-promotion-tier parentDoc: 639ba2658407100061f5fab0 hidden: false diff --git a/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md b/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md index fad757da7..6d14ef91b 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md +++ b/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md @@ -1,7 +1,8 @@ --- title: Create Publication type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-publication-1 parentDoc: 63b58495b5ee6800ab6535dc hidden: false diff --git a/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md b/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md index e71f8522b..b524e8265 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md +++ b/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md @@ -1,7 +1,8 @@ --- title: Create Publication type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-publication parentDoc: 63b58495b5ee6800ab6535dc hidden: false diff --git a/docs/reference-docs/PUBLICATIONS-API-List-Publications.md b/docs/reference-docs/PUBLICATIONS-API-List-Publications.md index 7e2c3f92e..6ca4a25b9 100644 --- a/docs/reference-docs/PUBLICATIONS-API-List-Publications.md +++ b/docs/reference-docs/PUBLICATIONS-API-List-Publications.md @@ -1,7 +1,8 @@ --- title: List Publications type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-publications parentDoc: 63b58495b5ee6800ab6535dc hidden: false diff --git a/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md b/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md index 91b4e04eb..4074db608 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md +++ b/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md @@ -1,7 +1,8 @@ --- title: Publication Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 63b58495b5ee6800ab6535dc slug: publication-object hidden: false diff --git a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md index f4f416c57..b5214b240 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md @@ -1,7 +1,8 @@ --- title: Check Eligibility (client-side) [Beta] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 64d0e09b5a917a1254315da8 slug: check-eligibility-client-side hidden: false diff --git a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md index f75672599..d0ee95a8b 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md @@ -1,7 +1,8 @@ --- title: Check Eligibility [Beta] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 64d0e09b5a917a1254315da8 slug: check-eligibility hidden: false diff --git a/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md b/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md index 42d49ecc5..e52572e49 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md @@ -1,7 +1,8 @@ --- title: Qualification Object [Beta] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 64d0e09b5a917a1254315da8 slug: qualification-object hidden: false diff --git a/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md b/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md index 362d02ae1..f984640c9 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md +++ b/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md @@ -1,7 +1,8 @@ --- title: Get Redemption type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-redemption parentDoc: 639ba2658407100061f5fab4 hidden: false diff --git a/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md b/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md index c95e0add0..193263227 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md +++ b/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md @@ -1,7 +1,8 @@ --- title: Get Voucher's Redemptions type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-voucher-redemptions parentDoc: 639ba2658407100061f5fab4 hidden: false diff --git a/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md b/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md index 05ca56e28..1344f41aa 100644 --- a/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md +++ b/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md @@ -1,7 +1,8 @@ --- title: List Redemptions type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-redemptions parentDoc: 639ba2658407100061f5fab4 hidden: false diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md index be4c226a6..e27137e26 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md @@ -1,7 +1,8 @@ --- title: Redeem Promotion [Deprecated] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: redeem-promotion parentDoc: 639ba2658407100061f5fab4 hidden: false diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md index 21d4ccaaf..215d776f9 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md @@ -1,7 +1,8 @@ --- title: Redeem Voucher (client-side) [Deprecated] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: redeem-voucher-client-side parentDoc: 639ba2658407100061f5fab4 hidden: false diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md index bb29ff645..bef1b56f3 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md @@ -1,7 +1,8 @@ --- title: Redeem Voucher [Deprecated] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: redeem-voucher parentDoc: 639ba2658407100061f5fab4 hidden: false diff --git a/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md b/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md index 20018f800..fabd898af 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md @@ -1,7 +1,8 @@ --- title: Redemption Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab4 slug: redemption-object hidden: false diff --git a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md index 1981adee4..7f4d4fab1 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md +++ b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md @@ -1,7 +1,8 @@ --- title: Rollback Redemption Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab4 slug: rollback-redemption-object hidden: false diff --git a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md index cc494891f..94d4da7df 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md +++ b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md @@ -1,7 +1,8 @@ --- title: Rollback Redemption type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: rollback-redemption parentDoc: 639ba2658407100061f5fab4 hidden: false diff --git a/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md index ae400a494..d66279142 100644 --- a/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md @@ -1,7 +1,8 @@ --- title: Create Reward Assignment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-reward-assignment parentDoc: 639ba2658407100061f5fab1 hidden: false diff --git a/docs/reference-docs/REWARDS-API-Create-Reward.md b/docs/reference-docs/REWARDS-API-Create-Reward.md index 5be065b33..fea88c971 100644 --- a/docs/reference-docs/REWARDS-API-Create-Reward.md +++ b/docs/reference-docs/REWARDS-API-Create-Reward.md @@ -1,7 +1,8 @@ --- title: Create Reward type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-reward parentDoc: 639ba2658407100061f5fab1 hidden: false diff --git a/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md index fe88cc34f..fe4da3c87 100644 --- a/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md @@ -1,7 +1,8 @@ --- title: Delete Reward Assignment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-reward-assignment parentDoc: 639ba2658407100061f5fab1 hidden: false diff --git a/docs/reference-docs/REWARDS-API-Delete-Reward.md b/docs/reference-docs/REWARDS-API-Delete-Reward.md index e85651f24..304e9749b 100644 --- a/docs/reference-docs/REWARDS-API-Delete-Reward.md +++ b/docs/reference-docs/REWARDS-API-Delete-Reward.md @@ -1,7 +1,8 @@ --- title: Delete Reward type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-reward parentDoc: 639ba2658407100061f5fab1 hidden: false diff --git a/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md index 9de7617c2..a82771244 100644 --- a/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md @@ -1,7 +1,8 @@ --- title: Get Reward Assignment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-reward-assignment parentDoc: 639ba2658407100061f5fab1 hidden: false diff --git a/docs/reference-docs/REWARDS-API-Get-Reward.md b/docs/reference-docs/REWARDS-API-Get-Reward.md index c3587b067..b4db1a739 100644 --- a/docs/reference-docs/REWARDS-API-Get-Reward.md +++ b/docs/reference-docs/REWARDS-API-Get-Reward.md @@ -1,7 +1,8 @@ --- title: Get Reward type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-reward parentDoc: 639ba2658407100061f5fab1 hidden: false diff --git a/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md b/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md index 01e0bbe3a..958e22820 100644 --- a/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md +++ b/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md @@ -1,7 +1,8 @@ --- title: List Reward Assignments type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-reward-assignments parentDoc: 639ba2658407100061f5fab1 hidden: false diff --git a/docs/reference-docs/REWARDS-API-List-Rewards.md b/docs/reference-docs/REWARDS-API-List-Rewards.md index 76f26be58..9bcf627b7 100644 --- a/docs/reference-docs/REWARDS-API-List-Rewards.md +++ b/docs/reference-docs/REWARDS-API-List-Rewards.md @@ -1,7 +1,8 @@ --- title: List Rewards type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-rewards parentDoc: 639ba2658407100061f5fab1 hidden: false diff --git a/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md b/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md index 087a1e70f..c3809cd3a 100644 --- a/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md +++ b/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md @@ -1,7 +1,8 @@ --- title: Reward Assignment Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab1 slug: reward-assignment-object hidden: false diff --git a/docs/reference-docs/REWARDS-API-Reward-Object.md b/docs/reference-docs/REWARDS-API-Reward-Object.md index 4f8068e54..7e45b4d8c 100644 --- a/docs/reference-docs/REWARDS-API-Reward-Object.md +++ b/docs/reference-docs/REWARDS-API-Reward-Object.md @@ -1,7 +1,8 @@ --- title: Reward Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab1 slug: reward-object hidden: false diff --git a/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md index f67525523..551ec9605 100644 --- a/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md @@ -1,7 +1,8 @@ --- title: Update Reward Assignment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-reward-assignment parentDoc: 639ba2658407100061f5fab1 hidden: false diff --git a/docs/reference-docs/REWARDS-API-Update-Reward.md b/docs/reference-docs/REWARDS-API-Update-Reward.md index b78198662..8e20ad6c8 100644 --- a/docs/reference-docs/REWARDS-API-Update-Reward.md +++ b/docs/reference-docs/REWARDS-API-Update-Reward.md @@ -1,7 +1,8 @@ --- title: Update Reward type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-reward parentDoc: 639ba2658407100061f5fab1 hidden: false diff --git a/docs/reference-docs/SEGMENTS-API-Create-Segment.md b/docs/reference-docs/SEGMENTS-API-Create-Segment.md index 1827e52a1..6a20ffd35 100644 --- a/docs/reference-docs/SEGMENTS-API-Create-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Create-Segment.md @@ -1,7 +1,8 @@ --- title: Create Segment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-segment parentDoc: 639ba2658407100061f5fabc hidden: false diff --git a/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md b/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md index 4c5881671..c9d944ddd 100644 --- a/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md +++ b/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md @@ -1,7 +1,8 @@ --- title: Customer Segment Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fabc slug: customer-segment-object hidden: false diff --git a/docs/reference-docs/SEGMENTS-API-Delete-Segment.md b/docs/reference-docs/SEGMENTS-API-Delete-Segment.md index 2474fa5ed..d429c273b 100644 --- a/docs/reference-docs/SEGMENTS-API-Delete-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Delete-Segment.md @@ -1,7 +1,8 @@ --- title: Delete Segment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-segment parentDoc: 639ba2658407100061f5fabc hidden: false diff --git a/docs/reference-docs/SEGMENTS-API-Get-Segment.md b/docs/reference-docs/SEGMENTS-API-Get-Segment.md index 7b651a32b..4b9324f19 100644 --- a/docs/reference-docs/SEGMENTS-API-Get-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Get-Segment.md @@ -1,7 +1,8 @@ --- title: Get Segment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-segment parentDoc: 639ba2658407100061f5fabc hidden: false diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md index 2033f11c5..a7e416e56 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md @@ -1,7 +1,8 @@ --- title: Redeem Stackable Discounts (client-side) type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: redeem-stacked-discounts-client-side parentDoc: 639ba2658407100061f5fab5 hidden: false diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md index 3b1119583..34b1de6e1 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md @@ -1,7 +1,8 @@ --- title: Redeem Stackable Discounts type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: redeem-stacked-discounts parentDoc: 639ba2658407100061f5fab5 hidden: false diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md index 8cbc31cdc..659638a1d 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md @@ -1,7 +1,8 @@ --- title: Rollback Stackable Redemptions type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: rollback-stacked-redemptions parentDoc: 639ba2658407100061f5fab5 hidden: false diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md index f703aa356..e168ab5a8 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md @@ -1,7 +1,8 @@ --- title: Stackable Redemptions Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab5 slug: stackable-redemptions-object hidden: false diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md index 1b59861cd..386af09f0 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md @@ -1,7 +1,8 @@ --- title: Validate Stackable Discounts (client-side) type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: validate-stacked-discounts-client-side parentDoc: 639ba2658407100061f5fab5 hidden: false diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md index 8fa8d262f..c66eb0b28 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md @@ -1,7 +1,8 @@ --- title: Validate Stackable Discounts type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: validate-stacked-discounts parentDoc: 639ba2658407100061f5fab5 hidden: false diff --git a/docs/reference-docs/Stacking-API-Overview.md b/docs/reference-docs/Stacking-API-Overview.md index 5ca95c47e..d891f0fdb 100644 --- a/docs/reference-docs/Stacking-API-Overview.md +++ b/docs/reference-docs/Stacking-API-Overview.md @@ -1,6 +1,7 @@ --- title: Stacking API Overview -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab5 slug: stacking-api-overview type: link diff --git a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md index af26d2edf..d5214bae4 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md @@ -1,7 +1,8 @@ --- title: Create Validation Rules type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-validation-rules parentDoc: 639ba2658407100061f5fabb hidden: false diff --git a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md index 7313ad373..d6afef8b5 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md @@ -1,7 +1,8 @@ --- title: Create Validation Rules Assignments type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-validation-rule-assignment parentDoc: 639ba2658407100061f5fabb hidden: false diff --git a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md index ddf0a19b7..2eee5fdaa 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md @@ -1,7 +1,8 @@ --- title: Delete Validation Rule Assignment type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-validation-rule-assignment parentDoc: 639ba2658407100061f5fabb hidden: false diff --git a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md index 264aaf37b..30474a13d 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md @@ -1,7 +1,8 @@ --- title: Delete Validation Rule type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-validation-rules parentDoc: 639ba2658407100061f5fabb hidden: false diff --git a/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md index 2f55f2c48..3093570e1 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md @@ -1,7 +1,8 @@ --- title: Get Validation Rule type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-validation-rule parentDoc: 639ba2658407100061f5fabb hidden: false diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md index 4287057ce..77f0295af 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md @@ -1,7 +1,8 @@ --- title: List Validation Rule Assignments type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-validation-rule-assignments parentDoc: 639ba2658407100061f5fabb hidden: false diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md index b78f7d64e..bd59e7487 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md @@ -1,7 +1,8 @@ --- title: List Validation Rules' Assignment(s) type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-validation-rules-assignments parentDoc: 639ba2658407100061f5fabb hidden: false diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md index bf4183271..4b77ae569 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md @@ -1,7 +1,8 @@ --- title: List Validation Rules type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-validation-rules parentDoc: 639ba2658407100061f5fabb hidden: false diff --git a/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md index dcb5ec952..887db56ba 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md @@ -1,7 +1,8 @@ --- title: Update Validation Rule type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-validation-rule parentDoc: 639ba2658407100061f5fabb hidden: false diff --git a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md index 5c1c23145..5e3ca0488 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md @@ -1,7 +1,8 @@ --- title: Validation Rule Assignment Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fabb slug: validation-rule-assignment-object hidden: false diff --git a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md index 252707c42..d0b42a197 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md @@ -1,7 +1,8 @@ --- title: Validation Rule Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fabb slug: validation-rule-object hidden: false diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md b/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md index f30a2b8a6..a5652a22a 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md @@ -1,7 +1,8 @@ --- title: Validate Promotion Tier [Deprecated] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: validate-promotion-tier parentDoc: 639ba2658407100061f5fab3 hidden: false diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md b/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md index 706ad5435..0b6492f80 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md @@ -1,7 +1,8 @@ --- title: Validate Promotions [Deprecated] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: validate-promotions parentDoc: 639ba2658407100061f5fab3 hidden: false diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md index bb81795b0..18b28cc95 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md @@ -1,7 +1,8 @@ --- title: Validate Voucher (client-side) [Deprecated] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: validate-voucher-client-side parentDoc: 639ba2658407100061f5fab3 hidden: false diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md index 96c2c5ab5..910e7a1f3 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md @@ -1,7 +1,8 @@ --- title: Validate Voucher [Deprecated] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: validate-voucher parentDoc: 639ba2658407100061f5fab3 hidden: false diff --git a/docs/reference-docs/VALIDATIONS-API-Validation-Object.md b/docs/reference-docs/VALIDATIONS-API-Validation-Object.md index 9964327b0..f70b18f74 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validation-Object.md +++ b/docs/reference-docs/VALIDATIONS-API-Validation-Object.md @@ -1,7 +1,8 @@ --- title: Validation Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab3 slug: validation-object hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md b/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md index c6254cded..32ada93bc 100644 --- a/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md +++ b/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md @@ -1,7 +1,8 @@ --- title: Add or Remove Gift Card Balance type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: add-remove-gift-voucher-balance parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Create-Voucher.md b/docs/reference-docs/VOUCHERS-API-Create-Voucher.md index 2d6b794ee..570623b7e 100644 --- a/docs/reference-docs/VOUCHERS-API-Create-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Create-Voucher.md @@ -1,7 +1,8 @@ --- title: Create Voucher type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: create-voucher parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md b/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md index fe39fc7bd..9d1fd827c 100644 --- a/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md @@ -1,7 +1,8 @@ --- title: Delete Voucher type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: delete-voucher parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md b/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md index 412aaf5f1..b8c286393 100644 --- a/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md @@ -1,7 +1,8 @@ --- title: Disable Voucher type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: disable-voucher parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md b/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md index 374bc56c2..57c2c8bb2 100644 --- a/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md @@ -1,7 +1,8 @@ --- title: Enable Voucher type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: enable-voucher parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md b/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md index 981034818..2a28ae076 100644 --- a/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md +++ b/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md @@ -1,7 +1,8 @@ --- title: Examine Qualification [Deprecated] type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: examine-vouchers-qualification parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md b/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md index 0c2d3aeb7..4c049c0e2 100644 --- a/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md +++ b/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md @@ -1,7 +1,8 @@ --- title: Export Gift Card Transactions type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: export-gift-card-transactions parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md b/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md index 84fa48111..d60667231 100644 --- a/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md +++ b/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md @@ -1,7 +1,8 @@ --- title: Generate Random Code type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: generate-random-code parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Get-Voucher.md b/docs/reference-docs/VOUCHERS-API-Get-Voucher.md index 48b940d63..20f92cf8c 100644 --- a/docs/reference-docs/VOUCHERS-API-Get-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Get-Voucher.md @@ -1,7 +1,8 @@ --- title: Get Voucher type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: get-voucher parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md b/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md index 22e81dcd4..1e734f37d 100644 --- a/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md +++ b/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md @@ -1,7 +1,8 @@ --- title: Import Vouchers using CSV type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: import-vouchers-using-csv parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md b/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md index f1b4c5e70..f1f7fa6db 100644 --- a/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md +++ b/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md @@ -1,7 +1,8 @@ --- title: Import Vouchers type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: import-vouchers parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md b/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md index 5b5f733ef..7e9715dc4 100644 --- a/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md +++ b/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md @@ -1,7 +1,8 @@ --- title: List Gift Card Transactions type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-gift-card-transactions parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-List-Vouchers.md b/docs/reference-docs/VOUCHERS-API-List-Vouchers.md index 24cd17513..ed1b7920c 100644 --- a/docs/reference-docs/VOUCHERS-API-List-Vouchers.md +++ b/docs/reference-docs/VOUCHERS-API-List-Vouchers.md @@ -1,7 +1,8 @@ --- title: List Vouchers type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: list-vouchers parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md b/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md index 83784388c..9eaa5c102 100644 --- a/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md +++ b/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md @@ -1,7 +1,8 @@ --- title: Release Validation Session type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: release-validation-session parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Update-Voucher.md b/docs/reference-docs/VOUCHERS-API-Update-Voucher.md index 9301ccf10..a2310ac60 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Voucher.md @@ -1,7 +1,8 @@ --- title: Update Voucher type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-voucher parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md index 73c419526..a591c568b 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md @@ -1,7 +1,8 @@ --- title: Update Vouchers in bulk type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-vouchers-in-bulk parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md index c46d715e1..e7a407847 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md @@ -1,7 +1,8 @@ --- title: Update Vouchers' metadata in bulk type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api slug: update-vouchers-metadata-in-bulk parentDoc: 639ba2658407100061f5faae hidden: false diff --git a/docs/reference-docs/VOUCHERS-API-Voucher-Object.md b/docs/reference-docs/VOUCHERS-API-Voucher-Object.md index 1c10d128f..8549ec619 100644 --- a/docs/reference-docs/VOUCHERS-API-Voucher-Object.md +++ b/docs/reference-docs/VOUCHERS-API-Voucher-Object.md @@ -1,7 +1,8 @@ --- title: Voucher Object type: endpoint -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5faae slug: voucher-object hidden: false diff --git a/docs/reference-docs/Validation-Session.md b/docs/reference-docs/Validation-Session.md index f548a29a5..42225ccd1 100644 --- a/docs/reference-docs/Validation-Session.md +++ b/docs/reference-docs/Validation-Session.md @@ -1,6 +1,7 @@ --- title: Establish Validation Session -category: 639ba2628407100061f5faac +category: 639ba2628407100061f5faac +category-slug: voucherify-api parentDoc: 639ba2658407100061f5fab3 slug: validation-session type: link diff --git a/docs/reference-docs/Versioning.md b/docs/reference-docs/Versioning.md index 7d0d6758d..d2f4adcc0 100644 --- a/docs/reference-docs/Versioning.md +++ b/docs/reference-docs/Versioning.md @@ -1,7 +1,8 @@ --- title: Versioning excerpt: What is the latest version? -category: 639ba44d204cb60020b4b7ec +category: 639ba44d204cb60020b4b7ec +category-slug: introduction slug: versioning type: basic hidden: false From 91b8e7d09e878957ae909b71fe8dc904f3a046e1 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:59:58 +0200 Subject: [PATCH 16/62] script fix --- docs/index.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/index.js b/docs/index.js index 0c95e2f79..ec8a42c8c 100644 --- a/docs/index.js +++ b/docs/index.js @@ -33,22 +33,23 @@ if (!version) { const categories = response; const pathsToFiles = []; - const basePath = path.join(__dirname, "/guides"); const getFiles = async (path) => { const items = await fs.readdir(path, { withFileTypes: true, }); for (const item of items) { const itemPath = path + `/${item.name}`; - if (item.isDirectory()) { + if (item.isDirectory() && !itemPath.endsWith("node_modules")) { await getFiles(itemPath); continue; } - pathsToFiles.push(itemPath); + if (itemPath.endsWith(".md")) { + pathsToFiles.push(itemPath); + } } }; - await getFiles(basePath); + await getFiles(__dirname); for (const pathToFile of pathsToFiles) { const data = await fs.readFile(pathToFile, { encoding: "utf8" }); From 91338e25326ef5ff5629370610cbc463787485d1 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 19 Sep 2023 16:00:51 +0200 Subject: [PATCH 17/62] Update .env.example --- docs/.env.example | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/.env.example b/docs/.env.example index 8f9fa5797..a6948185d 100644 --- a/docs/.env.example +++ b/docs/.env.example @@ -1,2 +1 @@ -README_IO_AUTH=rdme_x -X_README_VERSION=2018-08-01 +README_IO_AUTH=rdme_x...... From b160114de3d83e9fb7eb4d93e7e505f97d39440d Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 19 Sep 2023 16:58:53 +0200 Subject: [PATCH 18/62] done --- automation/Update-Order-Standard-Work.md | 13 +++++++++++++ docs/index.js | 2 +- docs/package.json | 4 ++++ 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/automation/Update-Order-Standard-Work.md b/automation/Update-Order-Standard-Work.md index b30a20a6e..48457abe1 100644 --- a/automation/Update-Order-Standard-Work.md +++ b/automation/Update-Order-Standard-Work.md @@ -8,6 +8,19 @@ The following sequence of actions should be taken to successfully update the Dev > > If you create a new version of documentation in readme, such as by copying an existing version and renaming the version name, readme.io will create new page IDs and new category IDs. This means that some pre-work is needed for a new version of the documentation. +## CategoriesIds **IMPORTANT** + +This documentation can be used in multiple readmeIo versions at the same time, but this creates a problem since each `.md` file contains categoryId information and this categoryId is strictly connected to a version. Because of that, during contribution please DO NOT check the categoryId information, simply ignore such changes in repo. +But since the categoryId information can be inaccurate in your project, you need to do following steps: + +- 1st time? + - Go to `docs` folder + - Run `npm install` command + - Copy `.env.example` to `.env` and fill the file with your readmeIo auth token +- Nth time? + - Go to `docs` folder + - run `npm start -- --version=xxxxxxxxxx` np. `npm start -- --version=2018-08-01` where `version` please put your readme io project version + ### Pre-work This process involves updating all category IDs and slugs in the `.md` files. diff --git a/docs/index.js b/docs/index.js index ec8a42c8c..f20037d85 100644 --- a/docs/index.js +++ b/docs/index.js @@ -7,7 +7,7 @@ const { version } = require("minimist")(process.argv.slice(2)); if (!version) { console.log( - "`version` argument was not provided :/, next time try add `--version=************` at the end of file execution command" + "`version` argument was not provided :/, next time try add `-- --version=************` at the end of file execution command" ); return; } diff --git a/docs/package.json b/docs/package.json index e03f7f143..4ab14c99e 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,4 +1,8 @@ { + "version": "1.0.0", + "scripts": { + "start": "node index.js " + }, "dependencies": { "dotenv": "^16.3.1", "minimist": "^1.2.8", From b1f2b614967ccb6763ad51ba0f09c55b1be5463f Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 11:05:03 +0200 Subject: [PATCH 19/62] in progress --- .gitignore | 6 ++- docs/{ => script}/.env.example | 0 docs/{ => script}/index.js | 55 +++++++++++++++++---- docs/script/package-lock.json | 11 +++++ docs/script/package.json | 6 +++ docs/package-lock.json => package-lock.json | 0 docs/package.json => package.json | 2 +- 7 files changed, 68 insertions(+), 12 deletions(-) rename docs/{ => script}/.env.example (100%) rename docs/{ => script}/index.js (55%) create mode 100644 docs/script/package-lock.json create mode 100644 docs/script/package.json rename docs/package-lock.json => package-lock.json (100%) rename docs/package.json => package.json (74%) diff --git a/.gitignore b/.gitignore index b4b08819a..161a99c1a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ -/docs/.env -/docs/node_modules +/node_modules .idea/* +/docs/.bin +/docs/.bin/* +/docs/script/.env diff --git a/docs/.env.example b/docs/script/.env.example similarity index 100% rename from docs/.env.example rename to docs/script/.env.example diff --git a/docs/index.js b/docs/script/index.js similarity index 55% rename from docs/index.js rename to docs/script/index.js index f20037d85..06e1238cc 100644 --- a/docs/index.js +++ b/docs/script/index.js @@ -1,5 +1,6 @@ const fetch = require("node-fetch"); -const fs = require("fs/promises"); +const fsPromises = require("fs/promises"); +const fs = require("fs"); const path = require("path"); require("dotenv").config(); @@ -12,6 +13,11 @@ if (!version) { return; } +if (process.env.README_IO_AUTH?.length < 10) { + console.log("`README_IO_AUTH` was not provided in `.env` file :/"); + return; +} + (async () => { const options = { method: "GET", @@ -24,17 +30,27 @@ if (!version) { const response = await fetch( "https://dash.readme.com/api/v1/categories?perPage=100", options - ).then((res) => res.json()); + ); - if (response.error) { + const responseJSON = await response.json(); + if (responseJSON.error) { console.log(response); return; } - const categories = response; + if ( + !Array.isArray(responseJSON) || + responseJSON.find((element) => !element?.id) + ) { + console.log(`Unknown response :/`); + console.log(responseJSON); + return; + } + + const categories = responseJSON; const pathsToFiles = []; const getFiles = async (path) => { - const items = await fs.readdir(path, { + const items = await fsPromises.readdir(path, { withFileTypes: true, }); for (const item of items) { @@ -49,10 +65,12 @@ if (!version) { } }; - await getFiles(__dirname); + const basePath = path.join(__dirname, ".."); + const baseOutputPath = path.join(basePath, "..", ".bin"); + await getFiles(basePath); for (const pathToFile of pathsToFiles) { - const data = await fs.readFile(pathToFile, { encoding: "utf8" }); + const data = await fsPromises.readFile(pathToFile, { encoding: "utf8" }); const categorySlug = data .match(/category\-slug: .*/)?.[0] ?.split?.("category-slug: ")?.[1]; @@ -65,8 +83,27 @@ if (!version) { console.log(`error, ${categorySlug}, ${category}, ${pathToFile}`); continue; } - await fs.writeFile( - pathToFile, + + const folders = pathToFile + .replace(basePath, "") + .split("/") + .filter((e) => e && !e.endsWith(".md")) + .map((value, index, array) => { + let temp = value; + for (let i = 0; i < index; i++) { + temp = array[i] + "/" + temp; + } + return temp; + }); + + for (const folder of folders) { + if (!fs.existsSync(baseOutputPath + "/" + folder)) { + await fsPromises.mkdir(baseOutputPath + "/" + folder); + } + } + + await fsPromises.writeFile( + pathToFile.replace(basePath, baseOutputPath), data.replace(/category: .*/, `category: ${category.id}`).toString(), "utf8" ); diff --git a/docs/script/package-lock.json b/docs/script/package-lock.json new file mode 100644 index 000000000..05e70fa30 --- /dev/null +++ b/docs/script/package-lock.json @@ -0,0 +1,11 @@ +{ + "name": "script", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "version": "1.0.0" + } + } +} diff --git a/docs/script/package.json b/docs/script/package.json new file mode 100644 index 000000000..48c48a1ab --- /dev/null +++ b/docs/script/package.json @@ -0,0 +1,6 @@ +{ + "version": "1.0.0", + "scripts": { + "start": "node index.js" + } +} diff --git a/docs/package-lock.json b/package-lock.json similarity index 100% rename from docs/package-lock.json rename to package-lock.json diff --git a/docs/package.json b/package.json similarity index 74% rename from docs/package.json rename to package.json index 4ab14c99e..3492be766 100644 --- a/docs/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "version": "1.0.0", "scripts": { - "start": "node index.js " + "start": "npm run start --prefix docs/script" }, "dependencies": { "dotenv": "^16.3.1", From a3155ebf913d5ac3a52a3d7110037e35b5653636 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 11:08:45 +0200 Subject: [PATCH 20/62] Update index.js --- docs/script/index.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/script/index.js b/docs/script/index.js index 06e1238cc..0a94c2ad4 100644 --- a/docs/script/index.js +++ b/docs/script/index.js @@ -66,7 +66,13 @@ if (process.env.README_IO_AUTH?.length < 10) { }; const basePath = path.join(__dirname, ".."); - const baseOutputPath = path.join(basePath, "..", ".bin"); + + const baseOutputPath = path.join(basePath, ".bin"); + //create .bin folder + if (!fs.existsSync(baseOutputPath)) { + await fsPromises.mkdir(baseOutputPath); + } + await getFiles(basePath); for (const pathToFile of pathsToFiles) { From ec639575027bd140918409f8ad4ffc566a5c3ebb Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 11:19:27 +0200 Subject: [PATCH 21/62] fix --- docs/script/index.js | 2 +- package.json | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/script/index.js b/docs/script/index.js index 0a94c2ad4..ed9b56382 100644 --- a/docs/script/index.js +++ b/docs/script/index.js @@ -55,7 +55,7 @@ if (process.env.README_IO_AUTH?.length < 10) { }); for (const item of items) { const itemPath = path + `/${item.name}`; - if (item.isDirectory() && !itemPath.endsWith("node_modules")) { + if (item.isDirectory() && !itemPath.endsWith(".bin")) { await getFiles(itemPath); continue; } diff --git a/package.json b/package.json index 3492be766..51fb38ffd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,10 @@ { "version": "1.0.0", "scripts": { - "start": "npm run start --prefix docs/script" + "pre-publish": "npm run start --prefix docs/script", + "publish": "rdme docs ./docs/.bin", + "publish:guides": "rdme docs ./docs/.bin/guides", + "publish:reference-docs": "rdme docs ./docs/.bin/reference-docs" }, "dependencies": { "dotenv": "^16.3.1", From bd5c9e2fd5ed342ab49f049731cb58eaea944fb1 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 12:53:02 +0200 Subject: [PATCH 22/62] refectoring --- docs/script/index.js | 42 ++++++++++++++++++++++++------------------ 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/docs/script/index.js b/docs/script/index.js index ed9b56382..0e2b1c3b0 100644 --- a/docs/script/index.js +++ b/docs/script/index.js @@ -48,24 +48,9 @@ if (process.env.README_IO_AUTH?.length < 10) { } const categories = responseJSON; - const pathsToFiles = []; - const getFiles = async (path) => { - const items = await fsPromises.readdir(path, { - withFileTypes: true, - }); - for (const item of items) { - const itemPath = path + `/${item.name}`; - if (item.isDirectory() && !itemPath.endsWith(".bin")) { - await getFiles(itemPath); - continue; - } - if (itemPath.endsWith(".md")) { - pathsToFiles.push(itemPath); - } - } - }; const basePath = path.join(__dirname, ".."); + const pathsToFiles = await getFiles(basePath); const baseOutputPath = path.join(basePath, ".bin"); //create .bin folder @@ -73,8 +58,6 @@ if (process.env.README_IO_AUTH?.length < 10) { await fsPromises.mkdir(baseOutputPath); } - await getFiles(basePath); - for (const pathToFile of pathsToFiles) { const data = await fsPromises.readFile(pathToFile, { encoding: "utf8" }); const categorySlug = data @@ -90,6 +73,7 @@ if (process.env.README_IO_AUTH?.length < 10) { continue; } + //folders that output data will be present const folders = pathToFile .replace(basePath, "") .split("/") @@ -102,12 +86,14 @@ if (process.env.README_IO_AUTH?.length < 10) { return temp; }); + //checking if folders exists for (const folder of folders) { if (!fs.existsSync(baseOutputPath + "/" + folder)) { await fsPromises.mkdir(baseOutputPath + "/" + folder); } } + //saving to .bin folder await fsPromises.writeFile( pathToFile.replace(basePath, baseOutputPath), data.replace(/category: .*/, `category: ${category.id}`).toString(), @@ -115,3 +101,23 @@ if (process.env.README_IO_AUTH?.length < 10) { ); } })(); + +const getFiles = async (path) => { + const pathsToFiles = []; + const items = await fsPromises.readdir(path, { + withFileTypes: true, + }); + for (const item of items) { + const itemPath = path + `/${item.name}`; + if (item.isDirectory() && !itemPath.endsWith(".bin")) { + (await getFiles(itemPath)).forEach((value) => { + pathsToFiles.push(value); + }); + continue; + } + if (itemPath.endsWith(".md")) { + pathsToFiles.push(itemPath); + } + } + return pathsToFiles; +}; From 3bbd825d437e062293cf329e145e01e07cf6dde2 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 13:22:18 +0200 Subject: [PATCH 23/62] Update index.js --- docs/script/index.js | 73 ++++++++++++++++++++++++-------------------- 1 file changed, 40 insertions(+), 33 deletions(-) diff --git a/docs/script/index.js b/docs/script/index.js index 0e2b1c3b0..651f867c4 100644 --- a/docs/script/index.js +++ b/docs/script/index.js @@ -17,37 +17,8 @@ if (process.env.README_IO_AUTH?.length < 10) { console.log("`README_IO_AUTH` was not provided in `.env` file :/"); return; } - -(async () => { - const options = { - method: "GET", - headers: { - "x-readme-version": version, - authorization: "Basic " + btoa(process.env.README_IO_AUTH + ":"), - }, - }; - - const response = await fetch( - "https://dash.readme.com/api/v1/categories?perPage=100", - options - ); - - const responseJSON = await response.json(); - if (responseJSON.error) { - console.log(response); - return; - } - - if ( - !Array.isArray(responseJSON) || - responseJSON.find((element) => !element?.id) - ) { - console.log(`Unknown response :/`); - console.log(responseJSON); - return; - } - - const categories = responseJSON; +const main = async () => { + const categories = await getCategories(); const basePath = path.join(__dirname, ".."); const pathsToFiles = await getFiles(basePath); @@ -67,7 +38,13 @@ if (process.env.README_IO_AUTH?.length < 10) { console.log(`error, ${categorySlug}, ${pathToFile}`); continue; } - const category = categories.find((c) => c.slug === categorySlug); + const category = categories + .filter((c) => c.slug.includes(categorySlug)) + .sort( + (a, b) => + new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime() + )?.[0]; + if (!category) { console.log(`error, ${categorySlug}, ${category}, ${pathToFile}`); continue; @@ -100,8 +77,36 @@ if (process.env.README_IO_AUTH?.length < 10) { "utf8" ); } -})(); +}; +const getCategories = async () => { + const options = { + method: "GET", + headers: { + "x-readme-version": version, + authorization: "Basic " + btoa(process.env.README_IO_AUTH + ":"), + }, + }; + + const response = await fetch( + "https://dash.readme.com/api/v1/categories?perPage=100", + options + ); + const responseJSON = await response.json(); + if (responseJSON.error) { + console.log(response); + throw new Error(responseJSON.error); + } + + if ( + !Array.isArray(responseJSON) || + responseJSON.find((element) => !element?.id) + ) { + console.log(responseJSON); + throw new Error(`Unknown response :/`); + } + return responseJSON; +}; const getFiles = async (path) => { const pathsToFiles = []; const items = await fsPromises.readdir(path, { @@ -121,3 +126,5 @@ const getFiles = async (path) => { } return pathsToFiles; }; + +main(); From 8b016ff25ee7285d7b0972dd4224218df624b28d Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 16:10:04 +0200 Subject: [PATCH 24/62] script fix, replacing parentDocId --- docs/script/index.js | 77 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 71 insertions(+), 6 deletions(-) diff --git a/docs/script/index.js b/docs/script/index.js index 651f867c4..51ee4a227 100644 --- a/docs/script/index.js +++ b/docs/script/index.js @@ -19,6 +19,7 @@ if (process.env.README_IO_AUTH?.length < 10) { } const main = async () => { const categories = await getCategories(); + const docsForCategories = new Map(); const basePath = path.join(__dirname, ".."); const pathsToFiles = await getFiles(basePath); @@ -31,22 +32,51 @@ const main = async () => { for (const pathToFile of pathsToFiles) { const data = await fsPromises.readFile(pathToFile, { encoding: "utf8" }); - const categorySlug = data + const fileCategorySlug = data .match(/category\-slug: .*/)?.[0] ?.split?.("category-slug: ")?.[1]; - if (!categorySlug) { - console.log(`error, ${categorySlug}, ${pathToFile}`); + if (!fileCategorySlug) { + console.log(`error, ${fileCategorySlug}, ${pathToFile}`); continue; } const category = categories - .filter((c) => c.slug.includes(categorySlug)) + .filter((c) => c.slug.includes(fileCategorySlug)) .sort( (a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime() )?.[0]; + const categorySlug = category.slug; + + const replaceParentDoc = { old: "", new: "" }; + const parentDoc = data + .match(/parentDoc: .*/)?.[0] + ?.split?.("parentDoc: ")?.[1]; + if (parentDoc) { + if (!docsForCategories.get(categorySlug)) { + docsForCategories.set( + categorySlug, + await getDocsForCategory(categorySlug) + ); + } + const docsForCategory = docsForCategories.get(categorySlug); + const docSlug = data.match(/\nslug: .*/)?.[0]?.split?.("slug: ")?.[1]; + const parentDoc = docsForCategory.find((categoryDocs) => + categoryDocs.children.find((doc) => doc.slug === docSlug) + ); + if (!parentDoc?._id) { + console.log(`error, ${parentDoc}, ${docSlug}, ${pathToFile}`); + console.log(JSON.stringify(docsForCategory)); + throw new Error("Missing parentDoc or parentDoc._id"); + } + replaceParentDoc.old = `parentDoc: ${parentDoc}`; + replaceParentDoc.new = `parentDoc: ${parentDoc._id}`; + console.log("ok"); + } if (!category) { - console.log(`error, ${categorySlug}, ${category}, ${pathToFile}`); + console.log( + `error, ${categorySlug}, ${fileCategorySlug}, ${category}, ${pathToFile}` + ); continue; } @@ -73,11 +103,46 @@ const main = async () => { //saving to .bin folder await fsPromises.writeFile( pathToFile.replace(basePath, baseOutputPath), - data.replace(/category: .*/, `category: ${category.id}`).toString(), + replaceParentDoc.old && replaceParentDoc.new + ? data + .replace(/category: .*/, `category: ${category.id}`) + .replace(replaceParentDoc.old, replaceParentDoc.new) + .toString() + : data.replace(/category: .*/, `category: ${category.id}`).toString(), "utf8" ); } }; + +const getDocsForCategory = async (slug) => { + const options = { + method: "GET", + headers: { + "x-readme-version": version, + authorization: "Basic " + btoa(process.env.README_IO_AUTH + ":"), + }, + }; + + const response = await fetch( + `https://dash.readme.com/api/v1/categories/${slug}/docs`, + options + ); + + const responseJSON = await response.json(); + if (responseJSON.error) { + console.log(response); + throw new Error(responseJSON.error); + } + + if ( + !Array.isArray(responseJSON) || + responseJSON.find((element) => !element?._id) + ) { + console.log(responseJSON); + throw new Error(`Unknown response :/`); + } + return responseJSON; +}; const getCategories = async () => { const options = { method: "GET", From 6990be231d98274fd314c617b91bf740e1aad057 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 16:58:41 +0200 Subject: [PATCH 25/62] slugChanges --- reference/OpenAPI.json | 146 ++++++++++++++++++++--------------------- 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 095662ca7..7ef84c1e7 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -40073,7 +40073,7 @@ }, "/v1/vouchers": { "get": { - "operationId": "get-vouchers", + "operationId": "list-vouchers", "tags": [ "VOUCHERS API" ], @@ -40297,7 +40297,7 @@ } ], "get": { - "operationId": "get-vouchers-code", + "operationId": "get-voucher", "tags": [ "VOUCHERS API" ], @@ -40864,7 +40864,7 @@ } }, "put": { - "operationId": "put-vouchers-code", + "operationId": "update-voucher", "tags": [ "VOUCHERS API" ], @@ -41430,7 +41430,7 @@ } }, "delete": { - "operationId": "delete-vouchers-code", + "operationId": "delete-voucher", "tags": [ "VOUCHERS API" ], @@ -41482,7 +41482,7 @@ } }, "post": { - "operationId": "post-vouchers-code", + "operationId": "create-voucher", "tags": [ "VOUCHERS API" ], @@ -42001,7 +42001,7 @@ }, "/v1/vouchers/": { "post": { - "operationId": "post-vouchers", + "operationId": "generate-random-code", "tags": [ "VOUCHERS API" ], @@ -42506,7 +42506,7 @@ } ], "post": { - "operationId": "post-vouchers-code-enable", + "operationId": "enable-voucher", "tags": [ "VOUCHERS API" ], @@ -42637,7 +42637,7 @@ } ], "post": { - "operationId": "post-vouchers-code-disable", + "operationId": "disable-voucher", "tags": [ "VOUCHERS API" ], @@ -42768,7 +42768,7 @@ } ], "post": { - "operationId": "post-vouchers-code-balance", + "operationId": "add-remove-gift-voucher-balance", "tags": [ "VOUCHERS API" ], @@ -42865,7 +42865,7 @@ } ], "get": { - "operationId": "get-vouchers-code-transactions", + "operationId": "list-gift-card-transactions", "tags": [ "VOUCHERS API" ], @@ -43163,7 +43163,7 @@ } ], "post": { - "operationId": "post-vouchers-code-transactions-export", + "operationId": "export-gift-card-transactions", "tags": [ "VOUCHERS API" ], @@ -43310,7 +43310,7 @@ }, "/v1/vouchers/import": { "post": { - "operationId": "post-vouchers-import", + "operationId": "import-vouchers", "tags": [ "VOUCHERS API" ], @@ -43650,7 +43650,7 @@ }, "/v1/vouchers/qualification": { "post": { - "operationId": "post-vouchers-qualification", + "operationId": "examine-vouchers-qualification", "deprecated": true, "tags": [ "VOUCHERS API" @@ -44135,7 +44135,7 @@ }, "/v1/vouchers/bulk/async": { "post": { - "operationId": "post-vouchers-bulk-async", + "operationId": "update-vouchers-in-bulk", "tags": [ "VOUCHERS API" ], @@ -44205,7 +44205,7 @@ }, "/v1/vouchers/metadata/async": { "post": { - "operationId": "post-vouchers-metadata-async", + "operationId": "update-vouchers-metadata-in-bulk", "tags": [ "VOUCHERS API" ], @@ -44364,7 +44364,7 @@ }, "/v1/campaigns": { "post": { - "operationId": "post-campaigns", + "operationId": "create-campaign", "tags": [ "CAMPAIGNS API", "PROMOTIONS API" @@ -45225,7 +45225,7 @@ } }, "get": { - "operationId": "get-campaigns", + "operationId": "list-campaigns", "tags": [ "CAMPAIGNS API" ], @@ -46548,7 +46548,7 @@ } ], "post": { - "operationId": "post-campaigns-enable", + "operationId": "enable-campaign", "tags": [ "CAMPAIGNS API" ], @@ -46617,7 +46617,7 @@ } ], "post": { - "operationId": "post-campaigns-disable", + "operationId": "disable-campaign", "tags": [ "CAMPAIGNS API" ], @@ -46696,7 +46696,7 @@ }, "/v1/promotions/tiers": { "get": { - "operationId": "get-promotions-tiers", + "operationId": "list-promotion-tiers", "tags": [ "PROMOTIONS API" ], @@ -46939,7 +46939,7 @@ }, "/client/v1/promotions/tiers": { "get": { - "operationId": "get-promotions-tiers-client_side", + "operationId": "list-promotion-tiers-client-side", "tags": [ "PROMOTIONS API" ], @@ -47311,7 +47311,7 @@ } }, "post": { - "operationId": "post-promotions-campaign_id-tiers", + "operationId": "add-promotion-tier-to-campaign", "tags": [ "PROMOTIONS API" ], @@ -47919,7 +47919,7 @@ }, "/v1/promotions/stacks": { "get": { - "operationId": "get-promotions-stacks", + "operationId": "list-all-promotion-stacks", "tags": [ "PROMOTIONS API" ], @@ -48588,7 +48588,7 @@ }, "/v1/rewards": { "get": { - "operationId": "get-rewards", + "operationId": "list-rewards", "tags": [ "REWARDS API" ], @@ -48741,7 +48741,7 @@ } }, "post": { - "operationId": "post-rewards", + "operationId": "create-reward", "tags": [ "REWARDS API" ], @@ -49674,7 +49674,7 @@ }, "/v1/publications/create": { "get": { - "operationId": "get-publications-create", + "operationId": "create-publication", "tags": [ "PUBLICATIONS API" ], @@ -49973,7 +49973,7 @@ }, "/v1/publications": { "get": { - "operationId": "get-publications", + "operationId": "list-publications", "tags": [ "PUBLICATIONS API" ], @@ -50538,7 +50538,7 @@ } ], "post": { - "operationId": "post-vouchers-code-validate", + "operationId": "validate-voucher", "deprecated": true, "tags": [ "VALIDATIONS API" @@ -52022,7 +52022,7 @@ }, "/client/v1/validate": { "get": { - "operationId": "get-validate", + "operationId": "validate-voucher-client-side", "deprecated": true, "tags": [ "VALIDATIONS API" @@ -52613,7 +52613,7 @@ }, "/v1/promotions/validation": { "post": { - "operationId": "post-promotions-validation", + "operationId": "validate-promotions", "deprecated": true, "tags": [ "VALIDATIONS API" @@ -55059,7 +55059,7 @@ }, "/v1/redemptions": { "get": { - "operationId": "get-redemptions", + "operationId": "list-redemptions", "tags": [ "REDEMPTIONS API" ], @@ -55709,7 +55709,7 @@ } }, "post": { - "operationId": "post-redemptions", + "operationId": "redeem-stacked-discounts", "tags": [ "STACKABLE DISCOUNTS API" ], @@ -57260,7 +57260,7 @@ } ], "get": { - "operationId": "get-vouchers-code-redemption", + "operationId": "get-voucher-redemptions", "tags": [ "REDEMPTIONS API" ], @@ -57744,7 +57744,7 @@ } }, "post": { - "operationId": "post-vouchers-code-redemption", + "operationId": "redeem-voucher", "deprecated": true, "tags": [ "REDEMPTIONS API" @@ -58367,7 +58367,7 @@ }, "/client/v1/redeem": { "post": { - "operationId": "post-redeem", + "operationId": "redeem-voucher-client-side", "deprecated": true, "tags": [ "REDEMPTIONS API" @@ -60196,7 +60196,7 @@ }, "/client/v1/redemptions": { "post": { - "operationId": "post-redemptions-client_side", + "operationId": "redeem-stacked-discounts-client-side", "tags": [ "STACKABLE DISCOUNTS API" ], @@ -60299,7 +60299,7 @@ }, "/v1/validations": { "post": { - "operationId": "post-validations", + "operationId": "validate-stacked-discounts", "tags": [ "STACKABLE DISCOUNTS API" ], @@ -61048,7 +61048,7 @@ }, "/client/v1/validations": { "post": { - "operationId": "post-validations-client_side", + "operationId": "validate-stacked-discounts-client-side", "tags": [ "STACKABLE DISCOUNTS API" ], @@ -61406,7 +61406,7 @@ }, "/v1/loyalties": { "get": { - "operationId": "get-loyalties", + "operationId": "list-loyalty-programs", "tags": [ "LOYALTIES API" ], @@ -61619,7 +61619,7 @@ } }, "post": { - "operationId": "post-loyalties", + "operationId": "create-loyalty-program", "tags": [ "LOYALTIES API" ], @@ -71065,7 +71065,7 @@ }, "/v1/customers": { "get": { - "operationId": "get-customers", + "operationId": "list-customers", "tags": [ "CUSTOMERS API" ], @@ -71341,7 +71341,7 @@ } }, "post": { - "operationId": "post-customers", + "operationId": "create-customer", "tags": [ "CUSTOMERS API" ], @@ -71925,7 +71925,7 @@ }, "/v1/customers/bulk/async": { "post": { - "operationId": "post-customers-bulk-async", + "operationId": "update-customers-in-bulk", "tags": [ "CUSTOMERS API" ], @@ -72080,7 +72080,7 @@ }, "/v1/customers/metadata/async": { "post": { - "operationId": "post-customers-metadata-async", + "operationId": "update-customers-metadata-in-bulk", "tags": [ "CUSTOMERS API" ], @@ -72503,7 +72503,7 @@ }, "/v1/orders": { "get": { - "operationId": "get-orders", + "operationId": "list-orders", "tags": [ "ORDERS API" ], @@ -73197,7 +73197,7 @@ } }, "post": { - "operationId": "post-orders", + "operationId": "create-order", "tags": [ "ORDERS API" ], @@ -73652,7 +73652,7 @@ }, "/v1/orders/import": { "post": { - "operationId": "post-orders-import", + "operationId": "import-orders", "tags": [ "ORDERS API" ], @@ -73969,7 +73969,7 @@ }, "/v1/orders/export": { "post": { - "operationId": "post-orders-export", + "operationId": "create-order-export", "tags": [ "ORDERS API" ], @@ -74156,7 +74156,7 @@ }, "/v1/products": { "get": { - "operationId": "get-products", + "operationId": "list-products", "tags": [ "PRODUCTS API" ], @@ -74331,7 +74331,7 @@ } }, "post": { - "operationId": "post-products", + "operationId": "create-product", "tags": [ "PRODUCTS API" ], @@ -74658,7 +74658,7 @@ }, "/v1/products/bulk/async": { "post": { - "operationId": "post-products-bulk-async", + "operationId": "update-products-in-bulk", "tags": [ "PRODUCTS API" ], @@ -74764,7 +74764,7 @@ }, "/v1/products/metadata/async": { "post": { - "operationId": "post-products-metadata-async", + "operationId": "update-products-metadata-in-bulk", "tags": [ "PRODUCTS API" ], @@ -74865,7 +74865,7 @@ } ], "get": { - "operationId": "get-skus-sku_id", + "operationId": "get-sku", "tags": [ "PRODUCTS API" ], @@ -75475,7 +75475,7 @@ }, "/v1/product-collections": { "get": { - "operationId": "get-product-collections", + "operationId": "list-product-collections", "tags": [ "PRODUCT COLLECTIONS API" ], @@ -76115,7 +76115,7 @@ }, "/v1/validation-rules": { "get": { - "operationId": "get-validation-rules", + "operationId": "list-validation-rules", "tags": [ "VALIDATION RULES API" ], @@ -76334,7 +76334,7 @@ } }, "post": { - "operationId": "post-validation-rules", + "operationId": "create-validation-rules", "tags": [ "VALIDATION RULES API" ], @@ -76881,7 +76881,7 @@ }, "/v1/validation-rules-assignments": { "get": { - "operationId": "get-validation-rules-assignments", + "operationId": "list-validation-rules-assignments", "tags": [ "VALIDATION RULES API" ], @@ -77427,7 +77427,7 @@ }, "/v1/segments": { "post": { - "operationId": "post-segments", + "operationId": "create-segment", "tags": [ "SEGMENTS API" ], @@ -77549,7 +77549,7 @@ }, "/v1/events": { "post": { - "operationId": "post-events", + "operationId": "track-custom-event", "tags": [ "EVENTS API" ], @@ -77669,7 +77669,7 @@ }, "/client/v1/events": { "post": { - "operationId": "post-events-client_side", + "operationId": "track-custom-event-client-side", "tags": [ "EVENTS API" ], @@ -77803,7 +77803,7 @@ }, "/v1/consents": { "get": { - "operationId": "get-consents", + "operationId": "list-consents", "tags": [ "CONSENTS API" ], @@ -78011,7 +78011,7 @@ }, "/v1/async-actions": { "get": { - "operationId": "get-async-actions", + "operationId": "list-async-actions", "tags": [ "ASYNC ACTIONS API" ], @@ -78122,7 +78122,7 @@ } ], "get": { - "operationId": "get-async-actions-async_action_id", + "operationId": "get-async-action", "tags": [ "ASYNC ACTIONS API" ], @@ -78728,7 +78728,7 @@ }, "/v1/exports": { "post": { - "operationId": "post-exports", + "operationId": "create-export", "tags": [ "EXPORTS API" ], @@ -78802,7 +78802,7 @@ } }, "get": { - "operationId": "get-exports", + "operationId": "list-exports", "tags": [ "EXPORTS API" ], @@ -78948,7 +78948,7 @@ } ], "get": { - "operationId": "get-exports-export_id", + "operationId": "get-export", "tags": [ "EXPORTS API" ], @@ -79028,7 +79028,7 @@ } }, "delete": { - "operationId": "delete-exports-export_id", + "operationId": "delete-export", "tags": [ "EXPORTS API" ], @@ -79178,7 +79178,7 @@ }, "/v1/categories": { "get": { - "operationId": "get-categories", + "operationId": "list-categories", "tags": [ "CATEGORIES API" ], @@ -79258,7 +79258,7 @@ } }, "post": { - "operationId": "post-categories", + "operationId": "create-category", "tags": [ "CATEGORIES API" ], @@ -79549,7 +79549,7 @@ }, "/v1/metadata-schemas": { "get": { - "operationId": "get-metadata-schemas", + "operationId": "list-metadata-schemas", "tags": [ "METADATA SCHEMAS API" ], @@ -80054,7 +80054,7 @@ } ], "get": { - "operationId": "get-metadata-schemas-resource", + "operationId": "get-metadata-schema", "tags": [ "METADATA SCHEMAS API" ], @@ -80909,7 +80909,7 @@ }, "/v1/qualifications": { "post": { - "operationId": "post-qualifications", + "operationId": "check-eligibility", "tags": [ "QUALIFICATIONS API" ], @@ -80986,4 +80986,4 @@ } } } -} \ No newline at end of file +} From e18034ef19f6aa960e2ae3a20b5424f4b2771506 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 17:05:29 +0200 Subject: [PATCH 26/62] Update OpenAPI.json --- reference/OpenAPI.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 7ef84c1e7..89d33f253 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -45965,7 +45965,7 @@ } ], "post": { - "operationId": "post-campaigns-campaignId-vouchers-code", + "operationId": "add-voucher-with-specific-code-to-campaign", "tags": [ "CAMPAIGNS API" ], @@ -46123,7 +46123,7 @@ } ], "post": { - "operationId": "post-campaigns-campaignId-import", + "operationId": "import-vouchers-to-campaign", "tags": [ "CAMPAIGNS API" ], @@ -46359,7 +46359,7 @@ } ], "post": { - "operationId": "post-campaigns-campaignId-importCSV", + "operationId": "import-vouchers-to-campaign-using-csv", "tags": [ "CAMPAIGNS API" ], @@ -46426,7 +46426,7 @@ }, "/v1/campaigns/qualification": { "post": { - "operationId": "post-campaigns-qualification", + "operationId": "examine-campaigns-qualification", "deprecated": true, "tags": [ "CAMPAIGNS API" From cde85d9da10db468ee1bb6349f820d74462af971 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 17:08:41 +0200 Subject: [PATCH 27/62] Update OpenAPI.json --- reference/OpenAPI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 89d33f253..aec72527a 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -45855,7 +45855,7 @@ } ], "post": { - "operationId": "post-campaigns-campaignId-vouchers", + "operationId": "add-vouchers-to-campaign", "tags": [ "CAMPAIGNS API" ], From eddcfcb7db32f897bf39a6aa9b8da659c05b4bba Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 17:23:33 +0200 Subject: [PATCH 28/62] Update OpenAPI.json --- reference/OpenAPI.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index aec72527a..c6e493e12 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -45557,7 +45557,7 @@ } ], "get": { - "operationId": "get-campaigns-campaignId", + "operationId": "get-campaign", "tags": [ "CAMPAIGNS API" ], @@ -45653,7 +45653,7 @@ } }, "put": { - "operationId": "put-campaigns-campaignId", + "operationId": "update-campaign", "tags": [ "CAMPAIGNS API" ], @@ -45777,7 +45777,7 @@ } }, "delete": { - "operationId": "delete-campaigns-campaignId", + "operationId": "delete-campaign", "tags": [ "CAMPAIGNS API" ], @@ -47196,7 +47196,7 @@ } ], "get": { - "operationId": "get-promotions-campaignId-tiers", + "operationId": "list-promotion-tiers-from-campaign", "tags": [ "PROMOTIONS API" ], From 4f090bcef1a898234e2cbac2b74345ce3e7d77b4 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 17:33:58 +0200 Subject: [PATCH 29/62] Update OpenAPI.json --- reference/OpenAPI.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index c6e493e12..0fcb94817 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -79357,7 +79357,7 @@ } ], "get": { - "operationId": "get-categories-categoryId", + "operationId": "get-category", "tags": [ "CATEGORIES API" ], @@ -79395,7 +79395,7 @@ } }, "delete": { - "operationId": "delete-categories-categoryId", + "operationId": "delete-category", "tags": [ "CATEGORIES API" ], @@ -79438,7 +79438,7 @@ } }, "put": { - "operationId": "put-categories-categoryId", + "operationId": "update-category", "tags": [ "CATEGORIES API" ], @@ -80948,7 +80948,7 @@ }, "/client/v1/qualifications": { "post": { - "operationId": "post-qualifications-clientSide", + "operationId": "check-eligibility-client-side", "tags": [ "QUALIFICATIONS API" ], From 4b9357bd1ec705a16f94351f883dc1131a39a0e3 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 17:43:06 +0200 Subject: [PATCH 30/62] Update OpenAPI.json --- reference/OpenAPI.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 0fcb94817..7741eeea8 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -71477,7 +71477,7 @@ } ], "get": { - "operationId": "get-customers-customerId", + "operationId": "get-customer", "tags": [ "CUSTOMERS API" ], @@ -71627,7 +71627,7 @@ } }, "put": { - "operationId": "put-customers-customerId", + "operationId": "update-customer", "tags": [ "CUSTOMERS API" ], @@ -71805,7 +71805,7 @@ } ], "post": { - "operationId": "post-customers-customerId-permanent-deletion", + "operationId": "delete-customer-permanently", "tags": [ "CUSTOMERS API" ], @@ -72181,7 +72181,7 @@ } ], "put": { - "operationId": "put-customers-customerId-consents", + "operationId": "update-customers-consents", "tags": [ "CUSTOMERS API" ], @@ -72258,7 +72258,7 @@ } ], "put": { - "operationId": "put-customers-customerId-consents-client_side", + "operationId": "update-customers-consents-client-side", "tags": [ "CUSTOMERS API" ], @@ -72329,7 +72329,7 @@ } ], "get": { - "operationId": "get-customers-customerId-activities", + "operationId": "list-customer-activities", "tags": [ "CUSTOMERS API" ], @@ -72416,7 +72416,7 @@ } ], "get": { - "operationId": "get-customers-customerId-segments", + "operationId": "list-customer-segments", "tags": [ "CUSTOMERS API" ], @@ -77894,7 +77894,7 @@ }, "/client/v1/consents#": { "get": { - "operationId": "get-consents#", + "operationId": "list-consents-client-side", "tags": [ "CONSENTS API" ], From ddcd2ef78ddf9b738db68ab73cee79c2471ab07a Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 20 Sep 2023 20:54:05 +0200 Subject: [PATCH 31/62] in progress.. --- docs/script/index.js | 9 ++++++--- reference/OpenAPI.json | 8 ++++---- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/script/index.js b/docs/script/index.js index 51ee4a227..2f1440262 100644 --- a/docs/script/index.js +++ b/docs/script/index.js @@ -63,13 +63,16 @@ const main = async () => { const parentDoc = docsForCategory.find((categoryDocs) => categoryDocs.children.find((doc) => doc.slug === docSlug) ); - if (!parentDoc?._id) { + const allowedMissing = ["establish-validation-session"]; + if (allowedMissing.includes(docSlug)) { + } else if (!parentDoc?._id) { console.log(`error, ${parentDoc}, ${docSlug}, ${pathToFile}`); console.log(JSON.stringify(docsForCategory)); throw new Error("Missing parentDoc or parentDoc._id"); + } else { + replaceParentDoc.old = `parentDoc: ${parentDoc}`; + replaceParentDoc.new = `parentDoc: ${parentDoc._id}`; } - replaceParentDoc.old = `parentDoc: ${parentDoc}`; - replaceParentDoc.new = `parentDoc: ${parentDoc._id}`; console.log("ok"); } diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 7741eeea8..7e1c1d241 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -62406,7 +62406,7 @@ } }, "post": { - "operationId": "post-loyalties-campaignId-members", + "operationId": "add-member", "tags": [ "LOYALTIES API" ], @@ -71584,7 +71584,7 @@ } }, "delete": { - "operationId": "delete-customers-customerId", + "operationId": "delete-customer", "tags": [ "CUSTOMERS API" ], @@ -71878,7 +71878,7 @@ }, "/v1/customers/importCSV": { "post": { - "operationId": "post-customers-importCSV", + "operationId": "import-customers-using-csv", "tags": [ "CUSTOMERS API" ], @@ -79085,7 +79085,7 @@ } ], "get": { - "operationId": "get-exports-export_id-?token=-token", + "operationId": "download-export", "tags": [ "EXPORTS API" ], From d737dad44784e1308a902fbc8f2fd09f5f5261bb Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 08:23:45 +0200 Subject: [PATCH 32/62] Update OpenAPI.json --- reference/OpenAPI.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 7e1c1d241..4c86bd567 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -62922,7 +62922,7 @@ } ], "post": { - "operationId": "post-loyalties-campaignId-members-memberId-balance", + "operationId": "add-remove-loyalty-card-balance-1", "tags": [ "LOYALTIES API" ], @@ -63036,7 +63036,7 @@ } ], "post": { - "operationId": "post-loyalties-members-memberId-balance", + "operationId": "add-remove-loyalty-card-balance", "tags": [ "LOYALTIES API" ], From f5e6b70c3d7642416952b3ebaab1f92f0e8dcf3a Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 08:42:23 +0200 Subject: [PATCH 33/62] Update OpenAPI.json --- reference/OpenAPI.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 4c86bd567..883123745 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -49288,7 +49288,7 @@ } }, "post": { - "operationId": "post-rewards-rewardId-assignments", + "operationId": "create-reward-assignment", "tags": [ "REWARDS API" ], @@ -49457,7 +49457,7 @@ } ], "put": { - "operationId": "put-rewards-rewardId-assignments-assignmentId", + "operationId": "update-reward-assignment", "tags": [ "REWARDS API" ], @@ -49546,7 +49546,7 @@ } }, "delete": { - "operationId": "delete-rewards-rewardId-assignments-assignmentId", + "operationId": "delete-reward-assignment", "tags": [ "REWARDS API" ], @@ -49600,7 +49600,7 @@ } }, "get": { - "operationId": "get-rewards-rewardId-assignments-assignmentId", + "operationId": "get-reward-assignment", "tags": [ "REWARDS API" ], @@ -49674,7 +49674,7 @@ }, "/v1/publications/create": { "get": { - "operationId": "create-publication", + "operationId": "create-publication-1", "tags": [ "PUBLICATIONS API" ], @@ -50243,7 +50243,7 @@ } }, "post": { - "operationId": "post-publications", + "operationId": "create-publication", "tags": [ "PUBLICATIONS API" ], @@ -65137,7 +65137,7 @@ } }, "post": { - "operationId": "post-loyalties-campaignId-earning-rules", + "operationId": "create-earning-rule", "tags": [ "LOYALTIES API" ], @@ -66353,7 +66353,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-earning-rules-earningRuleId", + "operationId": "get-earning-rule", "tags": [ "LOYALTIES API" ], @@ -66632,7 +66632,7 @@ } }, "put": { - "operationId": "put-loyalties-campaignId-earning-rules-earningRuleId", + "operationId": "update-earning-rule", "tags": [ "LOYALTIES API" ], @@ -66741,7 +66741,7 @@ } }, "delete": { - "operationId": "delete-loyalties-campaignId-earning-rules-earningRuleId", + "operationId": "delete-earning-rule", "tags": [ "LOYALTIES API" ], @@ -66819,7 +66819,7 @@ } ], "post": { - "operationId": "post-loyalties-campaignId-earning-rules-earningRuleId-enable", + "operationId": "enable-earning-rule", "tags": [ "LOYALTIES API" ], @@ -66927,7 +66927,7 @@ } ], "post": { - "operationId": "post-loyalties-campaignId-earning-rules-earningRuleId-disable", + "operationId": "disable-earning-rule", "tags": [ "LOYALTIES API" ], @@ -67019,7 +67019,7 @@ } ], "get": { - "operationId": "get-loyalties-members-memberId-rewards", + "operationId": "list-member-rewards", "tags": [ "LOYALTIES API" ], @@ -67269,7 +67269,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-reward-assignments-assignmentId-reward", + "operationId": "get-reward-details", "tags": [ "LOYALTIES API" ], @@ -67374,7 +67374,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-reward-assignments", + "operationId": "list-reward-assignments-1", "tags": [ "LOYALTIES API" ], @@ -67571,7 +67571,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-rewards", + "operationId": "list-reward-assignments-2", "tags": [ "LOYALTIES API" ], From 73cbc0878c3f71f62aeb480ba5e8846fcbcc7df2 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 08:53:06 +0200 Subject: [PATCH 34/62] Update OpenAPI.json --- reference/OpenAPI.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 883123745..67c1459ca 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -63956,7 +63956,7 @@ } ], "post": { - "operationId": "post-loyalties-members-memberId-transactions-export", + "operationId": "export-loyalty-card-transactions", "tags": [ "LOYALTIES API" ], @@ -64122,7 +64122,7 @@ } ], "post": { - "operationId": "post-loyalties-campaignId-members-memberId-transactions-export", + "operationId": "export-loyalty-card-transactions-1", "tags": [ "LOYALTIES API" ], @@ -64396,7 +64396,7 @@ } ], "post": { - "operationId": "post-loyalties-campaignId-points-expiration-export", + "operationId": "create-points-expiration-export", "tags": [ "LOYALTIES API" ], From 90424d4d347fb8f699b5a1eaa94323aaceabc978 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 08:57:33 +0200 Subject: [PATCH 35/62] Update OpenAPI.json --- reference/OpenAPI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 67c1459ca..75284b687 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -67662,7 +67662,7 @@ } }, "post": { - "operationId": "post-loyalties-campaignId-rewards", + "operationId": "post-loyalties-campaignid-rewards", "tags": [ "LOYALTIES API" ], From ed7f48f5d8048ac03b0424def3636c988a88b70a Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 09:45:50 +0200 Subject: [PATCH 36/62] Update OpenAPI.json --- reference/OpenAPI.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 75284b687..395c406d8 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -61853,7 +61853,7 @@ } ], "get": { - "operationId": "get-loyalties-loyalty_campaignId_or_name", + "operationId": "get-loyalty-program", "tags": [ "LOYALTIES API" ], @@ -61970,7 +61970,7 @@ } }, "put": { - "operationId": "put-loyalties-loyalty_campaignId_or_name", + "operationId": "update-loyalty-program", "tags": [ "LOYALTIES API" ], @@ -62160,7 +62160,7 @@ } }, "delete": { - "operationId": "delete-loyalties-loyalty_campaignId_or_name", + "operationId": "delete-loyalty-program", "tags": [ "LOYALTIES API" ], @@ -67662,7 +67662,7 @@ } }, "post": { - "operationId": "post-loyalties-campaignid-rewards", + "operationId": "create-reward-assignment-1", "tags": [ "LOYALTIES API" ], From e3c5de7a09237fd12ac8f7acd8ceb127e7b80790 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 10:10:02 +0200 Subject: [PATCH 37/62] Update OpenAPI.json --- reference/OpenAPI.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 395c406d8..53b5c5729 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -67802,7 +67802,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-reward-assignments-assignmentId", + "operationId": "get-reward-assignment-1", "tags": [ "LOYALTIES API" ], @@ -67871,7 +67871,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-rewards-assignmentId", + "operationId": "get-reward-assignment-2", "tags": [ "LOYALTIES API" ], @@ -67939,7 +67939,7 @@ } }, "put": { - "operationId": "put-loyalties-campaignId-rewards-assignmentId", + "operationId": "update-reward-assignment-1", "tags": [ "LOYALTIES API" ], @@ -68005,7 +68005,7 @@ } }, "delete": { - "operationId": "delete-loyalties-campaignId-rewards-assignmentId", + "operationId": "delete-reward-assignment-1", "tags": [ "LOYALTIES API" ], From 29be3e70ee84a7669db39ef41ec731641789c983 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 10:42:14 +0200 Subject: [PATCH 38/62] Update OpenAPI.json --- reference/OpenAPI.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 53b5c5729..3614bae83 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -62628,7 +62628,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-members-memberId", + "operationId": "get-member-1", "tags": [ "LOYALTIES API" ], @@ -62725,7 +62725,7 @@ } ], "get": { - "operationId": "get-loyalties-members-memberId", + "operationId": "get-member", "tags": [ "LOYALTIES API" ], @@ -62830,7 +62830,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-members-memberId-activities", + "operationId": "get-member-activities-1", "tags": [ "LOYALTIES API" ], @@ -62871,7 +62871,7 @@ } ], "get": { - "operationId": "get-loyalties-members-memberId-activities", + "operationId": "get-member-activities", "tags": [ "LOYALTIES API" ], @@ -63145,7 +63145,7 @@ } ], "post": { - "operationId": "post-loyalties-campaignId-members-memberId-transfers", + "operationId": "transfer-points", "tags": [ "LOYALTIES API" ], @@ -63274,7 +63274,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-members-memberId-transactions", + "operationId": "list-loyalty-card-transactions-1", "tags": [ "LOYALTIES API" ], @@ -63615,7 +63615,7 @@ } ], "get": { - "operationId": "get-loyalties-members-memberId-transactions", + "operationId": "list-loyalty-card-transactions", "tags": [ "LOYALTIES API" ], @@ -70054,7 +70054,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-tiers-tierId", + "operationId": "get-loyalty-tier", "tags": [ "LOYALTIES API" ], @@ -70144,7 +70144,7 @@ } ], "get": { - "operationId": "get-loyalties-members-memberId-tiers", + "operationId": "get-member-loyalty-tier", "tags": [ "LOYALTIES API" ], @@ -70260,7 +70260,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-tiers-tierId-earning-rules", + "operationId": "list-loyalty-tier-earning-rules", "tags": [ "LOYALTIES API" ], @@ -70874,7 +70874,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-tiers-tierId-rewards", + "operationId": "list-loyalty-tier-rewards", "tags": [ "LOYALTIES API" ], From b933eb1db03ead79798c67b7debb5550be2eb0d2 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 10:48:17 +0200 Subject: [PATCH 39/62] Update OpenAPI.json --- reference/OpenAPI.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 3614bae83..c7bcf2f12 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -64289,7 +64289,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-members-memberId-points-expiration", + "operationId": "get-points-expiration", "tags": [ "LOYALTIES API" ], @@ -64565,7 +64565,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-earning-rules", + "operationId": "list-earning-rules", "tags": [ "LOYALTIES API" ], @@ -68081,7 +68081,7 @@ } ], "post": { - "operationId": "post-loyalties-campaignId-members-memberId-redemption", + "operationId": "redeem-reward-1", "tags": [ "LOYALTIES API" ], @@ -69544,7 +69544,7 @@ } ], "post": { - "operationId": "post-loyalties-members-memberId-redemption", + "operationId": "redeem-reward", "tags": [ "LOYALTIES API" ], @@ -69865,7 +69865,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-tiers", + "operationId": "list-loyalty-tiers", "tags": [ "LOYALTIES API" ], From 29303ed88dee39867aa3d2ad3a68d217dd2a5db2 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 11:08:57 +0200 Subject: [PATCH 40/62] Update OpenAPI.json --- reference/OpenAPI.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index c7bcf2f12..d8c400e86 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -62239,7 +62239,7 @@ } ], "get": { - "operationId": "get-loyalties-campaignId-members", + "operationId": "list-members", "tags": [ "LOYALTIES API" ], @@ -73465,7 +73465,7 @@ } ], "get": { - "operationId": "get-orders-orderId", + "operationId": "get-order", "tags": [ "ORDERS API" ], @@ -73515,7 +73515,7 @@ } }, "put": { - "operationId": "put-orders-orderId", + "operationId": "update-order", "tags": [ "ORDERS API" ], @@ -74424,7 +74424,7 @@ } ], "get": { - "operationId": "get-products-productId", + "operationId": "get-product, "tags": [ "PRODUCTS API" ], @@ -74537,7 +74537,7 @@ } }, "put": { - "operationId": "put-products-productId", + "operationId": "update-product", "tags": [ "PRODUCTS API" ], @@ -74604,7 +74604,7 @@ } }, "delete": { - "operationId": "delete-products-productId", + "operationId": "delete-product", "tags": [ "PRODUCTS API" ], @@ -74950,7 +74950,7 @@ } ], "get": { - "operationId": "get-products-productId-skus", + "operationId": "list-skus-in-product", "tags": [ "PRODUCTS API" ], @@ -75104,7 +75104,7 @@ } }, "post": { - "operationId": "post-products-productId-skus", + "operationId": "create-sku", "tags": [ "PRODUCTS API" ], @@ -75206,7 +75206,7 @@ } ], "put": { - "operationId": "put-products-productId-skus-skuId", + "operationId": "update-sku", "tags": [ "PRODUCTS API" ], @@ -75275,7 +75275,7 @@ } }, "delete": { - "operationId": "delete-products-productId-skus-skuId", + "operationId": "delete-sku", "tags": [ "PRODUCTS API" ], @@ -75340,7 +75340,7 @@ }, "/v1/products/importCSV": { "post": { - "operationId": "post-products-importCSV", + "operationId": "import-products-using-csv", "tags": [ "PRODUCTS API" ], @@ -75407,7 +75407,7 @@ }, "/v1/skus/importCSV": { "post": { - "operationId": "post-skus-importCSV", + "operationId": "import-skus-using-csv", "tags": [ "PRODUCTS API" ], @@ -75701,7 +75701,7 @@ } ], "get": { - "operationId": "get-product-collections-productCollectionId", + "operationId": "get-product-collection", "tags": [ "PRODUCT COLLECTIONS API" ], @@ -75795,7 +75795,7 @@ "tags": [ "PRODUCT COLLECTIONS API" ], - "summary": "Delete Product Collection", + "summary": "delete-product-collection", "description": "This method deletes a product collection.", "parameters": [], "security": [ @@ -75872,7 +75872,7 @@ } ], "get": { - "operationId": "get-product-collections-productCollection_id-products", + "operationId": "list-products-in-collection", "tags": [ "PRODUCT COLLECTIONS API" ], From 2ec229070372d4b045a61425c9a40d77a431cb25 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 11:09:50 +0200 Subject: [PATCH 41/62] Update OpenAPI.json --- reference/OpenAPI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index d8c400e86..be95e688b 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -74424,7 +74424,7 @@ } ], "get": { - "operationId": "get-product, + "operationId": "get-product", "tags": [ "PRODUCTS API" ], From 7498730073afddeb3287849fee87e09116ff8da5 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 11:33:33 +0200 Subject: [PATCH 42/62] Update OpenAPI.json --- reference/OpenAPI.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index be95e688b..2e654d03e 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -48144,7 +48144,7 @@ } ], "get": { - "operationId": "get-promotions-campaignId-stacks", + "operationId": "list-promotion-stacks-in-campaign", "tags": [ "PROMOTIONS API" ], @@ -48210,7 +48210,7 @@ } }, "post": { - "operationId": "post-promotions-campaignId-stacks", + "operationId": "create-promotion-stack", "tags": [ "PROMOTIONS API" ], @@ -48339,7 +48339,7 @@ } ], "get": { - "operationId": "get-promotions-campaignId-stacks-stackId", + "operationId": "get-promotion-stack", "tags": [ "PROMOTIONS API" ], @@ -48418,7 +48418,7 @@ } }, "put": { - "operationId": "put-promotions-campaignId-stacks-stackId", + "operationId": "update-promotion-stack", "tags": [ "PROMOTIONS API" ], @@ -48488,7 +48488,7 @@ } }, "delete": { - "operationId": "delete-promotions-campaignId-stacks-stackId", + "operationId": "delete-promotion-stack", "tags": [ "PROMOTIONS API" ], @@ -48900,7 +48900,7 @@ } ], "get": { - "operationId": "get-rewards-rewardId", + "operationId": "get-reward", "tags": [ "REWARDS API" ], @@ -48950,7 +48950,7 @@ } }, "put": { - "operationId": "put-rewards-rewardId", + "operationId": "update-reward", "tags": [ "REWARDS API" ], @@ -49111,7 +49111,7 @@ } }, "delete": { - "operationId": "delete-rewards-rewardId", + "operationId": "delete-reward", "tags": [ "REWARDS API" ], @@ -49192,7 +49192,7 @@ } ], "get": { - "operationId": "get-rewards-rewardId-assignments", + "operationId": "list-reward-assignments", "tags": [ "REWARDS API" ], @@ -75791,7 +75791,7 @@ } }, "delete": { - "operationId": "delete-product-collections-productCollectionId", + "operationId": "delete-product-collection", "tags": [ "PRODUCT COLLECTIONS API" ], From 3e54fbb48a60e2130a72988898df3aa0d7b9eff3 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 11:38:53 +0200 Subject: [PATCH 43/62] Update OpenAPI.json --- reference/OpenAPI.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 2e654d03e..358d80c3d 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -47466,7 +47466,7 @@ } ], "get": { - "operationId": "get-promotions-tiers-promotionTierId", + "operationId": "get-promotion-tier", "tags": [ "PROMOTIONS API" ], @@ -47493,7 +47493,7 @@ } }, "put": { - "operationId": "put-promotions-tiers-promotionTierId", + "operationId": "update-promotion-tier", "tags": [ "PROMOTIONS API" ], @@ -47634,7 +47634,7 @@ } }, "delete": { - "operationId": "delete-promotions-tiers-promotionTierId", + "operationId": "delete-promotion-tier", "tags": [ "PROMOTIONS API" ], @@ -47691,7 +47691,7 @@ } ], "post": { - "operationId": "post-promotions-tiers-promotionTierId-enable", + "operationId": "enable-promotion-tier", "tags": [ "PROMOTIONS API" ], @@ -47811,7 +47811,7 @@ } ], "post": { - "operationId": "post-promotions-tiers-promotionTierId-disable", + "operationId": "disable-promotion-tier", "tags": [ "PROMOTIONS API" ], From 5265e8198df731d0e4383abc870b83d2f46d89ea Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 11:44:14 +0200 Subject: [PATCH 44/62] Update OpenAPI.json --- reference/OpenAPI.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 358d80c3d..596fe0097 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -55819,7 +55819,7 @@ } ], "get": { - "operationId": "get-redemptions-redemptionId", + "operationId": "get-redemption", "tags": [ "REDEMPTIONS API" ], @@ -59013,7 +59013,7 @@ } ], "post": { - "operationId": "post-redemptions-redemptionId-rollback", + "operationId": "rollback-redemption", "tags": [ "REDEMPTIONS API" ], @@ -59774,7 +59774,7 @@ } ], "post": { - "operationId": "post-promotions-tiers-promotionTierId-redemption", + "operationId": "redeem-promotion", "deprecated": true, "tags": [ "REDEMPTIONS API" From 2747eefd478e5efa216e876164255be8818815aa Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 11:52:39 +0200 Subject: [PATCH 45/62] operationsIds --- docs/script/index.js | 5 ++++- reference/OpenAPI.json | 18 +++++++++--------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/docs/script/index.js b/docs/script/index.js index 2f1440262..edc5d97ee 100644 --- a/docs/script/index.js +++ b/docs/script/index.js @@ -63,7 +63,10 @@ const main = async () => { const parentDoc = docsForCategory.find((categoryDocs) => categoryDocs.children.find((doc) => doc.slug === docSlug) ); - const allowedMissing = ["establish-validation-session"]; + const allowedMissing = [ + "establish-validation-session", + "stacking-api-overview", + ]; if (allowedMissing.includes(docSlug)) { } else if (!parentDoc?._id) { console.log(`error, ${parentDoc}, ${docSlug}, ${pathToFile}`); diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 596fe0097..285398b92 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -61257,7 +61257,7 @@ } ], "post": { - "operationId": "post-redemptions-parent_redemptionId-rollbacks", + "operationId": "rollback-stacked-redemptions", "tags": [ "STACKABLE DISCOUNTS API" ], @@ -76556,7 +76556,7 @@ } ], "get": { - "operationId": "get-validation-rules-validationRuleId", + "operationId": "get-validation-rule", "tags": [ "VALIDATION RULES API" ], @@ -76613,7 +76613,7 @@ } }, "put": { - "operationId": "put-validation-rules-validationRuleId", + "operationId": "update-validation-rule", "tags": [ "VALIDATION RULES API" ], @@ -76836,7 +76836,7 @@ } }, "delete": { - "operationId": "delete-validation-rules-validationRuleId", + "operationId": "delete-validation-rules", "tags": [ "VALIDATION RULES API" ], @@ -77020,7 +77020,7 @@ } ], "get": { - "operationId": "get-validation-rules-validationRuleId-assignments", + "operationId": "list-validation-rule-assignments", "tags": [ "VALIDATION RULES API" ], @@ -77109,7 +77109,7 @@ } }, "post": { - "operationId": "post-validation-rules-validationRuleId-assignments", + "operationId": "create-validation-rule-assignment", "tags": [ "VALIDATION RULES API" ], @@ -77220,7 +77220,7 @@ } ], "delete": { - "operationId": "delete-validation-rules-validationRuleId-assignments-assignmentId", + "operationId": "delete-validation-rule-assignment", "tags": [ "VALIDATION RULES API" ], @@ -77288,7 +77288,7 @@ } ], "get": { - "operationId": "get-segments-segmentId", + "operationId": "get-segment", "tags": [ "SEGMENTS API" ], @@ -77360,7 +77360,7 @@ } }, "delete": { - "operationId": "delete-segments-segmentId", + "operationId": "delete-segment", "tags": [ "SEGMENTS API" ], From 730bc613b3b2e70493c913a13654b660ed0db75e Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:15:50 +0200 Subject: [PATCH 46/62] renaming --- docs/guides/building_blocks/Campaigns.md | 6 +++--- docs/guides/building_blocks/Customer.md | 4 ++-- docs/guides/building_blocks/Distribution.md | 6 +++--- docs/guides/building_blocks/Earning-Rules.md | 4 ++-- docs/guides/building_blocks/Formula-Builder.md | 4 ++-- docs/guides/building_blocks/Metadata-Custom-Fields.md | 4 ++-- docs/guides/building_blocks/Orders.md | 6 +++--- docs/guides/building_blocks/Products.md | 6 +++--- docs/guides/building_blocks/Promotion-Tier.md | 4 ++-- docs/guides/building_blocks/Redemption.md | 6 +++--- docs/guides/building_blocks/Rewards.md | 6 +++--- docs/guides/building_blocks/Validation-Rules.md | 6 +++--- docs/guides/building_blocks/Vouchers.md | 6 +++--- docs/guides/building_blocks/Webhooks.md | 6 +++--- docs/guides/campaign_recipes/Locking-Validation-Session.md | 4 ++-- docs/guides/campaign_recipes/Loyalty Program.md | 4 ++-- docs/guides/campaign_recipes/Prepaid-Gift-Cards.md | 6 +++--- docs/guides/campaign_recipes/Qualifications.md | 6 +++--- docs/guides/campaign_recipes/Referral-Program.md | 4 ++-- docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md | 6 +++--- docs/guides/campaign_recipes/Transfer-Loyalty-Points.md | 4 ++-- docs/guides/development/API-Reference.md | 4 ++-- docs/guides/development/API-Version-Upgrades.md | 6 +++--- docs/guides/development/Client-Side-API.md | 6 +++--- docs/guides/development/Error-Codes.md | 4 ++-- docs/guides/development/Examples.md | 6 +++--- docs/guides/development/Limits.md | 6 +++--- docs/guides/development/Performance.md | 4 ++-- docs/guides/development/SDKs.md | 6 +++--- docs/guides/development/Security.md | 6 +++--- docs/guides/development/Test-Mode-Sandbox.md | 6 +++--- docs/guides/development/Troubleshooting.md | 6 +++--- docs/guides/discounts_recipes/Discount-Effects.md | 4 ++-- docs/guides/discounts_recipes/Free-Shipping-Discount.md | 6 +++--- .../discounts_recipes/Give-Items-For-Free-Unit-Discount.md | 6 +++--- .../guides/discounts_recipes/Product-Specific-Discounts.md | 4 ++-- docs/guides/discounts_recipes/Stackable-Discounts-API.md | 4 ++-- docs/guides/distributions_recipes/CSV-Export-With-API.md | 6 +++--- docs/guides/distributions_recipes/Geofencing.md | 4 ++-- docs/guides/distributions_recipes/Import-Legacy-Codes.md | 4 ++-- docs/guides/distributions_recipes/Messaging-Automation.md | 6 +++--- docs/guides/getting_started/API-Endpoints.md | 6 +++--- docs/guides/getting_started/Authentication.md | 6 +++--- docs/guides/getting_started/Home.md | 6 +++--- docs/guides/getting_started/Integration-Checklist.md | 6 +++--- docs/guides/getting_started/Key-Concepts.md | 6 +++--- docs/guides/getting_started/Quickstart.md | 4 ++-- docs/guides/more/Roadmap.md | 4 ++-- docs/guides/more/Status.md | 4 ++-- docs/guides/more/Support.md | 6 +++--- .../ASYNC-ACTIONS-API-Async-Action-Object.md | 6 +++--- docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md | 6 +++--- .../reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md | 6 +++--- ...AIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md | 6 +++--- .../CAMPAIGNS-API-Add-Vouchers-To-Campaign.md | 6 +++--- docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md | 6 +++--- docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md | 6 +++--- docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md | 6 +++--- docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md | 6 +++--- docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md | 6 +++--- docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md | 6 +++--- docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md | 6 +++--- .../CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md | 6 +++--- .../CAMPAIGNS-API-Import-Vouchers-To-Campaign.md | 6 +++--- docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md | 6 +++--- docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md | 6 +++--- docs/reference-docs/CATEGORIES-API-Category-Object.md | 6 +++--- docs/reference-docs/CATEGORIES-API-Create-Category.md | 6 +++--- docs/reference-docs/CATEGORIES-API-Delete-Category.md | 6 +++--- docs/reference-docs/CATEGORIES-API-Get-Category.md | 6 +++--- docs/reference-docs/CATEGORIES-API-List-Categories.md | 6 +++--- docs/reference-docs/CATEGORIES-API-Update-Category.md | 6 +++--- docs/reference-docs/CONSENTS-API-Consents-Object.md | 6 +++--- .../CONSENTS-API-List-Consents-Client-Side.md | 6 +++--- docs/reference-docs/CONSENTS-API-List-Consents.md | 6 +++--- docs/reference-docs/CUSTOMERS-API-Create-Customer.md | 6 +++--- .../CUSTOMERS-API-Customer-Activity-Object.md | 6 +++--- docs/reference-docs/CUSTOMERS-API-Customer-Object.md | 6 +++--- .../CUSTOMERS-API-Delete-Customer-Permanently.md | 6 +++--- docs/reference-docs/CUSTOMERS-API-Get-Customer.md | 6 +++--- .../CUSTOMERS-API-Import-Customers-Using-CSV.md | 6 +++--- .../CUSTOMERS-API-List-Customer-Activities.md | 6 +++--- .../reference-docs/CUSTOMERS-API-List-Customer-Segments.md | 6 +++--- docs/reference-docs/CUSTOMERS-API-List-Customers.md | 6 +++--- .../CUSTOMERS-API-Update-Customer-Consents.md | 6 +++--- docs/reference-docs/CUSTOMERS-API-Update-Customer.md | 6 +++--- .../CUSTOMERS-API-Update-Customers-Consents-Client-Side.md | 6 +++--- .../CUSTOMERS-API-Update-Customers-In-Bulk.md | 6 +++--- .../CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md | 6 +++--- docs/reference-docs/CUSTOMES-API-Delete-Customer.md | 6 +++--- docs/reference-docs/EVENTS-API-Custom-Event-Object.md | 6 +++--- .../EVENTS-API-Track-Custom-Event-Client-Side.md | 6 +++--- docs/reference-docs/EVENTS-API-Track-Custom-Event.md | 6 +++--- docs/reference-docs/EXPORTS-API-Create-Export.md | 6 +++--- docs/reference-docs/EXPORTS-API-Delete-Export.md | 6 +++--- docs/reference-docs/EXPORTS-API-Download-Export.md | 6 +++--- docs/reference-docs/EXPORTS-API-Export-Object.md | 6 +++--- docs/reference-docs/EXPORTS-API-Get-Export.md | 6 +++--- docs/reference-docs/EXPORTS-API-List-Exports.md | 6 +++--- docs/reference-docs/Errors.md | 4 ++-- docs/reference-docs/Establish-Validation-Session.md | 5 +++-- docs/reference-docs/Fetching-Data.md | 6 +++--- docs/reference-docs/Introduction.md | 6 +++--- docs/reference-docs/LOCATIONS-API-Get-Location.md | 6 +++--- docs/reference-docs/LOCATIONS-API-List-Locations.md | 6 +++--- docs/reference-docs/LOCATIONS-API-Location-Object.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Add-Member.md | 6 +++--- .../LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md | 6 +++--- .../LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md | 6 +++--- .../LOYALTIES-API-Create-Loyalty-Campaign.md | 6 +++--- .../LOYALTIES-API-Create-Points-Expiration-Export.md | 6 +++--- .../LOYALTIES-API-Create-Reward-Assignment.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md | 6 +++--- .../LOYALTIES-API-Delete-Loyalty-Campaign.md | 6 +++--- .../LOYALTIES-API-Delete-Reward-Assignment.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md | 6 +++--- .../LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md | 6 +++--- .../LOYALTIES-API-Export-Loyalty-Card-Transactions.md | 6 +++--- .../LOYALTIES-API-GET-Reward-Assignment-2.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Get-Member-1.md | 6 +++--- .../LOYALTIES-API-Get-Member-Activities-1.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Get-Member.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md | 6 +++--- .../LOYALTIES-API-Get-Reward-Assignment-1.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md | 6 +++--- docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md | 6 +++--- .../reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md | 6 +++--- .../LOYALTIES-API-List-Loyalty-Card-Transactions-1.md | 6 +++--- .../LOYALTIES-API-List-Loyalty-Card-Transactions.md | 6 +++--- .../LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md | 6 +++--- .../LOYALTIES-API-List-Loyalty-Tier-Rewards.md | 6 +++--- docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md | 6 +++--- docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md | 6 +++--- .../LOYALTIES-API-List-Members-Loyalty-Tier.md | 6 +++--- docs/reference-docs/LOYALTIES-API-List-Members.md | 6 +++--- .../LOYALTIES-API-List-Reward-Assignments-1.md | 6 +++--- .../LOYALTIES-API-List-Reward-Assignments-2.md | 6 +++--- .../LOYALTIES-API-Loyalty-Campaign-Object.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Redeem-Reward.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md | 6 +++--- .../LOYALTIES-API-Transfer-Loyalty-Points.md | 6 +++--- docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md | 6 +++--- .../LOYALTIES-API-Update-Loyalty-Campaign.md | 6 +++--- .../LOYALTIES-API-Update-Reward-Assignment-1.md | 6 +++--- .../METADATA-SCHEMAS-API-Get-Metadata-Schema.md | 6 +++--- .../METADATA-SCHEMAS-API-List-Metadata-Schemas.md | 6 +++--- .../METADATA-SCHEMAS-API-Metadata-Schema-Object.md | 6 +++--- docs/reference-docs/ORDERS-API-Create-Order.md | 6 +++--- docs/reference-docs/ORDERS-API-Create-Orders-Export.md | 6 +++--- docs/reference-docs/ORDERS-API-Get-Order.md | 6 +++--- docs/reference-docs/ORDERS-API-Import-Orders.md | 6 +++--- docs/reference-docs/ORDERS-API-List-Orders.md | 6 +++--- docs/reference-docs/ORDERS-API-Order-Object.md | 6 +++--- docs/reference-docs/ORDERS-API-Update-Order.md | 6 +++--- docs/reference-docs/Object-Schemas.md | 6 +++--- .../PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md | 6 +++--- .../PRODUCT-COLLECTIONS-API-List-Product-Collections.md | 6 +++--- .../PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md | 6 +++--- .../PRODUCT-COLLECTIONS-API-Product-Collection-Object.md | 6 +++--- .../PRODUCT-COLLECTIONS-Get-Product-Collection.md | 6 +++--- docs/reference-docs/PRODUCTS-API-Create-Product.md | 6 +++--- docs/reference-docs/PRODUCTS-API-Create-SKU.md | 6 +++--- docs/reference-docs/PRODUCTS-API-Delete-Product.md | 6 +++--- docs/reference-docs/PRODUCTS-API-Delete-SKU.md | 6 +++--- docs/reference-docs/PRODUCTS-API-Get-Product.md | 6 +++--- docs/reference-docs/PRODUCTS-API-Get-SKU.md | 6 +++--- .../PRODUCTS-API-Import-Products-Using-CSV.md | 6 +++--- docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md | 6 +++--- docs/reference-docs/PRODUCTS-API-List-Products.md | 6 +++--- docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md | 6 +++--- docs/reference-docs/PRODUCTS-API-Product-Object.md | 6 +++--- docs/reference-docs/PRODUCTS-API-SKU-Object.md | 6 +++--- docs/reference-docs/PRODUCTS-API-Update-Product.md | 6 +++--- .../reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md | 6 +++--- .../PRODUCTS-API-Update-Products-Metadata-In-Bulk.md | 6 +++--- docs/reference-docs/PRODUCTS-API-Update-SKU.md | 6 +++--- .../PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md | 6 +++--- .../PROMOTIONS-API-Create-Promotion-Stack.md | 6 +++--- .../PROMOTIONS-API-Delete-Promotion-Stack.md | 6 +++--- .../reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md | 6 +++--- .../PROMOTIONS-API-Disable-Promotion-Tier.md | 6 +++--- .../reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md | 6 +++--- docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md | 6 +++--- docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md | 6 +++--- .../PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md | 6 +++--- .../reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md | 6 +++--- .../PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md | 6 +++--- .../PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md | 6 +++--- docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md | 6 +++--- .../reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md | 6 +++--- .../PROMOTIONS-API-Update-Promotion-Stack.md | 6 +++--- .../reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md | 6 +++--- .../PUBLICATIONS-API-Create-Publication-1.md | 6 +++--- docs/reference-docs/PUBLICATIONS-API-Create-Publication.md | 6 +++--- docs/reference-docs/PUBLICATIONS-API-List-Publications.md | 6 +++--- docs/reference-docs/PUBLICATIONS-API-Publication-Object.md | 6 +++--- .../QUALIFICATIONS-API-Check-Eligibility-Client-Side.md | 6 +++--- .../reference-docs/QUALIFICATIONS-API-Check-Eligibility.md | 6 +++--- .../QUALIFICATIONS-API-Qualification-Object.md | 6 +++--- docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md | 6 +++--- .../REDEMPTIONS-API-Get-Vouchers-Redemptions.md | 6 +++--- docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md | 6 +++--- docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md | 6 +++--- .../REDEMPTIONS-API-Redeem-Voucher-Client-Side.md | 6 +++--- docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md | 6 +++--- docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md | 6 +++--- .../REDEMPTIONS-API-Rollback-Redemption-Object.md | 6 +++--- docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md | 6 +++--- .../reference-docs/REWARDS-API-Create-Reward-Assignment.md | 6 +++--- docs/reference-docs/REWARDS-API-Create-Reward.md | 6 +++--- .../reference-docs/REWARDS-API-Delete-Reward-Assignment.md | 6 +++--- docs/reference-docs/REWARDS-API-Delete-Reward.md | 6 +++--- docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md | 6 +++--- docs/reference-docs/REWARDS-API-Get-Reward.md | 6 +++--- docs/reference-docs/REWARDS-API-List-Reward-Assignments.md | 6 +++--- docs/reference-docs/REWARDS-API-List-Rewards.md | 6 +++--- .../reference-docs/REWARDS-API-Reward-Assignment-Object.md | 6 +++--- docs/reference-docs/REWARDS-API-Reward-Object.md | 6 +++--- .../reference-docs/REWARDS-API-Update-Reward-Assignment.md | 6 +++--- docs/reference-docs/REWARDS-API-Update-Reward.md | 6 +++--- docs/reference-docs/SEGMENTS-API-Create-Segment.md | 6 +++--- .../reference-docs/SEGMENTS-API-Customer-Segment-Object.md | 6 +++--- docs/reference-docs/SEGMENTS-API-Delete-Segment.md | 6 +++--- docs/reference-docs/SEGMENTS-API-Get-Segment.md | 6 +++--- ...DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md | 6 +++--- .../STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md | 6 +++--- ...ACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md | 6 +++--- ...STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md | 6 +++--- ...SCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md | 6 +++--- ...STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md | 6 +++--- docs/reference-docs/Stacking-API-Overview.md | 7 ++++--- .../VALIDATION-RULES-API-Create-Validation-Rule.md | 6 +++--- ...DATION-RULES-API-Create-Validation-Rules-Assignments.md | 6 +++--- ...LIDATION-RULES-API-Delete-Validation-Rule-Assignment.md | 6 +++--- .../VALIDATION-RULES-API-Delete-Validation-Rule.md | 6 +++--- .../VALIDATION-RULES-API-Get-Validation-Rule.md | 6 +++--- ...ALIDATION-RULES-API-List-Validation-Rule-Assignments.md | 6 +++--- ...LIDATION-RULES-API-List-Validation-Rules-Assignments.md | 6 +++--- .../VALIDATION-RULES-API-List-Validation-Rules.md | 6 +++--- .../VALIDATION-RULES-API-Update-Validation-Rule.md | 6 +++--- ...LIDATION-RULES-API-Validation-Rule-Assignment-Object.md | 6 +++--- .../VALIDATION-RULES-API-Validation-Rule-Object.md | 6 +++--- .../VALIDATIONS-API-Validate-Promotion-Tier.md | 6 +++--- docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md | 6 +++--- .../VALIDATIONS-API-Validate-Voucher-Client-Side.md | 6 +++--- docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md | 6 +++--- docs/reference-docs/VALIDATIONS-API-Validation-Object.md | 6 +++--- .../VOUCHERS-API-Add-Remove-Gift-Card-Balance.md | 6 +++--- docs/reference-docs/VOUCHERS-API-Create-Voucher.md | 6 +++--- docs/reference-docs/VOUCHERS-API-Delete-Voucher.md | 6 +++--- docs/reference-docs/VOUCHERS-API-Disable-Voucher.md | 6 +++--- docs/reference-docs/VOUCHERS-API-Enable-Voucher.md | 6 +++--- docs/reference-docs/VOUCHERS-API-Examine-Qualification.md | 6 +++--- .../VOUCHERS-API-Export-Gift-Card-Transactions.md | 6 +++--- docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md | 6 +++--- docs/reference-docs/VOUCHERS-API-Get-Voucher.md | 6 +++--- .../VOUCHERS-API-Import-Vouchers-Using-CSV.md | 6 +++--- docs/reference-docs/VOUCHERS-API-Import-Vouchers.md | 6 +++--- .../VOUCHERS-API-List-Gift-Card-Transactions.md | 6 +++--- docs/reference-docs/VOUCHERS-API-List-Vouchers.md | 6 +++--- .../VOUCHERS-API-Release-Validation-Session.md | 6 +++--- docs/reference-docs/VOUCHERS-API-Update-Voucher.md | 6 +++--- .../reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md | 6 +++--- .../VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md | 6 +++--- docs/reference-docs/VOUCHERS-API-Voucher-Object.md | 6 +++--- docs/reference-docs/Validation-Session.md | 5 +++-- docs/reference-docs/Versioning.md | 6 +++--- docs/script/index.js | 5 +++-- reference/OpenAPI.json | 6 +++--- 278 files changed, 814 insertions(+), 810 deletions(-) diff --git a/docs/guides/building_blocks/Campaigns.md b/docs/guides/building_blocks/Campaigns.md index 82f9a83f0..04f97c682 100644 --- a/docs/guides/building_blocks/Campaigns.md +++ b/docs/guides/building_blocks/Campaigns.md @@ -1,8 +1,8 @@ --- title: Campaigns excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: campaigns type: basic hidden: false @@ -35,4 +35,4 @@ Usually, voucher campaigns are created in the dashboard by marketers. But someti ## Promotion tier-based campaigns utils -When it comes to auto-applied promotion discounts, you can use campaigns to [stack](ref:add-promotion-tier-to-campaign) multiple tiers together. \ No newline at end of file +When it comes to auto-applied promotion discounts, you can use campaigns to [stack](ref:add-promotion-tier-to-campaign) multiple tiers together. diff --git a/docs/guides/building_blocks/Customer.md b/docs/guides/building_blocks/Customer.md index d32467270..8922851b6 100644 --- a/docs/guides/building_blocks/Customer.md +++ b/docs/guides/building_blocks/Customer.md @@ -1,8 +1,8 @@ --- title: Customers excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: customers type: basic hidden: false diff --git a/docs/guides/building_blocks/Distribution.md b/docs/guides/building_blocks/Distribution.md index 03133abfb..66597aa8e 100644 --- a/docs/guides/building_blocks/Distribution.md +++ b/docs/guides/building_blocks/Distribution.md @@ -1,8 +1,8 @@ --- title: Distribution excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: distribution type: basic hidden: false @@ -213,4 +213,4 @@ GET /v1/publications?filters[customer_id][conditions][$in][0]=cust_lUET6gRpO5Wxl ``` ```markdown or another using the junction operator GET /v1/publications?filters[customer_id][conditions][$is][0]=cust_lUET6gRpO5Wxlg5p2j2gRCgL&filters[customer_id][conditions][$is][1]=cust_aR7NfHusxT7PdTMAKMfWDXnc&filters[junction]=OR -``` \ No newline at end of file +``` diff --git a/docs/guides/building_blocks/Earning-Rules.md b/docs/guides/building_blocks/Earning-Rules.md index f433ecc57..df7e86383 100644 --- a/docs/guides/building_blocks/Earning-Rules.md +++ b/docs/guides/building_blocks/Earning-Rules.md @@ -1,8 +1,8 @@ --- title: Earning Rules excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: earning-rules type: basic hidden: false diff --git a/docs/guides/building_blocks/Formula-Builder.md b/docs/guides/building_blocks/Formula-Builder.md index dcafbc349..df28de142 100644 --- a/docs/guides/building_blocks/Formula-Builder.md +++ b/docs/guides/building_blocks/Formula-Builder.md @@ -1,8 +1,8 @@ --- title: Formula Builder excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: formula-builder type: basic hidden: false diff --git a/docs/guides/building_blocks/Metadata-Custom-Fields.md b/docs/guides/building_blocks/Metadata-Custom-Fields.md index 61ce2e95a..3e20c50b9 100644 --- a/docs/guides/building_blocks/Metadata-Custom-Fields.md +++ b/docs/guides/building_blocks/Metadata-Custom-Fields.md @@ -1,8 +1,8 @@ --- title: Metadata (custom fields) excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: metadata-custom-fields type: basic hidden: false diff --git a/docs/guides/building_blocks/Orders.md b/docs/guides/building_blocks/Orders.md index 5c04b3364..2e4c26ad1 100644 --- a/docs/guides/building_blocks/Orders.md +++ b/docs/guides/building_blocks/Orders.md @@ -1,8 +1,8 @@ --- title: Orders excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: orders type: basic hidden: false @@ -57,4 +57,4 @@ Read more about [Stacking discounts](doc:manage-stackable-discounts). ## Order session -Each time you use particular order in your requests, the API automatically triggers a new session linked to the order id. The session is active during the request and ends asynchronously after the request is completed. The session mechanism provides that the particular order id can be used in one API request at once. \ No newline at end of file +Each time you use particular order in your requests, the API automatically triggers a new session linked to the order id. The session is active during the request and ends asynchronously after the request is completed. The session mechanism provides that the particular order id can be used in one API request at once. diff --git a/docs/guides/building_blocks/Products.md b/docs/guides/building_blocks/Products.md index 41fb2a9f3..da94b942e 100644 --- a/docs/guides/building_blocks/Products.md +++ b/docs/guides/building_blocks/Products.md @@ -1,8 +1,8 @@ --- title: Products excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: products type: basic hidden: false @@ -243,4 +243,4 @@ Product collections can be managed using your dashboard or dedicated [product co > 📘 Useful links > > - Learn how to [create Product Collections](https://support.voucherify.io/article/515-products) in your dashboard -> - Learn more about [Product Collections API](ref:list-products-in-collection) \ No newline at end of file +> - Learn more about [Product Collections API](ref:list-products-in-collection) diff --git a/docs/guides/building_blocks/Promotion-Tier.md b/docs/guides/building_blocks/Promotion-Tier.md index 544a95d3c..96a4066b2 100644 --- a/docs/guides/building_blocks/Promotion-Tier.md +++ b/docs/guides/building_blocks/Promotion-Tier.md @@ -1,8 +1,8 @@ --- title: Promotion Tier excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: promotion-tier type: basic hidden: false diff --git a/docs/guides/building_blocks/Redemption.md b/docs/guides/building_blocks/Redemption.md index f854c767b..fb81c9002 100644 --- a/docs/guides/building_blocks/Redemption.md +++ b/docs/guides/building_blocks/Redemption.md @@ -1,8 +1,8 @@ --- title: Redemption excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: redemption type: basic hidden: false @@ -56,4 +56,4 @@ If you want to reverse this operation, use [rollback](ref:rollback-redemption). ## Webhooks -Every redemption, successful or failed, generates an event you can listen to (`redemption succeeded`, `redemption failed`, `redemption rollback succeeded`, `redemption rollback failed`). Go to [webhooks](https://docs.voucherify.io/docs/webhooks) to learn more. \ No newline at end of file +Every redemption, successful or failed, generates an event you can listen to (`redemption succeeded`, `redemption failed`, `redemption rollback succeeded`, `redemption rollback failed`). Go to [webhooks](https://docs.voucherify.io/docs/webhooks) to learn more. diff --git a/docs/guides/building_blocks/Rewards.md b/docs/guides/building_blocks/Rewards.md index b2de18a3c..516f21a5b 100644 --- a/docs/guides/building_blocks/Rewards.md +++ b/docs/guides/building_blocks/Rewards.md @@ -1,8 +1,8 @@ --- title: Rewards excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: rewards type: basic hidden: false @@ -81,4 +81,4 @@ curl -X POST \ Reward and Reward Assignment objects allow for rewarding customers who already collected points in your loyalty program. If you want to learn how to enable your customers to earn points in the first place, follow [here](doc:earning-rules). -If you already have both earning rules and rewards ready, you can create a [loyalty program](doc:loyalty-program). \ No newline at end of file +If you already have both earning rules and rewards ready, you can create a [loyalty program](doc:loyalty-program). diff --git a/docs/guides/building_blocks/Validation-Rules.md b/docs/guides/building_blocks/Validation-Rules.md index d302889ff..e711bcc19 100644 --- a/docs/guides/building_blocks/Validation-Rules.md +++ b/docs/guides/building_blocks/Validation-Rules.md @@ -1,8 +1,8 @@ --- title: Validation Rules excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: validation-rules type: basic hidden: false @@ -448,4 +448,4 @@ or: "sales_channel": "page_1" } } -``` \ No newline at end of file +``` diff --git a/docs/guides/building_blocks/Vouchers.md b/docs/guides/building_blocks/Vouchers.md index 70ee20f9a..3bd5b3aa3 100644 --- a/docs/guides/building_blocks/Vouchers.md +++ b/docs/guides/building_blocks/Vouchers.md @@ -1,8 +1,8 @@ --- title: Vouchers excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: vouchers type: basic hidden: false @@ -239,4 +239,4 @@ You can recharge cards you've sent out to your customers. With our API, you can Vouchers (along with redemptions, publications, and customers) can be downloaded asynchronously with the export mechanism, see the [API reference](ref:create-export). -Voucher attributes you can export: `code`, `voucher_type`, `value`, `discount_type`, `campaign`, `category`, `start_date`, `expiration_date`, `gift_balance`, `redemption_quantity`, `active`, `qr_code`. \ No newline at end of file +Voucher attributes you can export: `code`, `voucher_type`, `value`, `discount_type`, `campaign`, `category`, `start_date`, `expiration_date`, `gift_balance`, `redemption_quantity`, `active`, `qr_code`. diff --git a/docs/guides/building_blocks/Webhooks.md b/docs/guides/building_blocks/Webhooks.md index 501ad598c..d6147b5a0 100644 --- a/docs/guides/building_blocks/Webhooks.md +++ b/docs/guides/building_blocks/Webhooks.md @@ -1,11 +1,11 @@ --- title: Webhooks excerpt: -category: 639ba16d677235008f800454 -category-slug: building-blocks +category: 639ba16d677235008f800454 +categorySlug: building-blocks slug: webhooks type: link hidden: false order: 12 link_url: https://support.voucherify.io/article/68-webhooks-notifications ---- \ No newline at end of file +--- diff --git a/docs/guides/campaign_recipes/Locking-Validation-Session.md b/docs/guides/campaign_recipes/Locking-Validation-Session.md index 6fb743ab0..9a3142499 100644 --- a/docs/guides/campaign_recipes/Locking-Validation-Session.md +++ b/docs/guides/campaign_recipes/Locking-Validation-Session.md @@ -1,8 +1,8 @@ --- title: Locking Validation Session excerpt: Temporary lock the voucher's usage until redemption is successful. -category: 639ba16d677235008f80045c -category-slug: campaigns-1 +category: 639ba16d677235008f80045c +categorySlug: campaigns-1 slug: locking-validation-session type: basic hidden: false diff --git a/docs/guides/campaign_recipes/Loyalty Program.md b/docs/guides/campaign_recipes/Loyalty Program.md index 8b662c960..55f481d0c 100644 --- a/docs/guides/campaign_recipes/Loyalty Program.md +++ b/docs/guides/campaign_recipes/Loyalty Program.md @@ -1,8 +1,8 @@ --- title: Loyalty Program excerpt: null -category: 639ba16d677235008f80045c -category-slug: campaigns-1 +category: 639ba16d677235008f80045c +categorySlug: campaigns-1 slug: loyalty-program type: basic hidden: false diff --git a/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md b/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md index 8fc8e1c74..164301c45 100644 --- a/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md +++ b/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md @@ -1,8 +1,8 @@ --- title: Prepaid Gift Cards excerpt: null -category: 639ba16d677235008f80045c -category-slug: campaigns-1 +category: 639ba16d677235008f80045c +categorySlug: campaigns-1 slug: prepaid-gift-cards type: basic hidden: false @@ -154,4 +154,4 @@ The voucher can be redeemed using the Dashboard as well. Go to the voucher detai ## Recharge -You can recharge the cards you've sent to customers. With our API, you can edit the balance value by calling [Add Balance](ref:add-gift-voucher-balance) endpoint. \ No newline at end of file +You can recharge the cards you've sent to customers. With our API, you can edit the balance value by calling [Add Balance](ref:add-gift-voucher-balance) endpoint. diff --git a/docs/guides/campaign_recipes/Qualifications.md b/docs/guides/campaign_recipes/Qualifications.md index 25103e861..bd8281a28 100644 --- a/docs/guides/campaign_recipes/Qualifications.md +++ b/docs/guides/campaign_recipes/Qualifications.md @@ -1,8 +1,8 @@ --- title: Qualification - Checking eligibility excerpt: null -category: 639ba16d677235008f80045c -category-slug: campaigns-1 +category: 639ba16d677235008f80045c +categorySlug: campaigns-1 slug: checking-eligibility type: basic hidden: false @@ -1203,4 +1203,4 @@ Only a promotion that is applicable to one of the items in the cart. `"scenario" > Case 3 Summary > -> Voucherify will return all the discounts that apply to the products you sent in the order. When a customer is browsing your products and is shown the product listing page, you can send, in the payload, the list of all the products the customer is presented and Voucherify will return all the discounts that apply to these products. The returned results can be visualized, for example, by a striked through price. \ No newline at end of file +> Voucherify will return all the discounts that apply to the products you sent in the order. When a customer is browsing your products and is shown the product listing page, you can send, in the payload, the list of all the products the customer is presented and Voucherify will return all the discounts that apply to these products. The returned results can be visualized, for example, by a striked through price. diff --git a/docs/guides/campaign_recipes/Referral-Program.md b/docs/guides/campaign_recipes/Referral-Program.md index c834f9eb7..aa0e7f456 100644 --- a/docs/guides/campaign_recipes/Referral-Program.md +++ b/docs/guides/campaign_recipes/Referral-Program.md @@ -1,8 +1,8 @@ --- title: Referral Program excerpt: null -category: 639ba16d677235008f80045c -category-slug: campaigns-1 +category: 639ba16d677235008f80045c +categorySlug: campaigns-1 slug: referral-program type: link hidden: false diff --git a/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md b/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md index 00c940da8..24699155b 100644 --- a/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md +++ b/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md @@ -1,8 +1,8 @@ --- title: Stacking Promotion Tiers excerpt: 'In this tutorial, you will learn how to validate, redeem, and manage promotion stacks using API.' -category: 639ba16d677235008f80045c -category-slug: campaigns-1 +category: 639ba16d677235008f80045c +categorySlug: campaigns-1 slug: stacking-promotion-tiers type: basic hidden: false @@ -504,4 +504,4 @@ Here is an an example of a promotion stack redemption. } ``` -In the returned `redemptions` array, you can see child redemptions that show redemptions of particular tiers. Discounts from stack tiers are applied consecutively as defined by the stack hierarchy. The hierarchy defines the sequence in which each of the stacked discounts will be applied to the single transaction. \ No newline at end of file +In the returned `redemptions` array, you can see child redemptions that show redemptions of particular tiers. Discounts from stack tiers are applied consecutively as defined by the stack hierarchy. The hierarchy defines the sequence in which each of the stacked discounts will be applied to the single transaction. diff --git a/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md b/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md index bb9d23723..bc1051a4c 100644 --- a/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md +++ b/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md @@ -1,8 +1,8 @@ --- title: Transfer Loyalty Points excerpt: See how to transfer points between loyalty cards. -category: 639ba16d677235008f80045c -category-slug: campaigns-1 +category: 639ba16d677235008f80045c +categorySlug: campaigns-1 slug: transfer-loyalty-points type: basic hidden: false diff --git a/docs/guides/development/API-Reference.md b/docs/guides/development/API-Reference.md index 474e06f89..2e2b68b27 100644 --- a/docs/guides/development/API-Reference.md +++ b/docs/guides/development/API-Reference.md @@ -1,8 +1,8 @@ --- title: API Reference excerpt: -category: 639ba16d677235008f800447 -category-slug: development +category: 639ba16d677235008f800447 +categorySlug: development slug: api-reference type: link hidden: false diff --git a/docs/guides/development/API-Version-Upgrades.md b/docs/guides/development/API-Version-Upgrades.md index 80e5599e1..9b7e14af3 100644 --- a/docs/guides/development/API-Version-Upgrades.md +++ b/docs/guides/development/API-Version-Upgrades.md @@ -1,8 +1,8 @@ --- title: API Version Upgrades excerpt: Keep track of changes and upgrades to the Voucherify API. -category: 639ba16d677235008f800447 -category-slug: development +category: 639ba16d677235008f800447 +categorySlug: development slug: api-version-upgrades type: basic hidden: false @@ -43,4 +43,4 @@ If you’re running an older version, you’ll want to upgrade to take advantage > 📘 Release Notes > -> [Visit our Help Center](https://support.voucherify.io/article/23-whats-new-in-voucherify) to learn more about the latest Release Notes and new features. \ No newline at end of file +> [Visit our Help Center](https://support.voucherify.io/article/23-whats-new-in-voucherify) to learn more about the latest Release Notes and new features. diff --git a/docs/guides/development/Client-Side-API.md b/docs/guides/development/Client-Side-API.md index f094a6002..5d2c72f96 100644 --- a/docs/guides/development/Client-Side-API.md +++ b/docs/guides/development/Client-Side-API.md @@ -1,8 +1,8 @@ --- title: Client-side API excerpt: -category: 639ba16d677235008f800447 -category-slug: development +category: 639ba16d677235008f800447 +categorySlug: development slug: client-side-api type: basic hidden: false @@ -39,4 +39,4 @@ Visit :fa-github-alt: [Github repository](https://github.com/voucherifyio/vouche > You have to activate particular client-side options in the [Project Settings](https://app.voucherify.io/#/app/configuration/proj_f1r5Tpr0J3Ct). -![Client-Side Settings](https://files.readme.io/038ab3b-cielnt-side-settings.png "Client-Side Settings") \ No newline at end of file +![Client-Side Settings](https://files.readme.io/038ab3b-cielnt-side-settings.png "Client-Side Settings") diff --git a/docs/guides/development/Error-Codes.md b/docs/guides/development/Error-Codes.md index 2cbb6cf91..8a27c925a 100644 --- a/docs/guides/development/Error-Codes.md +++ b/docs/guides/development/Error-Codes.md @@ -1,8 +1,8 @@ --- title: Error Codes excerpt: -category: 639ba16d677235008f800447 -category-slug: development +category: 639ba16d677235008f800447 +categorySlug: development slug: error-codes type: link hidden: false diff --git a/docs/guides/development/Examples.md b/docs/guides/development/Examples.md index f5f86a5d5..c6340e063 100644 --- a/docs/guides/development/Examples.md +++ b/docs/guides/development/Examples.md @@ -1,8 +1,8 @@ --- title: Examples excerpt: Here are some exemplary integrations and third-party guides for you to learn more about Voucherify. -category: 639ba16d677235008f800447 -category-slug: development +category: 639ba16d677235008f800447 +categorySlug: development slug: examples type: basic hidden: false @@ -122,4 +122,4 @@ Looking for ready designs for the best promotions experience in your ecommerce s * [Download Referral UI Kit on Figma](https://www.figma.com/community/file/1039555483777372722) -![Figma](https://files.readme.io/6c4efe5-UI-kit.png "Figma") \ No newline at end of file +![Figma](https://files.readme.io/6c4efe5-UI-kit.png "Figma") diff --git a/docs/guides/development/Limits.md b/docs/guides/development/Limits.md index bd0d48097..2e49b7987 100644 --- a/docs/guides/development/Limits.md +++ b/docs/guides/development/Limits.md @@ -1,8 +1,8 @@ --- title: Limits excerpt: API calls limits and optimization -category: 639ba16d677235008f800447 -category-slug: development +category: 639ba16d677235008f800447 +categorySlug: development slug: limits type: basic hidden: false @@ -125,4 +125,4 @@ Webhooks enable Voucherify to send real-time updates to your app or URL endpoint Also, instead of polling data from some endpoints, you can configure webhooks to get notified about triggered events, distribution channels, loyalty programs, and referral programs. -For more information on webhooks, [go here](https://support.voucherify.io/article/68-webhooks-notifications). \ No newline at end of file +For more information on webhooks, [go here](https://support.voucherify.io/article/68-webhooks-notifications). diff --git a/docs/guides/development/Performance.md b/docs/guides/development/Performance.md index 9bf53c1af..2834e7ed8 100644 --- a/docs/guides/development/Performance.md +++ b/docs/guides/development/Performance.md @@ -1,8 +1,8 @@ --- title: Performance excerpt: Average response rates -category: 639ba16d677235008f800447 -category-slug: development +category: 639ba16d677235008f800447 +categorySlug: development slug: performance type: basic hidden: false diff --git a/docs/guides/development/SDKs.md b/docs/guides/development/SDKs.md index 943f85fbd..a8f1ad8bb 100644 --- a/docs/guides/development/SDKs.md +++ b/docs/guides/development/SDKs.md @@ -1,8 +1,8 @@ --- title: SDKs excerpt: -category: 639ba16d677235008f800447 -category-slug: development +category: 639ba16d677235008f800447 +categorySlug: development slug: sdks type: basic hidden: false @@ -269,4 +269,4 @@ pod "VoucherifySwiftSdk" "favicon": "https://github.com/favicon.ico", "image": "https://avatars3.githubusercontent.com/u/19346225?s=400&v=4" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/guides/development/Security.md b/docs/guides/development/Security.md index d45ce0f26..548573b2b 100644 --- a/docs/guides/development/Security.md +++ b/docs/guides/development/Security.md @@ -1,8 +1,8 @@ --- title: Security excerpt: -category: 639ba16d677235008f800447 -category-slug: development +category: 639ba16d677235008f800447 +categorySlug: development slug: security type: basic hidden: false @@ -49,4 +49,4 @@ To increase the security of public client operations, Voucherify will accept onl * \* – this allows requests from any domain. -![Domain Settings](https://files.readme.io/2d9c6c4-Screenshot_2020-09-16_at_09.45.20.png "Domain Settings") \ No newline at end of file +![Domain Settings](https://files.readme.io/2d9c6c4-Screenshot_2020-09-16_at_09.45.20.png "Domain Settings") diff --git a/docs/guides/development/Test-Mode-Sandbox.md b/docs/guides/development/Test-Mode-Sandbox.md index 5b03659fa..43f5b361c 100644 --- a/docs/guides/development/Test-Mode-Sandbox.md +++ b/docs/guides/development/Test-Mode-Sandbox.md @@ -1,8 +1,8 @@ --- title: Test mode (Sandbox) excerpt: Run integration tests of your promotions before going to production -category: 639ba16d677235008f800447 -category-slug: development +category: 639ba16d677235008f800447 +categorySlug: development slug: testing type: basic hidden: false @@ -99,4 +99,4 @@ We have prepared a starting set of test data. You get 5 different single voucher | `voucherify.io-sandbox-09` | voucherify.io-sandbox | 50% off | unlimited | never | | `voucherify.io-sandbox-10` | voucherify.io-sandbox | 50% off | unlimited | never | -You can create more test vouchers using the [Create Voucher](ref:create-voucher) endpoint. \ No newline at end of file +You can create more test vouchers using the [Create Voucher](ref:create-voucher) endpoint. diff --git a/docs/guides/development/Troubleshooting.md b/docs/guides/development/Troubleshooting.md index 8bdc4d40d..e47fec8f1 100644 --- a/docs/guides/development/Troubleshooting.md +++ b/docs/guides/development/Troubleshooting.md @@ -1,8 +1,8 @@ --- title: Troubleshooting excerpt: -category: 639ba16d677235008f800447 -category-slug: development +category: 639ba16d677235008f800447 +categorySlug: development slug: troubleshooting type: basic hidden: false @@ -19,4 +19,4 @@ Use [Get Voucher's Redemptions](ref:get-voucher-redemptions) endpoint to make su ### Can I revert redemption? -Use [Rollback Redemption](ref:rollback-redemption). \ No newline at end of file +Use [Rollback Redemption](ref:rollback-redemption). diff --git a/docs/guides/discounts_recipes/Discount-Effects.md b/docs/guides/discounts_recipes/Discount-Effects.md index 15d7d5015..808f3cc8e 100644 --- a/docs/guides/discounts_recipes/Discount-Effects.md +++ b/docs/guides/discounts_recipes/Discount-Effects.md @@ -1,8 +1,8 @@ --- title: Discount Effects excerpt: The discount effect defines how the discount will be applied to the customer's cart. In this article, we're going to show you how different effects work with discounts. -category: 639ba16d677235008f80045e -category-slug: discounts +category: 639ba16d677235008f80045e +categorySlug: discounts slug: discount-effects type: basic hidden: false diff --git a/docs/guides/discounts_recipes/Free-Shipping-Discount.md b/docs/guides/discounts_recipes/Free-Shipping-Discount.md index 593bf8d2d..516b229be 100644 --- a/docs/guides/discounts_recipes/Free-Shipping-Discount.md +++ b/docs/guides/discounts_recipes/Free-Shipping-Discount.md @@ -1,8 +1,8 @@ --- title: Free shipping disount excerpt: How to use free shipping discounts? -category: 639ba16d677235008f80045e -category-slug: discounts +category: 639ba16d677235008f80045e +categorySlug: discounts slug: free-shipping-discount type: basic hidden: false @@ -550,4 +550,4 @@ In the response body, you can see that the shipping was added to the order items The discount amount is equal to the previously added shipping fee. -![API Response](https://files.readme.io/060288a-shipping02.png "API Response") \ No newline at end of file +![API Response](https://files.readme.io/060288a-shipping02.png "API Response") diff --git a/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md b/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md index 348692671..0214ab623 100644 --- a/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md +++ b/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md @@ -1,8 +1,8 @@ --- title: Give item(s) for free - unit discount excerpt: How to add free items to customers' orders? -category: 639ba16d677235008f80045e -category-slug: discounts +category: 639ba16d677235008f80045e +categorySlug: discounts slug: give-item-for-free-unit-discount type: basic hidden: false @@ -1105,4 +1105,4 @@ Finally, let's redeem a discount code for multiple free item types. As you can see in the response body, the discount was applied to the products in the cart. Each item type was added according the discount effect defined for that particular item type. -![API Response](https://files.readme.io/f041381-multiple_items.png "API response") \ No newline at end of file +![API Response](https://files.readme.io/f041381-multiple_items.png "API response") diff --git a/docs/guides/discounts_recipes/Product-Specific-Discounts.md b/docs/guides/discounts_recipes/Product-Specific-Discounts.md index f1407ca61..380c32be2 100644 --- a/docs/guides/discounts_recipes/Product-Specific-Discounts.md +++ b/docs/guides/discounts_recipes/Product-Specific-Discounts.md @@ -1,8 +1,8 @@ --- title: Product-specific discounts excerpt: A recipe for using *applicable_to* validation rule -category: 639ba16d677235008f80045e -category-slug: discounts +category: 639ba16d677235008f80045e +categorySlug: discounts slug: discount-for-particular-product type: basic hidden: false diff --git a/docs/guides/discounts_recipes/Stackable-Discounts-API.md b/docs/guides/discounts_recipes/Stackable-Discounts-API.md index d78eecda8..fd2aa72d0 100644 --- a/docs/guides/discounts_recipes/Stackable-Discounts-API.md +++ b/docs/guides/discounts_recipes/Stackable-Discounts-API.md @@ -1,8 +1,8 @@ --- title: Stackable discounts API excerpt: -category: 639ba16d677235008f80045e -category-slug: discounts +category: 639ba16d677235008f80045e +categorySlug: discounts slug: manage-stackable-discounts type: basic hidden: false diff --git a/docs/guides/distributions_recipes/CSV-Export-With-API.md b/docs/guides/distributions_recipes/CSV-Export-With-API.md index a41bcad57..224182063 100644 --- a/docs/guides/distributions_recipes/CSV-Export-With-API.md +++ b/docs/guides/distributions_recipes/CSV-Export-With-API.md @@ -1,8 +1,8 @@ --- title: CSV export with API excerpt: null -category: 639ba16d677235008f80045d -category-slug: distribution-1 +category: 639ba16d677235008f80045d +categorySlug: distribution-1 slug: csv-export type: basic hidden: false @@ -84,4 +84,4 @@ Voucherify allows you to specify the timeframe for the records you want to retri } ``` -The export request will almost always result in a single file being generated by the system. However, if the volume of data is large, the system can split the results into multiple chunks. \ No newline at end of file +The export request will almost always result in a single file being generated by the system. However, if the volume of data is large, the system can split the results into multiple chunks. diff --git a/docs/guides/distributions_recipes/Geofencing.md b/docs/guides/distributions_recipes/Geofencing.md index 2d6ef692c..50cbd299a 100644 --- a/docs/guides/distributions_recipes/Geofencing.md +++ b/docs/guides/distributions_recipes/Geofencing.md @@ -1,8 +1,8 @@ --- title: Geofencing excerpt: -category: 639ba16d677235008f80045d -category-slug: distribution-1 +category: 639ba16d677235008f80045d +categorySlug: distribution-1 slug: geofencing type: link hidden: false diff --git a/docs/guides/distributions_recipes/Import-Legacy-Codes.md b/docs/guides/distributions_recipes/Import-Legacy-Codes.md index bd2be5d45..dd9fe200e 100644 --- a/docs/guides/distributions_recipes/Import-Legacy-Codes.md +++ b/docs/guides/distributions_recipes/Import-Legacy-Codes.md @@ -1,8 +1,8 @@ --- title: Import legacy codes excerpt: null -category: 639ba16d677235008f80045d -category-slug: distribution-1 +category: 639ba16d677235008f80045d +categorySlug: distribution-1 slug: import-codes type: basic hidden: false diff --git a/docs/guides/distributions_recipes/Messaging-Automation.md b/docs/guides/distributions_recipes/Messaging-Automation.md index 7d393ff94..75969c161 100644 --- a/docs/guides/distributions_recipes/Messaging-Automation.md +++ b/docs/guides/distributions_recipes/Messaging-Automation.md @@ -1,8 +1,8 @@ --- title: Messaging automation excerpt: How to set up an automatic promotion delivery for a dynamic customer segment? -category: 639ba16d677235008f80045d -category-slug: distribution-1 +category: 639ba16d677235008f80045d +categorySlug: distribution-1 slug: automatic-delivery type: basic hidden: false @@ -185,4 +185,4 @@ After you confirm distribution, manual messages will be sent with a 10-minute de > 📘 Read more > -> Follow [this guide](https://support.voucherify.io/article/19-how-does-the-distribution-manager-work) to learn more about Distributions setup. \ No newline at end of file +> Follow [this guide](https://support.voucherify.io/article/19-how-does-the-distribution-manager-work) to learn more about Distributions setup. diff --git a/docs/guides/getting_started/API-Endpoints.md b/docs/guides/getting_started/API-Endpoints.md index a0f0d0247..49f23ef89 100644 --- a/docs/guides/getting_started/API-Endpoints.md +++ b/docs/guides/getting_started/API-Endpoints.md @@ -1,8 +1,8 @@ --- title: API Endpoints excerpt: -category: 639ba16d677235008f80043f -category-slug: getting-started +category: 639ba16d677235008f80043f +categorySlug: getting-started slug: api-endpoints type: basic hidden: false @@ -40,4 +40,4 @@ Each SDK provided by Voucherify has a method to override the default API endpoin [https://github.com/voucherifyio/voucherify-dotNET-sdk#api-endpoint-1](https://github.com/voucherifyio/voucherify-dotNET-sdk#api-endpoint-1) * [https://github.com/voucherifyio/voucherify-android-sdk#configuration](https://github.com/voucherifyio/voucherify-android-sdk#configuration) * [https://github.com/voucherifyio/voucherify-ios-sdk#api-endpoint](https://github.com/voucherifyio/voucherify-ios-sdk#api-endpoint) - * [https://github.com/voucherifyio/voucherify-rust-sdk#api-endpoint](https://github.com/voucherifyio/voucherify-rust-sdk#api-endpoint) \ No newline at end of file + * [https://github.com/voucherifyio/voucherify-rust-sdk#api-endpoint](https://github.com/voucherifyio/voucherify-rust-sdk#api-endpoint) diff --git a/docs/guides/getting_started/Authentication.md b/docs/guides/getting_started/Authentication.md index bfab48c08..6c35b248d 100644 --- a/docs/guides/getting_started/Authentication.md +++ b/docs/guides/getting_started/Authentication.md @@ -1,8 +1,8 @@ --- title: Authentication excerpt: Authorization methods and principles used to access the Voucherify platform HTTP APIs. -category: 639ba16d677235008f80043f -category-slug: getting-started +category: 639ba16d677235008f80043f +categorySlug: getting-started slug: authentication type: basic hidden: false @@ -79,4 +79,4 @@ curl -X GET \ } }' \ "https://api.voucherify.io/client/v1/validate?code=BLCKFRDY" -``` \ No newline at end of file +``` diff --git a/docs/guides/getting_started/Home.md b/docs/guides/getting_started/Home.md index 04066dadd..b46f6604b 100644 --- a/docs/guides/getting_started/Home.md +++ b/docs/guides/getting_started/Home.md @@ -1,8 +1,8 @@ --- title: Home excerpt: Welcome to [Voucherify's](https://www.voucherify.io) Developer Hub. -category: 639ba16d677235008f80043f -category-slug: getting-started +category: 639ba16d677235008f80043f +categorySlug: getting-started slug: introduction type: basic hidden: false @@ -53,4 +53,4 @@ order: 1 { "html": "
\n
\n\n
\n \n
\n\n
\n\n
\n\n
\n\n
\n\n
\n\n
\n
\n\n" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/guides/getting_started/Integration-Checklist.md b/docs/guides/getting_started/Integration-Checklist.md index e74c3dd72..cc0805b0c 100644 --- a/docs/guides/getting_started/Integration-Checklist.md +++ b/docs/guides/getting_started/Integration-Checklist.md @@ -1,8 +1,8 @@ --- title: Integration checklist excerpt: Get the documentation, sample code, and developer tools — everything you need to build digital promotions faster -category: 639ba16d677235008f80043f -category-slug: getting-started +category: 639ba16d677235008f80043f +categorySlug: getting-started slug: welcome type: basic hidden: false @@ -98,4 +98,4 @@ For advanced customization, you should read about how Voucherify: ## What's next * Join our [Community Slack](https://community.voucherify.io/) to get help and inspiration. * Browse through Campaign, Discount, Distribution recipes to learn how to get a particular job done. -* Visit our [roadmap](https://roadmap.voucherify.io/) to find out what we’ll release in the next cycle; suggest improvements and vote for features you want to see in the platform. \ No newline at end of file +* Visit our [roadmap](https://roadmap.voucherify.io/) to find out what we’ll release in the next cycle; suggest improvements and vote for features you want to see in the platform. diff --git a/docs/guides/getting_started/Key-Concepts.md b/docs/guides/getting_started/Key-Concepts.md index ca7beb19d..3190d81fa 100644 --- a/docs/guides/getting_started/Key-Concepts.md +++ b/docs/guides/getting_started/Key-Concepts.md @@ -1,8 +1,8 @@ --- title: Key concepts excerpt: Voucherify offers several building blocks to help you implement promotional campaigns and integrate it with your stack. -category: 639ba16d677235008f80043f -category-slug: getting-started +category: 639ba16d677235008f80043f +categorySlug: getting-started slug: key-concepts type: basic hidden: false @@ -126,4 +126,4 @@ You can trigger a message [automatically](doc:automatic-delivery) in response to Distribution triggers a publication request behind the scenes. [Publication](doc:distribution#publish-with-the-api) is the process of assigning a promo code to a particular customer. Each unique code can be published to one customer only. Using this feature, you can track who received the code already and who hasn't. You can call the publication endpoint manually as well. [Distribution](doc:distribution) reference -[Distribution in dashboard](https://support.voucherify.io/article/19-how-does-the-distribution-manager-work) \ No newline at end of file +[Distribution in dashboard](https://support.voucherify.io/article/19-how-does-the-distribution-manager-work) diff --git a/docs/guides/getting_started/Quickstart.md b/docs/guides/getting_started/Quickstart.md index 64a9492d4..7a404535d 100644 --- a/docs/guides/getting_started/Quickstart.md +++ b/docs/guides/getting_started/Quickstart.md @@ -1,8 +1,8 @@ --- title: Quickstart excerpt: Get started with Voucherify API and dashboard by redeeming your first coupon code. -category: 639ba16d677235008f80043f -category-slug: getting-started +category: 639ba16d677235008f80043f +categorySlug: getting-started slug: quickstart type: basic hidden: false diff --git a/docs/guides/more/Roadmap.md b/docs/guides/more/Roadmap.md index 4e1a1c5e9..e64c92105 100644 --- a/docs/guides/more/Roadmap.md +++ b/docs/guides/more/Roadmap.md @@ -1,8 +1,8 @@ --- title: Roadmap excerpt: -category: 639ba16d677235008f800441 -category-slug: more +category: 639ba16d677235008f800441 +categorySlug: more slug: roadmap type: link hidden: false diff --git a/docs/guides/more/Status.md b/docs/guides/more/Status.md index d630139d7..893f84944 100644 --- a/docs/guides/more/Status.md +++ b/docs/guides/more/Status.md @@ -1,8 +1,8 @@ --- title: Status excerpt: -category: 639ba16d677235008f800441 -category-slug: more +category: 639ba16d677235008f800441 +categorySlug: more slug: status type: link hidden: false diff --git a/docs/guides/more/Support.md b/docs/guides/more/Support.md index a514a1f11..53431aca0 100644 --- a/docs/guides/more/Support.md +++ b/docs/guides/more/Support.md @@ -1,8 +1,8 @@ --- title: Support excerpt: -category: 639ba16d677235008f800441 -category-slug: more +category: 639ba16d677235008f800441 +categorySlug: more slug: support type: basic hidden: false @@ -11,4 +11,4 @@ order: 1 If you cannot find the answer to your question in the Developer Hub or [Help Center](https://support.voucherify.io), use one of these options: * :email: Contact us through the [contact form](https://www.voucherify.io/contact-support). -* :fa-slack: [Join Community](https://www.voucherify.io/community). \ No newline at end of file +* :fa-slack: [Join Community](https://www.voucherify.io/community). diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md b/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md index b13c06281..9ce9a15b0 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md @@ -1,8 +1,8 @@ --- title: Async Action Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fabf slug: async-action-object hidden: false @@ -26,4 +26,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md b/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md index c4663213f..d5761d845 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md @@ -1,8 +1,8 @@ --- title: Get Async Action type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-async-action parentDoc: 639ba2658407100061f5fabf hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md b/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md index ed88c6572..198eb706a 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md @@ -1,8 +1,8 @@ --- title: List Async Actions type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-async-actions parentDoc: 639ba2658407100061f5fabf hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md index ead674500..4816764f1 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md @@ -1,8 +1,8 @@ --- title: Add Voucher with Specific Code to Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: add-voucher-with-specific-code-to-campaign parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 7 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md index a2b8d7800..ea3500bed 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md @@ -1,8 +1,8 @@ --- title: Add Vouchers to Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: add-vouchers-to-campaign parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 6 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md b/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md index c709f4f23..78f4cabe8 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md +++ b/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md @@ -1,8 +1,8 @@ --- title: Campaign Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5faaf slug: campaign-object hidden: false @@ -45,4 +45,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md index 0325505ef..3637ca99c 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md @@ -1,8 +1,8 @@ --- title: Create Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-campaign parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md index c33d81ec7..a1bbcd2fd 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md @@ -1,8 +1,8 @@ --- title: Delete Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-campaign parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md index 4ed360cc2..1e2893e3e 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md @@ -1,8 +1,8 @@ --- title: Disable Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: disable-campaign parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 12 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md index efe34a52f..2ce4f037a 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md @@ -1,8 +1,8 @@ --- title: Enable Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: enable-campaign parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 11 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md b/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md index 9270c8aa8..40ab27acb 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md +++ b/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md @@ -1,8 +1,8 @@ --- title: Examine Qualification [Deprecated] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: examine-campaigns-qualification parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 10 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md index 496a1ee3f..50ffa4acb 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md @@ -1,8 +1,8 @@ --- title: Get Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-campaign parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md index 4753c84e6..7769e7c76 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md +++ b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md @@ -1,8 +1,8 @@ --- title: Import Vouchers to Campaign by CSV type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: import-vouchers-to-campaign-using-csv parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 9 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md index e174785dc..00a966323 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md @@ -1,8 +1,8 @@ --- title: Import Vouchers to Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: import-vouchers-to-campaign parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 8 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md b/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md index e0dd1ab93..7a678f40f 100644 --- a/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md +++ b/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md @@ -1,8 +1,8 @@ --- title: List Campaigns type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-campaigns parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md index b9b6c7a1b..34c5f98b7 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md @@ -1,8 +1,8 @@ --- title: Update Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-campaign parentDoc: 639ba2658407100061f5faaf hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CATEGORIES-API-Category-Object.md b/docs/reference-docs/CATEGORIES-API-Category-Object.md index 15c4e9c65..014261d07 100644 --- a/docs/reference-docs/CATEGORIES-API-Category-Object.md +++ b/docs/reference-docs/CATEGORIES-API-Category-Object.md @@ -1,8 +1,8 @@ --- title: Category Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fac1 slug: category-object hidden: false @@ -22,4 +22,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CATEGORIES-API-Create-Category.md b/docs/reference-docs/CATEGORIES-API-Create-Category.md index 9453f8705..64f6dd03e 100644 --- a/docs/reference-docs/CATEGORIES-API-Create-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Create-Category.md @@ -1,8 +1,8 @@ --- title: Create Category type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-category parentDoc: 639ba2658407100061f5fac1 hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CATEGORIES-API-Delete-Category.md b/docs/reference-docs/CATEGORIES-API-Delete-Category.md index 8fffa7592..824f358f5 100644 --- a/docs/reference-docs/CATEGORIES-API-Delete-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Delete-Category.md @@ -1,8 +1,8 @@ --- title: Delete Category type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-category parentDoc: 639ba2658407100061f5fac1 hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CATEGORIES-API-Get-Category.md b/docs/reference-docs/CATEGORIES-API-Get-Category.md index 5a043ef7a..0996ee4d8 100644 --- a/docs/reference-docs/CATEGORIES-API-Get-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Get-Category.md @@ -1,8 +1,8 @@ --- title: Get Category type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-category parentDoc: 639ba2658407100061f5fac1 hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CATEGORIES-API-List-Categories.md b/docs/reference-docs/CATEGORIES-API-List-Categories.md index 1f68cd596..2d6cfc3bb 100644 --- a/docs/reference-docs/CATEGORIES-API-List-Categories.md +++ b/docs/reference-docs/CATEGORIES-API-List-Categories.md @@ -1,8 +1,8 @@ --- title: List Categories type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-categories parentDoc: 639ba2658407100061f5fac1 hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CATEGORIES-API-Update-Category.md b/docs/reference-docs/CATEGORIES-API-Update-Category.md index d1acf93ee..d34c7a110 100644 --- a/docs/reference-docs/CATEGORIES-API-Update-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Update-Category.md @@ -1,8 +1,8 @@ --- title: Update Category type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-category parentDoc: 639ba2658407100061f5fac1 hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CONSENTS-API-Consents-Object.md b/docs/reference-docs/CONSENTS-API-Consents-Object.md index 7016503c9..58b8a0423 100644 --- a/docs/reference-docs/CONSENTS-API-Consents-Object.md +++ b/docs/reference-docs/CONSENTS-API-Consents-Object.md @@ -1,8 +1,8 @@ --- title: Consents Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fabe slug: consents-object hidden: false @@ -18,4 +18,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md b/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md index 407e72984..7f8d0be51 100644 --- a/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md +++ b/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md @@ -1,8 +1,8 @@ --- title: List Consents (client-side) type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-consents-client-side parentDoc: 639ba2658407100061f5fabe hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CONSENTS-API-List-Consents.md b/docs/reference-docs/CONSENTS-API-List-Consents.md index 895526b8a..a0b647224 100644 --- a/docs/reference-docs/CONSENTS-API-List-Consents.md +++ b/docs/reference-docs/CONSENTS-API-List-Consents.md @@ -1,8 +1,8 @@ --- title: List Consents type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-consents parentDoc: 639ba2658407100061f5fabe hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-Create-Customer.md b/docs/reference-docs/CUSTOMERS-API-Create-Customer.md index 2dc1c3adb..32781c0f5 100644 --- a/docs/reference-docs/CUSTOMERS-API-Create-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Create-Customer.md @@ -1,8 +1,8 @@ --- title: Create Customer type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-customer parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md b/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md index 0aa3ef7fb..ef3988bb2 100644 --- a/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md +++ b/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md @@ -1,8 +1,8 @@ --- title: Customer Activity Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab7 slug: customer-activity-object hidden: false @@ -20,4 +20,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-Customer-Object.md b/docs/reference-docs/CUSTOMERS-API-Customer-Object.md index 477347c12..d59e66036 100644 --- a/docs/reference-docs/CUSTOMERS-API-Customer-Object.md +++ b/docs/reference-docs/CUSTOMERS-API-Customer-Object.md @@ -1,8 +1,8 @@ --- title: Customer Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab7 slug: customer-object hidden: false @@ -34,4 +34,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md b/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md index ac982fe46..18549df08 100644 --- a/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md +++ b/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md @@ -1,8 +1,8 @@ --- title: Delete Customer Permanently type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-customer-permanently parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 10 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-Get-Customer.md b/docs/reference-docs/CUSTOMERS-API-Get-Customer.md index 1b4e37edf..e2e29f634 100644 --- a/docs/reference-docs/CUSTOMERS-API-Get-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Get-Customer.md @@ -1,8 +1,8 @@ --- title: Get Customer type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-customer parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md b/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md index ac636d5cc..1967c132f 100644 --- a/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md +++ b/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md @@ -1,8 +1,8 @@ --- title: Import and Update Customers using CSV type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: import-customers-using-csv parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 6 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md b/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md index 046e8a6d5..d41a4152b 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md @@ -1,8 +1,8 @@ --- title: List Customer Activities type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-customer-activities parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md b/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md index 700adbb96..c42d20540 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md @@ -1,8 +1,8 @@ --- title: List Customer's Segments type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-customer-segments parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customers.md b/docs/reference-docs/CUSTOMERS-API-List-Customers.md index 31f726196..545cef35d 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customers.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customers.md @@ -1,8 +1,8 @@ --- title: List Customers type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-customers parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md b/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md index d442b54a3..db3a2a43e 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md @@ -1,8 +1,8 @@ --- title: Update Customer's consents type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-customers-consents parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 8 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customer.md b/docs/reference-docs/CUSTOMERS-API-Update-Customer.md index 8f3302ba4..0e0942df4 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customer.md @@ -1,8 +1,8 @@ --- title: Update Customer type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-customer parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 7 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md index 03509d8de..edc8f4d8f 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md @@ -1,8 +1,8 @@ --- title: Update Customer's consents (client-side) type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-customers-consents-client-side parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 9 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md index 7c00cba23..4402a30e3 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md @@ -1,8 +1,8 @@ --- title: Update Customers in bulk type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-customers-in-bulk parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 10 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md index 9c44da6c6..5dc3d1b94 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md @@ -1,8 +1,8 @@ --- title: Update Customers' Metadata in bulk type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-customers-metadata-in-bulk parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 11 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/CUSTOMES-API-Delete-Customer.md b/docs/reference-docs/CUSTOMES-API-Delete-Customer.md index 2a22ca853..e94f12b76 100644 --- a/docs/reference-docs/CUSTOMES-API-Delete-Customer.md +++ b/docs/reference-docs/CUSTOMES-API-Delete-Customer.md @@ -1,8 +1,8 @@ --- title: Delete Customer type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-customer parentDoc: 639ba2658407100061f5fab7 hidden: false @@ -12,4 +12,4 @@ order: 9 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/EVENTS-API-Custom-Event-Object.md b/docs/reference-docs/EVENTS-API-Custom-Event-Object.md index eefcc71f9..2da951b4e 100644 --- a/docs/reference-docs/EVENTS-API-Custom-Event-Object.md +++ b/docs/reference-docs/EVENTS-API-Custom-Event-Object.md @@ -1,8 +1,8 @@ --- title: Custom Event Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fabd slug: custom-event-object hidden: false @@ -13,4 +13,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md b/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md index 723acc17f..d30e2b6fc 100644 --- a/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md +++ b/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md @@ -1,8 +1,8 @@ --- title: Track Custom Event (client-side) type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: track-custom-event-client-side parentDoc: 639ba2658407100061f5fabd hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/EVENTS-API-Track-Custom-Event.md b/docs/reference-docs/EVENTS-API-Track-Custom-Event.md index 1be72218d..8d7e64b89 100644 --- a/docs/reference-docs/EVENTS-API-Track-Custom-Event.md +++ b/docs/reference-docs/EVENTS-API-Track-Custom-Event.md @@ -1,8 +1,8 @@ --- title: Track Custom Event type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: track-custom-event parentDoc: 639ba2658407100061f5fabd hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/EXPORTS-API-Create-Export.md b/docs/reference-docs/EXPORTS-API-Create-Export.md index 963e4421a..1d590db67 100644 --- a/docs/reference-docs/EXPORTS-API-Create-Export.md +++ b/docs/reference-docs/EXPORTS-API-Create-Export.md @@ -1,8 +1,8 @@ --- title: Create Export type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-export parentDoc: 639ba2658407100061f5fac0 hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/EXPORTS-API-Delete-Export.md b/docs/reference-docs/EXPORTS-API-Delete-Export.md index 319d5a9a8..8252a0e2d 100644 --- a/docs/reference-docs/EXPORTS-API-Delete-Export.md +++ b/docs/reference-docs/EXPORTS-API-Delete-Export.md @@ -1,8 +1,8 @@ --- title: Delete Export type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-export parentDoc: 639ba2658407100061f5fac0 hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/EXPORTS-API-Download-Export.md b/docs/reference-docs/EXPORTS-API-Download-Export.md index eadd28cd4..7fa8ad9b4 100644 --- a/docs/reference-docs/EXPORTS-API-Download-Export.md +++ b/docs/reference-docs/EXPORTS-API-Download-Export.md @@ -1,8 +1,8 @@ --- title: Download Export type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: download-export parentDoc: 639ba2658407100061f5fac0 hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/EXPORTS-API-Export-Object.md b/docs/reference-docs/EXPORTS-API-Export-Object.md index 7bb53db76..21de53459 100644 --- a/docs/reference-docs/EXPORTS-API-Export-Object.md +++ b/docs/reference-docs/EXPORTS-API-Export-Object.md @@ -1,8 +1,8 @@ --- title: Export Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fac0 slug: export-object hidden: false @@ -25,4 +25,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/EXPORTS-API-Get-Export.md b/docs/reference-docs/EXPORTS-API-Get-Export.md index e1391d0d1..f7556f963 100644 --- a/docs/reference-docs/EXPORTS-API-Get-Export.md +++ b/docs/reference-docs/EXPORTS-API-Get-Export.md @@ -1,8 +1,8 @@ --- title: Get Export type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-export parentDoc: 639ba2658407100061f5fac0 hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/EXPORTS-API-List-Exports.md b/docs/reference-docs/EXPORTS-API-List-Exports.md index bac8d1226..08a292475 100644 --- a/docs/reference-docs/EXPORTS-API-List-Exports.md +++ b/docs/reference-docs/EXPORTS-API-List-Exports.md @@ -1,8 +1,8 @@ --- title: List Exports type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-exports parentDoc: 639ba2658407100061f5fac0 hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/Errors.md b/docs/reference-docs/Errors.md index 3d9d5c8c3..bbfeb6f40 100644 --- a/docs/reference-docs/Errors.md +++ b/docs/reference-docs/Errors.md @@ -1,8 +1,8 @@ --- title: Errors excerpt: Learn about the errors returned to responses and how you can customize them to improve your customer experience. -category: 639ba44d204cb60020b4b7ec -category-slug: introduction +category: 639ba44d204cb60020b4b7ec +categorySlug: introduction slug: errors type: basic hidden: false diff --git a/docs/reference-docs/Establish-Validation-Session.md b/docs/reference-docs/Establish-Validation-Session.md index 5a80eb53a..63efeaf5b 100644 --- a/docs/reference-docs/Establish-Validation-Session.md +++ b/docs/reference-docs/Establish-Validation-Session.md @@ -1,8 +1,9 @@ --- title: Establish Validation Session -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab5 +parentDocSlug: stackable-discounts-api slug: establish-validation-session type: link hidden: false diff --git a/docs/reference-docs/Fetching-Data.md b/docs/reference-docs/Fetching-Data.md index 088be0ec5..bd77ca7a8 100644 --- a/docs/reference-docs/Fetching-Data.md +++ b/docs/reference-docs/Fetching-Data.md @@ -1,8 +1,8 @@ --- title: Fetching Data excerpt: Learn how to specify the data you would like to fetch. -category: 639ba44d204cb60020b4b7ec -category-slug: introduction +category: 639ba44d204cb60020b4b7ec +categorySlug: introduction slug: listing type: basic hidden: false @@ -122,4 +122,4 @@ Examine qualifications methods display all vouchers or campaigns qualified to th | **Voucher** | voucher type
(`GIFT_VOUCHER`, or `DISCOUNT_VOUCHER`) | `[filters][type][conditions][$is]={{voucher_type}` | | **Voucher** | `metadata` | `[filters][metadata.{{Voucher metadata key}}][conditions][$is]={{voucher_metadata_value}}` | | **Voucher** | `holder_id`
(when a code is published to a customer, he/she becomes its holder) | `[filters][holder_id][conditions][$in]={{customer_id}}` | -| **Voucher** | `campaign_ids` | `[filters][campaign_id][conditions][$in]={{campaign_id}}` | \ No newline at end of file +| **Voucher** | `campaign_ids` | `[filters][campaign_id][conditions][$in]={{campaign_id}}` | diff --git a/docs/reference-docs/Introduction.md b/docs/reference-docs/Introduction.md index 291e4debe..4e95d6d52 100644 --- a/docs/reference-docs/Introduction.md +++ b/docs/reference-docs/Introduction.md @@ -1,8 +1,8 @@ --- title: Introduction excerpt: What is Voucherify API? -category: 639ba44d204cb60020b4b7ec -category-slug: introduction +category: 639ba44d204cb60020b4b7ec +categorySlug: introduction slug: introduction-1 type: basic hidden: false @@ -24,4 +24,4 @@ In general the API consists of 2 sets: > 📘 Your API keys > -> Find out more about how to [authenticate your application](doc:authentication) to access the API. \ No newline at end of file +> Find out more about how to [authenticate your application](doc:authentication) to access the API. diff --git a/docs/reference-docs/LOCATIONS-API-Get-Location.md b/docs/reference-docs/LOCATIONS-API-Get-Location.md index fcfdfbc18..3f15f4fe2 100644 --- a/docs/reference-docs/LOCATIONS-API-Get-Location.md +++ b/docs/reference-docs/LOCATIONS-API-Get-Location.md @@ -1,8 +1,8 @@ --- title: Get Location type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 64d0e09b5a917a1254315da7 slug: get-location hidden: false @@ -13,4 +13,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOCATIONS-API-List-Locations.md b/docs/reference-docs/LOCATIONS-API-List-Locations.md index 454471734..28fe1a2cb 100644 --- a/docs/reference-docs/LOCATIONS-API-List-Locations.md +++ b/docs/reference-docs/LOCATIONS-API-List-Locations.md @@ -1,8 +1,8 @@ --- title: List Locations type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 64d0e09b5a917a1254315da7 slug: list-locations hidden: false @@ -13,4 +13,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOCATIONS-API-Location-Object.md b/docs/reference-docs/LOCATIONS-API-Location-Object.md index c6495db68..4e314a2cd 100644 --- a/docs/reference-docs/LOCATIONS-API-Location-Object.md +++ b/docs/reference-docs/LOCATIONS-API-Location-Object.md @@ -1,8 +1,8 @@ --- title: Location Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 64d0e09b5a917a1254315da7 slug: location-object hidden: false @@ -13,4 +13,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Add-Member.md b/docs/reference-docs/LOYALTIES-API-Add-Member.md index 5c8229eaf..a5d7461f9 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Member.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Member.md @@ -1,8 +1,8 @@ --- title: Add Member type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: add-member parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 9 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md index 128e31fdd..35f574cc7 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md @@ -1,8 +1,8 @@ --- title: Add or Remove Loyalty Card Balance type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: add-remove-loyalty-card-balance-1 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 13 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md index b43119fc4..93cf6b783 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md @@ -1,8 +1,8 @@ --- title: Add or Remove Loyalty Card Balance type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: add-remove-loyalty-card-balance parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 12 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md index 5ede9e18b..42c4807a2 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md @@ -1,8 +1,8 @@ --- title: Create Earning Rule type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 23 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md index 4703e7243..4645bb4da 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md @@ -1,8 +1,8 @@ --- title: Create Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-loyalty-program parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md b/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md index fea711b00..e325fe0ce 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md @@ -1,8 +1,8 @@ --- title: Create Points Expiration Export type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-points-expiration-export parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 20 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md b/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md index 15a2e4cb7..5ec6a6965 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md @@ -1,8 +1,8 @@ --- title: Create Reward Assignment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-reward-assignment-1 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 36 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md index b1df4885d..6847caed3 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md @@ -1,8 +1,8 @@ --- title: Delete Earning Rule type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 25 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md index bf6a8c45c..97bbe4831 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md @@ -1,8 +1,8 @@ --- title: Delete Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-loyalty-program parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md b/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md index 70dcf7d15..cbf511ffb 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md @@ -1,8 +1,8 @@ --- title: Delete Reward Assignment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-reward-assignment-1 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 38 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md index 5b05cffa5..fc193127a 100644 --- a/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md @@ -1,8 +1,8 @@ --- title: Disable Earning Rule type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: disable-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 27 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md b/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md index 09ca3254a..722f439d9 100644 --- a/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md @@ -1,8 +1,8 @@ --- title: Earning Rule Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab6 slug: earning-rule-object hidden: false @@ -13,4 +13,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md index 25130a74e..9e3a5eca5 100644 --- a/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md @@ -1,8 +1,8 @@ --- title: Enable Earning Rule type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: enable-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 26 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md index 3cc9ff72b..4c3009900 100644 --- a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md +++ b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md @@ -1,8 +1,8 @@ --- title: Export Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: export-loyalty-card-transactions-1 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 17 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md index dccdf6743..94443a65f 100644 --- a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md +++ b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md @@ -1,8 +1,8 @@ --- title: Export Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: export-loyalty-card-transactions parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 18 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md b/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md index 113ddc90c..cd018f98f 100644 --- a/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md +++ b/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md @@ -1,8 +1,8 @@ --- title: Get Reward Assignment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-reward-assignment-2 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 35 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md index 154b344bf..bf25a1f50 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md @@ -1,8 +1,8 @@ --- title: Get Earning Rule type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 22 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md index 1fd681d88..a5ceea2ce 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md @@ -1,8 +1,8 @@ --- title: Get Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-loyalty-program parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md index 93cfacfe6..e238693ee 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md @@ -1,8 +1,8 @@ --- title: Get Loyalty Tier type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-loyalty-tier parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 40 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-1.md b/docs/reference-docs/LOYALTIES-API-Get-Member-1.md index 1d7aff821..23700839a 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-1.md @@ -1,8 +1,8 @@ --- title: Get Member type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-member-1 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 8 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md index 5ffe1e628..a06fddbce 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md @@ -1,8 +1,8 @@ --- title: Get Member Activities type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-member-activities-1 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 11 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md index 35946b553..82bf71533 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md @@ -1,8 +1,8 @@ --- title: Get Member Activities type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-member-activities parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 10 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member.md b/docs/reference-docs/LOYALTIES-API-Get-Member.md index ea3abe292..b73885596 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member.md @@ -1,8 +1,8 @@ --- title: Get Member type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-member parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 7 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md b/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md index 99f152fad..4591892bb 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md @@ -1,8 +1,8 @@ --- title: Get Points Expiration type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-points-expiration parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 19 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md b/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md index d4f024ddc..62acda1fa 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md @@ -1,8 +1,8 @@ --- title: Get Reward Assignment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-reward-assignment-1 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 34 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md b/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md index edaee6873..199670cfe 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md @@ -1,8 +1,8 @@ --- title: Get Reward Details type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-reward-details parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 29 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md b/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md index fdb4df97c..c9cabf1f8 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md +++ b/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md @@ -1,8 +1,8 @@ --- title: List Earning Rules type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-earning-rules parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 21 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md index 93eba6206..c74192883 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md @@ -1,8 +1,8 @@ --- title: List Loyalty Campaigns type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-loyalty-programs parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md index 51e396a3e..1530876ee 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md @@ -1,8 +1,8 @@ --- title: List Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-loyalty-card-transactions-1 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 15 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md index 690e847d6..09e2b26be 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md @@ -1,8 +1,8 @@ --- title: List Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-loyalty-card-transactions parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 16 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md index a3676d62c..b351573e0 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md @@ -1,8 +1,8 @@ --- title: List Loyalty Tier Earning Rules type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-loyalty-tier-earning-rules parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 42 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md index e5847c3ff..8724b8fa4 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md @@ -1,8 +1,8 @@ --- title: List Loyalty Tier Rewards type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-loyalty-tier-rewards parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 43 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md index a3720089d..29e0eb5b4 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md @@ -1,8 +1,8 @@ --- title: List Loyalty Tiers type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-loyalty-tiers parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 39 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md b/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md index b2bb720b1..ae4893e69 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md +++ b/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md @@ -1,8 +1,8 @@ --- title: List Member Rewards type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-member-rewards parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 28 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md b/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md index 4e73aa5e3..759f46e75 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md +++ b/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md @@ -1,8 +1,8 @@ --- title: List Member's Loyalty Tiers type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-member-loyalty-tier parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 41 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Members.md b/docs/reference-docs/LOYALTIES-API-List-Members.md index 96c8b0610..3329ec3a8 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Members.md +++ b/docs/reference-docs/LOYALTIES-API-List-Members.md @@ -1,8 +1,8 @@ --- title: List Members type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-members parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 6 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md index b8305d9f5..f9c4b88b7 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md +++ b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md @@ -1,8 +1,8 @@ --- title: List Reward Assignments type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-reward-assignments-1 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 32 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md index 6ce33d12b..887786efb 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md +++ b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md @@ -1,8 +1,8 @@ --- title: List Reward Assignments type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-reward-assignments-2 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 33 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md index 9f0149fa9..62ca57247 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md @@ -1,8 +1,8 @@ --- title: Loyalty Campaign Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab6 slug: loyalty-campaign-object hidden: false @@ -42,4 +42,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md index 352dab2ab..957989eca 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md @@ -1,8 +1,8 @@ --- title: Loyalty Card Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab6 slug: loyalty-card-object hidden: false @@ -42,4 +42,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md index 7021f8a02..beb2f7e7b 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md @@ -1,8 +1,8 @@ --- title: Loyalty Tier Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab6 slug: loyalty-tier-object hidden: false @@ -27,4 +27,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md b/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md index 0e83dc044..bf5307eb3 100644 --- a/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md +++ b/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md @@ -1,8 +1,8 @@ --- title: Redeem Reward type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: redeem-reward parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 30 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md b/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md index f90eb0d54..e08cee117 100644 --- a/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md +++ b/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md @@ -1,8 +1,8 @@ --- title: Redeem Reward type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: redeem-reward-1 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 31 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md b/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md index f95ba3754..7770d3956 100644 --- a/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md +++ b/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md @@ -1,8 +1,8 @@ --- title: Transfer Loyalty Points type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: transfer-points parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 14 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md index 9964358bc..311be219a 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md @@ -1,8 +1,8 @@ --- title: Update Earning Rule type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-earning-rule parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 24 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md index 4af5eb84e..729713354 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md @@ -1,8 +1,8 @@ --- title: Update Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-loyalty-program parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md b/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md index 8342c6a69..61190e9fb 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md @@ -1,8 +1,8 @@ --- title: Update Reward Assignment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-reward-assignment-1 parentDoc: 639ba2658407100061f5fab6 hidden: false @@ -12,4 +12,4 @@ order: 37 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md b/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md index 845974a49..6af58c44b 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md @@ -1,8 +1,8 @@ --- title: Get Metadata Schema type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-metadata-schema parentDoc: 639ba2658407100061f5fac2 hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md b/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md index 350aae6ae..794e32aa4 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md @@ -1,8 +1,8 @@ --- title: List Metadata Schemas type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-metadata-schemas parentDoc: 639ba2658407100061f5fac2 hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md b/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md index 1e0992330..83bb6db21 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md @@ -1,8 +1,8 @@ --- title: Metadata Schema Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fac2 slug: metadata-schema-object hidden: false @@ -23,4 +23,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/ORDERS-API-Create-Order.md b/docs/reference-docs/ORDERS-API-Create-Order.md index 6c3a89f0b..43a7426fc 100644 --- a/docs/reference-docs/ORDERS-API-Create-Order.md +++ b/docs/reference-docs/ORDERS-API-Create-Order.md @@ -1,8 +1,8 @@ --- title: Create Order type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-order parentDoc: 639ba2658407100061f5fab8 hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/ORDERS-API-Create-Orders-Export.md b/docs/reference-docs/ORDERS-API-Create-Orders-Export.md index 2a26128fe..51c7364fa 100644 --- a/docs/reference-docs/ORDERS-API-Create-Orders-Export.md +++ b/docs/reference-docs/ORDERS-API-Create-Orders-Export.md @@ -1,8 +1,8 @@ --- title: Create Orders Export type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-order-export parentDoc: 639ba2658407100061f5fab8 hidden: false @@ -12,4 +12,4 @@ order: 6 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/ORDERS-API-Get-Order.md b/docs/reference-docs/ORDERS-API-Get-Order.md index bebfcf768..96e0ae2b5 100644 --- a/docs/reference-docs/ORDERS-API-Get-Order.md +++ b/docs/reference-docs/ORDERS-API-Get-Order.md @@ -1,8 +1,8 @@ --- title: Get Order type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-order parentDoc: 639ba2658407100061f5fab8 hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/ORDERS-API-Import-Orders.md b/docs/reference-docs/ORDERS-API-Import-Orders.md index 6b40fa3ee..b87256e92 100644 --- a/docs/reference-docs/ORDERS-API-Import-Orders.md +++ b/docs/reference-docs/ORDERS-API-Import-Orders.md @@ -1,8 +1,8 @@ --- title: Import Orders type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: import-orders parentDoc: 639ba2658407100061f5fab8 hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/ORDERS-API-List-Orders.md b/docs/reference-docs/ORDERS-API-List-Orders.md index 2e4a059c3..ecddeba2f 100644 --- a/docs/reference-docs/ORDERS-API-List-Orders.md +++ b/docs/reference-docs/ORDERS-API-List-Orders.md @@ -1,8 +1,8 @@ --- title: List Orders type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-orders parentDoc: 639ba2658407100061f5fab8 hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/ORDERS-API-Order-Object.md b/docs/reference-docs/ORDERS-API-Order-Object.md index a3aa1b26d..52d8cd479 100644 --- a/docs/reference-docs/ORDERS-API-Order-Object.md +++ b/docs/reference-docs/ORDERS-API-Order-Object.md @@ -1,8 +1,8 @@ --- title: Order Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab8 slug: order-object hidden: false @@ -34,4 +34,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/ORDERS-API-Update-Order.md b/docs/reference-docs/ORDERS-API-Update-Order.md index 0a82f5d76..b121b1637 100644 --- a/docs/reference-docs/ORDERS-API-Update-Order.md +++ b/docs/reference-docs/ORDERS-API-Update-Order.md @@ -1,8 +1,8 @@ --- title: Update Order type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-order parentDoc: 639ba2658407100061f5fab8 hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/Object-Schemas.md b/docs/reference-docs/Object-Schemas.md index 60bedce69..3d176392d 100644 --- a/docs/reference-docs/Object-Schemas.md +++ b/docs/reference-docs/Object-Schemas.md @@ -1,8 +1,8 @@ --- title: Object Schemas excerpt: Schema model definitions -category: 639ba44d204cb60020b4b7ec -category-slug: introduction +category: 639ba44d204cb60020b4b7ec +categorySlug: introduction slug: object-schemas type: basic hidden: false @@ -33,4 +33,4 @@ You can find the object definitions for the given schemas by navigating to the r | Async Actions | [Async action object](ref:async-action-object) | | Exports | [Export object](ref:export-object) | | Categories | [Category object](ref:category-object) | -| Metadata Schemas | [Metadata schema object](ref:metadata-schema-object) | \ No newline at end of file +| Metadata Schemas | [Metadata schema object](ref:metadata-schema-object) | diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md index 6862d576f..5abfc2ceb 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md @@ -1,8 +1,8 @@ --- title: Delete Product Collection type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-product-collection parentDoc: 639ba2658407100061f5faba hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md index b1e3cf14f..8dcbb03a1 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md @@ -1,8 +1,8 @@ --- title: List Product Collections type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-product-collections parentDoc: 639ba2658407100061f5faba hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md index 8260c6ab6..95233099f 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md @@ -1,8 +1,8 @@ --- title: List Products in Collection type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-products-in-collection parentDoc: 639ba2658407100061f5faba hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md index 8031139cd..19d9a9f08 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md @@ -1,8 +1,8 @@ --- title: Product Collection Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5faba slug: product-collection-object hidden: false @@ -13,4 +13,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md index 2949891c1..7f67da08b 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md @@ -1,8 +1,8 @@ --- title: Get Product Collection type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-product-collection parentDoc: 639ba2658407100061f5faba hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Create-Product.md b/docs/reference-docs/PRODUCTS-API-Create-Product.md index d683f489d..f4297868f 100644 --- a/docs/reference-docs/PRODUCTS-API-Create-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Create-Product.md @@ -1,8 +1,8 @@ --- title: Create Product type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-product parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Create-SKU.md b/docs/reference-docs/PRODUCTS-API-Create-SKU.md index eaa1551cc..6aa50a2e7 100644 --- a/docs/reference-docs/PRODUCTS-API-Create-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Create-SKU.md @@ -1,8 +1,8 @@ --- title: Create SKU type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-sku parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 11 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Delete-Product.md b/docs/reference-docs/PRODUCTS-API-Delete-Product.md index a031679e4..214689c0a 100644 --- a/docs/reference-docs/PRODUCTS-API-Delete-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Delete-Product.md @@ -1,8 +1,8 @@ --- title: Delete Product type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-product parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 8 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Delete-SKU.md b/docs/reference-docs/PRODUCTS-API-Delete-SKU.md index 35bcba461..d00fa2b2b 100644 --- a/docs/reference-docs/PRODUCTS-API-Delete-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Delete-SKU.md @@ -1,8 +1,8 @@ --- title: Delete SKU type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-sku parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 14 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Get-Product.md b/docs/reference-docs/PRODUCTS-API-Get-Product.md index 031e4d1ca..40da2411d 100644 --- a/docs/reference-docs/PRODUCTS-API-Get-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Get-Product.md @@ -1,8 +1,8 @@ --- title: Get Product type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-product parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Get-SKU.md b/docs/reference-docs/PRODUCTS-API-Get-SKU.md index 133850726..9530ce8ba 100644 --- a/docs/reference-docs/PRODUCTS-API-Get-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Get-SKU.md @@ -1,8 +1,8 @@ --- title: Get SKU type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-sku parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 10 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md b/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md index 658f5f418..677f6b6cd 100644 --- a/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md +++ b/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md @@ -1,8 +1,8 @@ --- title: Import Products using CSV type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: import-products-using-csv parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md b/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md index 3323ddee1..23ba05752 100644 --- a/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md +++ b/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md @@ -1,8 +1,8 @@ --- title: Import SKUs using CSV type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: import-skus-using-csv parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 12 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-List-Products.md b/docs/reference-docs/PRODUCTS-API-List-Products.md index 4cf3e10c3..3c485ba2f 100644 --- a/docs/reference-docs/PRODUCTS-API-List-Products.md +++ b/docs/reference-docs/PRODUCTS-API-List-Products.md @@ -1,8 +1,8 @@ --- title: List Products type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-products parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md b/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md index 2ed493b7a..6e2948c41 100644 --- a/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md +++ b/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md @@ -1,8 +1,8 @@ --- title: List SKUs in Product type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-skus-in-product parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 9 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Product-Object.md b/docs/reference-docs/PRODUCTS-API-Product-Object.md index e9f320d42..2ce6128be 100644 --- a/docs/reference-docs/PRODUCTS-API-Product-Object.md +++ b/docs/reference-docs/PRODUCTS-API-Product-Object.md @@ -1,8 +1,8 @@ --- title: Product Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab9 slug: product-object hidden: false @@ -27,4 +27,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-SKU-Object.md b/docs/reference-docs/PRODUCTS-API-SKU-Object.md index 1c3ddffea..b7a73eb84 100644 --- a/docs/reference-docs/PRODUCTS-API-SKU-Object.md +++ b/docs/reference-docs/PRODUCTS-API-SKU-Object.md @@ -1,8 +1,8 @@ --- title: SKU Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab9 slug: sku-object hidden: false @@ -28,4 +28,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Update-Product.md b/docs/reference-docs/PRODUCTS-API-Update-Product.md index ad8e6afde..8549281c4 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Product.md @@ -1,8 +1,8 @@ --- title: Update Product type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-product parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md b/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md index 0d05ebeae..637eeb3d1 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md @@ -1,8 +1,8 @@ --- title: Update Products in bulk type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-products-in-bulk parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 6 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md b/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md index 8a24a6483..21cd177c4 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md @@ -1,8 +1,8 @@ --- title: Update Products' Metadata in bulk type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-products-metadata-in-bulk parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 7 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PRODUCTS-API-Update-SKU.md b/docs/reference-docs/PRODUCTS-API-Update-SKU.md index eda8964c4..fa2c6b86a 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Update-SKU.md @@ -1,8 +1,8 @@ --- title: Update SKU type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-sku parentDoc: 639ba2658407100061f5fab9 hidden: false @@ -12,4 +12,4 @@ order: 13 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md b/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md index 299e27a86..d1edcf969 100644 --- a/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md @@ -1,8 +1,8 @@ --- title: Add Promotion Tier to Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: add-promotion-tier-to-campaign parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md index 1b8822875..faf347177 100644 --- a/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md @@ -1,8 +1,8 @@ --- title: Create Promotion Stack type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-promotion-stack parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 13 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md index 49a743811..7e18877eb 100644 --- a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md @@ -1,8 +1,8 @@ --- title: Delete Promotion Stack type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-promotion-stack parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 15 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md index 6dae7e351..6daa678ac 100644 --- a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md @@ -1,8 +1,8 @@ --- title: Delete Promotion Tier type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-promotion-tier parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 7 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md index dcd2f9f50..c803afd86 100644 --- a/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md @@ -1,8 +1,8 @@ --- title: Disable Promotion Tier type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: disable-promotion-tier parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 9 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md index 7f301ec5c..c30f6b98b 100644 --- a/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md @@ -1,8 +1,8 @@ --- title: Enable Promotion Tier type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: enable-promotion-tier parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 8 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md index a8460e670..bb532134e 100644 --- a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md @@ -1,8 +1,8 @@ --- title: Get Promotion Stack type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-promotion-stack parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 12 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md index 984479c45..ffd02c397 100644 --- a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md @@ -1,8 +1,8 @@ --- title: Get Promotion Tier type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-promotion-tier parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md index 81b1e6413..784bdba2f 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md @@ -1,8 +1,8 @@ --- title: List Promotion Stacks in Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-promotion-stacks-in-campaign parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 11 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md index 5944a62ab..ae31735ad 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md @@ -1,8 +1,8 @@ --- title: List Promotion Stacks type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-all-promotion-stacks parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 10 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md index 66dbc3d4f..52172e1b0 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md @@ -1,8 +1,8 @@ --- title: List Promotion Tiers (client-side) type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-promotion-tiers-client-side parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md index b95fb6e61..4b216f82b 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md @@ -1,8 +1,8 @@ --- title: List Promotion Tiers from Campaign type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-promotion-tiers-from-campaign parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md index 8150ed14c..857329e47 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md @@ -1,8 +1,8 @@ --- title: List Promotion Tiers type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-promotion-tiers parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md b/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md index 12d48392e..5f50cf346 100644 --- a/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md +++ b/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md @@ -1,8 +1,8 @@ --- title: Promotion Tier Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab0 slug: promotion-tier-object hidden: false @@ -36,4 +36,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md index 300adfbfc..5872f52ac 100644 --- a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md @@ -1,8 +1,8 @@ --- title: Update Promotion Stack type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-promotion-stack parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 14 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md index 513bfded0..1b355ea07 100644 --- a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md @@ -1,8 +1,8 @@ --- title: Update Promotion Tier type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-promotion-tier parentDoc: 639ba2658407100061f5fab0 hidden: false @@ -12,4 +12,4 @@ order: 6 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md b/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md index 6d14ef91b..df0da47f8 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md +++ b/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md @@ -1,8 +1,8 @@ --- title: Create Publication type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-publication-1 parentDoc: 63b58495b5ee6800ab6535dc hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md b/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md index b524e8265..599240890 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md +++ b/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md @@ -1,8 +1,8 @@ --- title: Create Publication type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-publication parentDoc: 63b58495b5ee6800ab6535dc hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PUBLICATIONS-API-List-Publications.md b/docs/reference-docs/PUBLICATIONS-API-List-Publications.md index 6ca4a25b9..05fbe1bd2 100644 --- a/docs/reference-docs/PUBLICATIONS-API-List-Publications.md +++ b/docs/reference-docs/PUBLICATIONS-API-List-Publications.md @@ -1,8 +1,8 @@ --- title: List Publications type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-publications parentDoc: 63b58495b5ee6800ab6535dc hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md b/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md index 4074db608..c8cc7b2e6 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md +++ b/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md @@ -1,8 +1,8 @@ --- title: Publication Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 63b58495b5ee6800ab6535dc slug: publication-object hidden: false @@ -28,4 +28,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md index b5214b240..90cde0dbd 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md @@ -1,8 +1,8 @@ --- title: Check Eligibility (client-side) [Beta] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 64d0e09b5a917a1254315da8 slug: check-eligibility-client-side hidden: false @@ -13,4 +13,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md index d0ee95a8b..317724a54 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md @@ -1,8 +1,8 @@ --- title: Check Eligibility [Beta] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 64d0e09b5a917a1254315da8 slug: check-eligibility hidden: false @@ -13,4 +13,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md b/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md index e52572e49..ddb3e654e 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md @@ -1,8 +1,8 @@ --- title: Qualification Object [Beta] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 64d0e09b5a917a1254315da8 slug: qualification-object hidden: false @@ -13,4 +13,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md b/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md index f984640c9..668f22de3 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md +++ b/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md @@ -1,8 +1,8 @@ --- title: Get Redemption type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-redemption parentDoc: 639ba2658407100061f5fab4 hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md b/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md index 193263227..6c728a612 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md +++ b/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md @@ -1,8 +1,8 @@ --- title: Get Voucher's Redemptions type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-voucher-redemptions parentDoc: 639ba2658407100061f5fab4 hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md b/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md index 1344f41aa..062a622b6 100644 --- a/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md +++ b/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md @@ -1,8 +1,8 @@ --- title: List Redemptions type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-redemptions parentDoc: 639ba2658407100061f5fab4 hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md index e27137e26..1ae7aad3f 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md @@ -1,8 +1,8 @@ --- title: Redeem Promotion [Deprecated] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: redeem-promotion parentDoc: 639ba2658407100061f5fab4 hidden: false @@ -12,4 +12,4 @@ order: 7 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md index 215d776f9..469c975e4 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md @@ -1,8 +1,8 @@ --- title: Redeem Voucher (client-side) [Deprecated] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: redeem-voucher-client-side parentDoc: 639ba2658407100061f5fab4 hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md index bef1b56f3..ba249702c 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md @@ -1,8 +1,8 @@ --- title: Redeem Voucher [Deprecated] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: redeem-voucher parentDoc: 639ba2658407100061f5fab4 hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md b/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md index fabd898af..a4c127caa 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md @@ -1,8 +1,8 @@ --- title: Redemption Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab4 slug: redemption-object hidden: false @@ -13,4 +13,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md index 7f4d4fab1..8c60b43ac 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md +++ b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md @@ -1,8 +1,8 @@ --- title: Rollback Redemption Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab4 slug: rollback-redemption-object hidden: false @@ -13,4 +13,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md index 94d4da7df..b41bc2b0a 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md +++ b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md @@ -1,8 +1,8 @@ --- title: Rollback Redemption type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: rollback-redemption parentDoc: 639ba2658407100061f5fab4 hidden: false @@ -12,4 +12,4 @@ order: 6 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md index d66279142..72bdcb02e 100644 --- a/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md @@ -1,8 +1,8 @@ --- title: Create Reward Assignment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-reward-assignment parentDoc: 639ba2658407100061f5fab1 hidden: false @@ -12,4 +12,4 @@ order: 8 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-Create-Reward.md b/docs/reference-docs/REWARDS-API-Create-Reward.md index fea88c971..59844a567 100644 --- a/docs/reference-docs/REWARDS-API-Create-Reward.md +++ b/docs/reference-docs/REWARDS-API-Create-Reward.md @@ -1,8 +1,8 @@ --- title: Create Reward type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-reward parentDoc: 639ba2658407100061f5fab1 hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md index fe4da3c87..f79b54fcc 100644 --- a/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md @@ -1,8 +1,8 @@ --- title: Delete Reward Assignment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-reward-assignment parentDoc: 639ba2658407100061f5fab1 hidden: false @@ -12,4 +12,4 @@ order: 10 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-Delete-Reward.md b/docs/reference-docs/REWARDS-API-Delete-Reward.md index 304e9749b..62eef6b5c 100644 --- a/docs/reference-docs/REWARDS-API-Delete-Reward.md +++ b/docs/reference-docs/REWARDS-API-Delete-Reward.md @@ -1,8 +1,8 @@ --- title: Delete Reward type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-reward parentDoc: 639ba2658407100061f5fab1 hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md index a82771244..016e988e3 100644 --- a/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md @@ -1,8 +1,8 @@ --- title: Get Reward Assignment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-reward-assignment parentDoc: 639ba2658407100061f5fab1 hidden: false @@ -12,4 +12,4 @@ order: 7 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-Get-Reward.md b/docs/reference-docs/REWARDS-API-Get-Reward.md index b4db1a739..7094b6fa3 100644 --- a/docs/reference-docs/REWARDS-API-Get-Reward.md +++ b/docs/reference-docs/REWARDS-API-Get-Reward.md @@ -1,8 +1,8 @@ --- title: Get Reward type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-reward parentDoc: 639ba2658407100061f5fab1 hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md b/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md index 958e22820..ac7596810 100644 --- a/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md +++ b/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md @@ -1,8 +1,8 @@ --- title: List Reward Assignments type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-reward-assignments parentDoc: 639ba2658407100061f5fab1 hidden: false @@ -12,4 +12,4 @@ order: 6 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-List-Rewards.md b/docs/reference-docs/REWARDS-API-List-Rewards.md index 9bcf627b7..a621d7ed6 100644 --- a/docs/reference-docs/REWARDS-API-List-Rewards.md +++ b/docs/reference-docs/REWARDS-API-List-Rewards.md @@ -1,8 +1,8 @@ --- title: List Rewards type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-rewards parentDoc: 639ba2658407100061f5fab1 hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md b/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md index c3809cd3a..479a4ee7d 100644 --- a/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md +++ b/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md @@ -1,8 +1,8 @@ --- title: Reward Assignment Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab1 slug: reward-assignment-object hidden: false @@ -24,4 +24,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-Reward-Object.md b/docs/reference-docs/REWARDS-API-Reward-Object.md index 7e45b4d8c..f4823e7c2 100644 --- a/docs/reference-docs/REWARDS-API-Reward-Object.md +++ b/docs/reference-docs/REWARDS-API-Reward-Object.md @@ -1,8 +1,8 @@ --- title: Reward Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab1 slug: reward-object hidden: false @@ -27,4 +27,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md index 551ec9605..c6452bc98 100644 --- a/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md @@ -1,8 +1,8 @@ --- title: Update Reward Assignment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-reward-assignment parentDoc: 639ba2658407100061f5fab1 hidden: false @@ -12,4 +12,4 @@ order: 9 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/REWARDS-API-Update-Reward.md b/docs/reference-docs/REWARDS-API-Update-Reward.md index 8e20ad6c8..28b0912bf 100644 --- a/docs/reference-docs/REWARDS-API-Update-Reward.md +++ b/docs/reference-docs/REWARDS-API-Update-Reward.md @@ -1,8 +1,8 @@ --- title: Update Reward type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-reward parentDoc: 639ba2658407100061f5fab1 hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/SEGMENTS-API-Create-Segment.md b/docs/reference-docs/SEGMENTS-API-Create-Segment.md index 6a20ffd35..e08c466ac 100644 --- a/docs/reference-docs/SEGMENTS-API-Create-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Create-Segment.md @@ -1,8 +1,8 @@ --- title: Create Segment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-segment parentDoc: 639ba2658407100061f5fabc hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md b/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md index c9d944ddd..7180dbe04 100644 --- a/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md +++ b/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md @@ -1,8 +1,8 @@ --- title: Customer Segment Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fabc slug: customer-segment-object hidden: false @@ -24,4 +24,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/SEGMENTS-API-Delete-Segment.md b/docs/reference-docs/SEGMENTS-API-Delete-Segment.md index d429c273b..f40cdfffe 100644 --- a/docs/reference-docs/SEGMENTS-API-Delete-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Delete-Segment.md @@ -1,8 +1,8 @@ --- title: Delete Segment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-segment parentDoc: 639ba2658407100061f5fabc hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/SEGMENTS-API-Get-Segment.md b/docs/reference-docs/SEGMENTS-API-Get-Segment.md index 4b9324f19..8b522fb2e 100644 --- a/docs/reference-docs/SEGMENTS-API-Get-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Get-Segment.md @@ -1,8 +1,8 @@ --- title: Get Segment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-segment parentDoc: 639ba2658407100061f5fabc hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md index a7e416e56..75d6f7ecf 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md @@ -1,8 +1,8 @@ --- title: Redeem Stackable Discounts (client-side) type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: redeem-stacked-discounts-client-side parentDoc: 639ba2658407100061f5fab5 hidden: false @@ -12,4 +12,4 @@ order: 6 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md index 34b1de6e1..949557684 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md @@ -1,8 +1,8 @@ --- title: Redeem Stackable Discounts type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: redeem-stacked-discounts parentDoc: 639ba2658407100061f5fab5 hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md index 659638a1d..e074c6348 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md @@ -1,8 +1,8 @@ --- title: Rollback Stackable Redemptions type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: rollback-stacked-redemptions parentDoc: 639ba2658407100061f5fab5 hidden: false @@ -12,4 +12,4 @@ order: 7 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md index e168ab5a8..63f4b561c 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md @@ -1,8 +1,8 @@ --- title: Stackable Redemptions Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab5 slug: stackable-redemptions-object hidden: false @@ -19,4 +19,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md index 386af09f0..147198f7a 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md @@ -1,8 +1,8 @@ --- title: Validate Stackable Discounts (client-side) type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: validate-stacked-discounts-client-side parentDoc: 639ba2658407100061f5fab5 hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md index c66eb0b28..cde23c76f 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md @@ -1,8 +1,8 @@ --- title: Validate Stackable Discounts type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: validate-stacked-discounts parentDoc: 639ba2658407100061f5fab5 hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/Stacking-API-Overview.md b/docs/reference-docs/Stacking-API-Overview.md index d891f0fdb..f08a23c6c 100644 --- a/docs/reference-docs/Stacking-API-Overview.md +++ b/docs/reference-docs/Stacking-API-Overview.md @@ -1,11 +1,12 @@ --- title: Stacking API Overview -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab5 +parentDocSlug: stackable-discounts-api slug: stacking-api-overview type: link hidden: false order: 1 link_url: https://docs.voucherify.io/docs/manage-stackable-discounts ---- \ No newline at end of file +--- diff --git a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md index d5214bae4..8823c204b 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md @@ -1,8 +1,8 @@ --- title: Create Validation Rules type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-validation-rules parentDoc: 639ba2658407100061f5fabb hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md index d6afef8b5..766dc4499 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md @@ -1,8 +1,8 @@ --- title: Create Validation Rules Assignments type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-validation-rule-assignment parentDoc: 639ba2658407100061f5fabb hidden: false @@ -12,4 +12,4 @@ order: 8 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md index 2eee5fdaa..193f5b5b2 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md @@ -1,8 +1,8 @@ --- title: Delete Validation Rule Assignment type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-validation-rule-assignment parentDoc: 639ba2658407100061f5fabb hidden: false @@ -12,4 +12,4 @@ order: 9 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md index 30474a13d..d715c6673 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md @@ -1,8 +1,8 @@ --- title: Delete Validation Rule type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-validation-rules parentDoc: 639ba2658407100061f5fabb hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md index 3093570e1..67b8fce8f 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md @@ -1,8 +1,8 @@ --- title: Get Validation Rule type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-validation-rule parentDoc: 639ba2658407100061f5fabb hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md index 77f0295af..daf2c5c7f 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md @@ -1,8 +1,8 @@ --- title: List Validation Rule Assignments type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-validation-rule-assignments parentDoc: 639ba2658407100061f5fabb hidden: false @@ -12,4 +12,4 @@ order: 7 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md index bd59e7487..7ad751ccd 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md @@ -1,8 +1,8 @@ --- title: List Validation Rules' Assignment(s) type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-validation-rules-assignments parentDoc: 639ba2658407100061f5fabb hidden: false @@ -12,4 +12,4 @@ order: 6 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md index 4b77ae569..742479a03 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md @@ -1,8 +1,8 @@ --- title: List Validation Rules type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-validation-rules parentDoc: 639ba2658407100061f5fabb hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md index 887db56ba..36eb35364 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md @@ -1,8 +1,8 @@ --- title: Update Validation Rule type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-validation-rule parentDoc: 639ba2658407100061f5fabb hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md index 5e3ca0488..ec0e39575 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md @@ -1,8 +1,8 @@ --- title: Validation Rule Assignment Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fabb slug: validation-rule-assignment-object hidden: false @@ -22,4 +22,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md index d0b42a197..71fbc75eb 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md @@ -1,8 +1,8 @@ --- title: Validation Rule Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fabb slug: validation-rule-object hidden: false @@ -26,4 +26,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md b/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md index a5652a22a..0382cdb96 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md @@ -1,8 +1,8 @@ --- title: Validate Promotion Tier [Deprecated] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: validate-promotion-tier parentDoc: 639ba2658407100061f5fab3 hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md b/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md index 0b6492f80..2812c523b 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md @@ -1,8 +1,8 @@ --- title: Validate Promotions [Deprecated] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: validate-promotions parentDoc: 639ba2658407100061f5fab3 hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md index 18b28cc95..5640f0236 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md @@ -1,8 +1,8 @@ --- title: Validate Voucher (client-side) [Deprecated] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: validate-voucher-client-side parentDoc: 639ba2658407100061f5fab3 hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md index 910e7a1f3..0dd68111f 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md @@ -1,8 +1,8 @@ --- title: Validate Voucher [Deprecated] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: validate-voucher parentDoc: 639ba2658407100061f5fab3 hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VALIDATIONS-API-Validation-Object.md b/docs/reference-docs/VALIDATIONS-API-Validation-Object.md index f70b18f74..a26ed7aa8 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validation-Object.md +++ b/docs/reference-docs/VALIDATIONS-API-Validation-Object.md @@ -1,8 +1,8 @@ --- title: Validation Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab3 slug: validation-object hidden: false @@ -13,4 +13,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md b/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md index 32ada93bc..f15a91d74 100644 --- a/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md +++ b/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md @@ -1,8 +1,8 @@ --- title: Add or Remove Gift Card Balance type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: add-remove-gift-voucher-balance parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 9 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Create-Voucher.md b/docs/reference-docs/VOUCHERS-API-Create-Voucher.md index 570623b7e..d2b75236a 100644 --- a/docs/reference-docs/VOUCHERS-API-Create-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Create-Voucher.md @@ -1,8 +1,8 @@ --- title: Create Voucher type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: create-voucher parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 3 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md b/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md index 9d1fd827c..54c0e3a4c 100644 --- a/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md @@ -1,8 +1,8 @@ --- title: Delete Voucher type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: delete-voucher parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 6 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md b/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md index b8c286393..6ace3cada 100644 --- a/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md @@ -1,8 +1,8 @@ --- title: Disable Voucher type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: disable-voucher parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 8 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md b/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md index 57c2c8bb2..cc43af8f6 100644 --- a/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md @@ -1,8 +1,8 @@ --- title: Enable Voucher type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: enable-voucher parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 7 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md b/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md index 2a28ae076..69588e28a 100644 --- a/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md +++ b/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md @@ -1,8 +1,8 @@ --- title: Examine Qualification [Deprecated] type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: examine-vouchers-qualification parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 14 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md b/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md index 4c049c0e2..b95178ab4 100644 --- a/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md +++ b/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md @@ -1,8 +1,8 @@ --- title: Export Gift Card Transactions type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: export-gift-card-transactions parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 11 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md b/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md index d60667231..a872b6c5e 100644 --- a/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md +++ b/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md @@ -1,8 +1,8 @@ --- title: Generate Random Code type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: generate-random-code parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 4 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Get-Voucher.md b/docs/reference-docs/VOUCHERS-API-Get-Voucher.md index 20f92cf8c..1a043b9b7 100644 --- a/docs/reference-docs/VOUCHERS-API-Get-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Get-Voucher.md @@ -1,8 +1,8 @@ --- title: Get Voucher type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: get-voucher parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 2 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md b/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md index 1e734f37d..0f6eff29b 100644 --- a/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md +++ b/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md @@ -1,8 +1,8 @@ --- title: Import Vouchers using CSV type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: import-vouchers-using-csv parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 13 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md b/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md index f1f7fa6db..9af30b696 100644 --- a/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md +++ b/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md @@ -1,8 +1,8 @@ --- title: Import Vouchers type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: import-vouchers parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 12 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md b/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md index 7e9715dc4..e7fa7d5b7 100644 --- a/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md +++ b/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md @@ -1,8 +1,8 @@ --- title: List Gift Card Transactions type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-gift-card-transactions parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 10 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-List-Vouchers.md b/docs/reference-docs/VOUCHERS-API-List-Vouchers.md index ed1b7920c..cb02a28f6 100644 --- a/docs/reference-docs/VOUCHERS-API-List-Vouchers.md +++ b/docs/reference-docs/VOUCHERS-API-List-Vouchers.md @@ -1,8 +1,8 @@ --- title: List Vouchers type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: list-vouchers parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md b/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md index 9eaa5c102..8d02492db 100644 --- a/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md +++ b/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md @@ -1,8 +1,8 @@ --- title: Release Validation Session type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: release-validation-session parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 17 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Update-Voucher.md b/docs/reference-docs/VOUCHERS-API-Update-Voucher.md index a2310ac60..508ffd04b 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Voucher.md @@ -1,8 +1,8 @@ --- title: Update Voucher type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-voucher parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 5 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md index a591c568b..eb6d0196a 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md @@ -1,8 +1,8 @@ --- title: Update Vouchers in bulk type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-vouchers-in-bulk parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 15 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md index e7a407847..8771c8b32 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md @@ -1,8 +1,8 @@ --- title: Update Vouchers' metadata in bulk type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api slug: update-vouchers-metadata-in-bulk parentDoc: 639ba2658407100061f5faae hidden: false @@ -12,4 +12,4 @@ order: 16 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/VOUCHERS-API-Voucher-Object.md b/docs/reference-docs/VOUCHERS-API-Voucher-Object.md index 8549ec619..8c2e07e25 100644 --- a/docs/reference-docs/VOUCHERS-API-Voucher-Object.md +++ b/docs/reference-docs/VOUCHERS-API-Voucher-Object.md @@ -1,8 +1,8 @@ --- title: Voucher Object type: endpoint -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5faae slug: voucher-object hidden: false @@ -86,4 +86,4 @@ order: 1 { "html": "" } -[/block] \ No newline at end of file +[/block] diff --git a/docs/reference-docs/Validation-Session.md b/docs/reference-docs/Validation-Session.md index 42225ccd1..bd7408fde 100644 --- a/docs/reference-docs/Validation-Session.md +++ b/docs/reference-docs/Validation-Session.md @@ -1,8 +1,9 @@ --- title: Establish Validation Session -category: 639ba2628407100061f5faac -category-slug: voucherify-api +category: 639ba2628407100061f5faac +categorySlug: voucherify-api parentDoc: 639ba2658407100061f5fab3 +parentDocSlug: validations-api slug: validation-session type: link hidden: false diff --git a/docs/reference-docs/Versioning.md b/docs/reference-docs/Versioning.md index d2f4adcc0..27d4cce5c 100644 --- a/docs/reference-docs/Versioning.md +++ b/docs/reference-docs/Versioning.md @@ -1,8 +1,8 @@ --- title: Versioning excerpt: What is the latest version? -category: 639ba44d204cb60020b4b7ec -category-slug: introduction +category: 639ba44d204cb60020b4b7ec +categorySlug: introduction slug: versioning type: basic hidden: false @@ -26,4 +26,4 @@ curl -X GET \ ## API Upgrades -Keep track of changes and [upgrades to the Voucherify API](doc:api-version-upgrades). If you need help, talk to [support](https://www.voucherify.io/contact-support) or write to us on our [Slack channel](https://www.voucherify.io/community). \ No newline at end of file +Keep track of changes and [upgrades to the Voucherify API](doc:api-version-upgrades). If you need help, talk to [support](https://www.voucherify.io/contact-support) or write to us on our [Slack channel](https://www.voucherify.io/community). diff --git a/docs/script/index.js b/docs/script/index.js index edc5d97ee..3559ebdb4 100644 --- a/docs/script/index.js +++ b/docs/script/index.js @@ -33,8 +33,8 @@ const main = async () => { for (const pathToFile of pathsToFiles) { const data = await fsPromises.readFile(pathToFile, { encoding: "utf8" }); const fileCategorySlug = data - .match(/category\-slug: .*/)?.[0] - ?.split?.("category-slug: ")?.[1]; + .match(/categorySlug: .*/)?.[0] + ?.split?.("categorySlug: ")?.[1]; if (!fileCategorySlug) { console.log(`error, ${fileCategorySlug}, ${pathToFile}`); continue; @@ -66,6 +66,7 @@ const main = async () => { const allowedMissing = [ "establish-validation-session", "stacking-api-overview", + "validation-session", ]; if (allowedMissing.includes(docSlug)) { } else if (!parentDoc?._id) { diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 285398b92..40c61670b 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -43583,7 +43583,7 @@ }, "/v1/vouchers/importCSV": { "post": { - "operationId": "post-vouchers-importCSV", + "operationId": "import-vouchers-using-csv", "tags": [ "VOUCHERS API" ], @@ -44320,7 +44320,7 @@ } ], "delete": { - "operationId": "delete-vouchers-code-sessions-sessionKey", + "operationId": "release-validation-session", "tags": [ "VOUCHERS API" ], @@ -54671,7 +54671,7 @@ } ], "post": { - "operationId": "post-promotions-tiers-tierId-validation", + "operationId": "validate-promotion-tier", "deprecated": true, "tags": [ "VALIDATIONS API" From edbbef0c911118cc7ae8b57ffaeec55e5d43dd1c Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:37:03 +0200 Subject: [PATCH 47/62] Update index.js --- docs/script/index.js | 50 +++++++++++++++++++++++++++++--------------- 1 file changed, 33 insertions(+), 17 deletions(-) diff --git a/docs/script/index.js b/docs/script/index.js index 3559ebdb4..fde22fdba 100644 --- a/docs/script/index.js +++ b/docs/script/index.js @@ -45,13 +45,19 @@ const main = async () => { (a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime() )?.[0]; + if (!category) { + console.log(`error, ${fileCategorySlug}, ${category}, ${pathToFile}`); + continue; + } + const categorySlug = category.slug; + //handling reference-docs aka. "parentDoc: id" const replaceParentDoc = { old: "", new: "" }; - const parentDoc = data + const parentDocFile = data .match(/parentDoc: .*/)?.[0] ?.split?.("parentDoc: ")?.[1]; - if (parentDoc) { + if (parentDocFile) { if (!docsForCategories.get(categorySlug)) { docsForCategories.set( categorySlug, @@ -60,33 +66,43 @@ const main = async () => { } const docsForCategory = docsForCategories.get(categorySlug); const docSlug = data.match(/\nslug: .*/)?.[0]?.split?.("slug: ")?.[1]; - const parentDoc = docsForCategory.find((categoryDocs) => - categoryDocs.children.find((doc) => doc.slug === docSlug) - ); const allowedMissing = [ "establish-validation-session", "stacking-api-overview", "validation-session", ]; if (allowedMissing.includes(docSlug)) { - } else if (!parentDoc?._id) { - console.log(`error, ${parentDoc}, ${docSlug}, ${pathToFile}`); - console.log(JSON.stringify(docsForCategory)); - throw new Error("Missing parentDoc or parentDoc._id"); + const parentDocSlug = data + .match(/parentDocSlug: .*/)?.[0] + ?.split?.("parentDocSlug: ")?.[1]; + if (!parentDocSlug) { + console.log(`error! parentDocSlug was not provided in ${pathToFile}`); + throw new Error("Missing parentDocSlug"); + } + const parentDoc = docsForCategory.find( + (categoryDoc) => categoryDoc.slug === parentDocSlug + ); + if (!parentDoc) { + console.log(`error, ${parentDocSlug}, ${docSlug}, ${pathToFile}`); + throw new Error("parentDoc not found"); + } + replaceParentDoc.old = `parentDoc: ${parentDocFile}`; + replaceParentDoc.new = `parentDoc: ${parentDoc._id}`; } else { - replaceParentDoc.old = `parentDoc: ${parentDoc}`; + const parentDoc = docsForCategory.find((categoryDocs) => + categoryDocs.children.find((doc) => doc.slug === docSlug) + ); + if (!parentDoc?._id) { + console.log(`error, ${parentDocFile}, ${docSlug}, ${pathToFile}`); + console.log(JSON.stringify(docsForCategory)); + throw new Error("Missing parentDoc or parentDoc._id"); + } + replaceParentDoc.old = `parentDoc: ${parentDocFile}`; replaceParentDoc.new = `parentDoc: ${parentDoc._id}`; } console.log("ok"); } - if (!category) { - console.log( - `error, ${categorySlug}, ${fileCategorySlug}, ${category}, ${pathToFile}` - ); - continue; - } - //folders that output data will be present const folders = pathToFile .replace(basePath, "") From 891f9d918c4e3221c4758619056cea41cee5852c Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:49:34 +0200 Subject: [PATCH 48/62] parentDoc -> parentDocSlug --- .../ASYNC-ACTIONS-API-Async-Action-Object.md | 2 +- .../reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md | 2 +- .../ASYNC-ACTIONS-API-List-Async-Actions.md | 2 +- ...GNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md | 2 +- .../CAMPAIGNS-API-Add-Vouchers-To-Campaign.md | 2 +- docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md | 2 +- docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md | 2 +- docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md | 2 +- docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md | 2 +- docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md | 2 +- .../CAMPAIGNS-API-Examine-Qualification.md | 2 +- docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md | 2 +- ...AMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md | 2 +- .../CAMPAIGNS-API-Import-Vouchers-To-Campaign.md | 2 +- docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md | 2 +- docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md | 2 +- docs/reference-docs/CATEGORIES-API-Category-Object.md | 2 +- docs/reference-docs/CATEGORIES-API-Create-Category.md | 2 +- docs/reference-docs/CATEGORIES-API-Delete-Category.md | 2 +- docs/reference-docs/CATEGORIES-API-Get-Category.md | 2 +- docs/reference-docs/CATEGORIES-API-List-Categories.md | 2 +- docs/reference-docs/CATEGORIES-API-Update-Category.md | 2 +- docs/reference-docs/CONSENTS-API-Consents-Object.md | 2 +- .../CONSENTS-API-List-Consents-Client-Side.md | 2 +- docs/reference-docs/CONSENTS-API-List-Consents.md | 2 +- docs/reference-docs/CUSTOMERS-API-Create-Customer.md | 2 +- .../CUSTOMERS-API-Customer-Activity-Object.md | 2 +- docs/reference-docs/CUSTOMERS-API-Customer-Object.md | 2 +- .../CUSTOMERS-API-Delete-Customer-Permanently.md | 2 +- docs/reference-docs/CUSTOMERS-API-Get-Customer.md | 2 +- .../CUSTOMERS-API-Import-Customers-Using-CSV.md | 2 +- .../CUSTOMERS-API-List-Customer-Activities.md | 2 +- .../CUSTOMERS-API-List-Customer-Segments.md | 2 +- docs/reference-docs/CUSTOMERS-API-List-Customers.md | 2 +- .../CUSTOMERS-API-Update-Customer-Consents.md | 2 +- docs/reference-docs/CUSTOMERS-API-Update-Customer.md | 2 +- ...USTOMERS-API-Update-Customers-Consents-Client-Side.md | 2 +- .../CUSTOMERS-API-Update-Customers-In-Bulk.md | 2 +- .../CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md | 2 +- docs/reference-docs/CUSTOMES-API-Delete-Customer.md | 2 +- docs/reference-docs/EVENTS-API-Custom-Event-Object.md | 2 +- .../EVENTS-API-Track-Custom-Event-Client-Side.md | 2 +- docs/reference-docs/EVENTS-API-Track-Custom-Event.md | 2 +- docs/reference-docs/EXPORTS-API-Create-Export.md | 2 +- docs/reference-docs/EXPORTS-API-Delete-Export.md | 2 +- docs/reference-docs/EXPORTS-API-Download-Export.md | 2 +- docs/reference-docs/EXPORTS-API-Export-Object.md | 2 +- docs/reference-docs/EXPORTS-API-Get-Export.md | 2 +- docs/reference-docs/EXPORTS-API-List-Exports.md | 2 +- docs/reference-docs/LOCATIONS-API-Get-Location.md | 2 +- docs/reference-docs/LOCATIONS-API-List-Locations.md | 2 +- docs/reference-docs/LOCATIONS-API-Location-Object.md | 2 +- docs/reference-docs/LOYALTIES-API-Add-Member.md | 2 +- ...LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md | 2 +- .../LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md | 2 +- docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md | 2 +- .../LOYALTIES-API-Create-Loyalty-Campaign.md | 2 +- .../LOYALTIES-API-Create-Points-Expiration-Export.md | 2 +- .../LOYALTIES-API-Create-Reward-Assignment.md | 2 +- docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md | 2 +- .../LOYALTIES-API-Delete-Loyalty-Campaign.md | 2 +- .../LOYALTIES-API-Delete-Reward-Assignment.md | 2 +- .../reference-docs/LOYALTIES-API-Disable-Earning-Rule.md | 2 +- docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md | 2 +- docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md | 2 +- .../LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md | 2 +- .../LOYALTIES-API-Export-Loyalty-Card-Transactions.md | 2 +- .../LOYALTIES-API-GET-Reward-Assignment-2.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md | 2 +- .../reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Member-1.md | 2 +- .../LOYALTIES-API-Get-Member-Activities-1.md | 2 +- .../LOYALTIES-API-Get-Member-Activities.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Member.md | 2 +- .../LOYALTIES-API-Get-Points-Expiration.md | 2 +- .../LOYALTIES-API-Get-Reward-Assignment-1.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md | 2 +- docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md | 2 +- .../LOYALTIES-API-List-Loyalty-Campaigns.md | 2 +- .../LOYALTIES-API-List-Loyalty-Card-Transactions-1.md | 2 +- .../LOYALTIES-API-List-Loyalty-Card-Transactions.md | 2 +- .../LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md | 2 +- .../LOYALTIES-API-List-Loyalty-Tier-Rewards.md | 2 +- docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md | 2 +- docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md | 2 +- .../LOYALTIES-API-List-Members-Loyalty-Tier.md | 2 +- docs/reference-docs/LOYALTIES-API-List-Members.md | 2 +- .../LOYALTIES-API-List-Reward-Assignments-1.md | 2 +- .../LOYALTIES-API-List-Reward-Assignments-2.md | 2 +- .../LOYALTIES-API-Loyalty-Campaign-Object.md | 2 +- docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md | 2 +- docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md | 2 +- docs/reference-docs/LOYALTIES-API-Redeem-Reward.md | 2 +- docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md | 2 +- .../LOYALTIES-API-Transfer-Loyalty-Points.md | 2 +- docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md | 2 +- .../LOYALTIES-API-Update-Loyalty-Campaign.md | 2 +- .../LOYALTIES-API-Update-Reward-Assignment-1.md | 2 +- .../METADATA-SCHEMAS-API-Get-Metadata-Schema.md | 2 +- .../METADATA-SCHEMAS-API-List-Metadata-Schemas.md | 2 +- .../METADATA-SCHEMAS-API-Metadata-Schema-Object.md | 2 +- docs/reference-docs/ORDERS-API-Create-Order.md | 2 +- docs/reference-docs/ORDERS-API-Create-Orders-Export.md | 2 +- docs/reference-docs/ORDERS-API-Get-Order.md | 2 +- docs/reference-docs/ORDERS-API-Import-Orders.md | 2 +- docs/reference-docs/ORDERS-API-List-Orders.md | 2 +- docs/reference-docs/ORDERS-API-Order-Object.md | 2 +- docs/reference-docs/ORDERS-API-Update-Order.md | 2 +- .../PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md | 2 +- .../PRODUCT-COLLECTIONS-API-List-Product-Collections.md | 2 +- ...RODUCT-COLLECTIONS-API-List-Products-In-Collection.md | 2 +- .../PRODUCT-COLLECTIONS-API-Product-Collection-Object.md | 2 +- .../PRODUCT-COLLECTIONS-Get-Product-Collection.md | 2 +- docs/reference-docs/PRODUCTS-API-Create-Product.md | 2 +- docs/reference-docs/PRODUCTS-API-Create-SKU.md | 2 +- docs/reference-docs/PRODUCTS-API-Delete-Product.md | 2 +- docs/reference-docs/PRODUCTS-API-Delete-SKU.md | 2 +- docs/reference-docs/PRODUCTS-API-Get-Product.md | 2 +- docs/reference-docs/PRODUCTS-API-Get-SKU.md | 2 +- .../PRODUCTS-API-Import-Products-Using-CSV.md | 2 +- .../reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md | 2 +- docs/reference-docs/PRODUCTS-API-List-Products.md | 2 +- docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md | 2 +- docs/reference-docs/PRODUCTS-API-Product-Object.md | 2 +- docs/reference-docs/PRODUCTS-API-SKU-Object.md | 2 +- docs/reference-docs/PRODUCTS-API-Update-Product.md | 2 +- .../PRODUCTS-API-Update-Products-In-Bulk.md | 2 +- .../PRODUCTS-API-Update-Products-Metadata-In-Bulk.md | 2 +- docs/reference-docs/PRODUCTS-API-Update-SKU.md | 2 +- .../PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md | 2 +- .../PROMOTIONS-API-Create-Promotion-Stack.md | 2 +- .../PROMOTIONS-API-Delete-Promotion-Stack.md | 2 +- .../PROMOTIONS-API-Delete-Promotion-Tier.md | 2 +- .../PROMOTIONS-API-Disable-Promotion-Tier.md | 2 +- .../PROMOTIONS-API-Enable-Promotion-Tier.md | 2 +- .../reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md | 2 +- docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md | 2 +- .../PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md | 2 +- .../PROMOTIONS-API-List-Promotion-Stacks.md | 2 +- .../PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md | 2 +- .../PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md | 2 +- .../PROMOTIONS-API-List-Promotion-Tiers.md | 2 +- .../PROMOTIONS-API-Promotion-Tier-Object.md | 2 +- .../PROMOTIONS-API-Update-Promotion-Stack.md | 2 +- .../PROMOTIONS-API-Update-Promotion-Tier.md | 2 +- .../PUBLICATIONS-API-Create-Publication-1.md | 2 +- .../PUBLICATIONS-API-Create-Publication.md | 2 +- .../reference-docs/PUBLICATIONS-API-List-Publications.md | 2 +- .../PUBLICATIONS-API-Publication-Object.md | 2 +- .../QUALIFICATIONS-API-Check-Eligibility-Client-Side.md | 2 +- .../QUALIFICATIONS-API-Check-Eligibility.md | 2 +- .../QUALIFICATIONS-API-Qualification-Object.md | 2 +- docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md | 2 +- .../REDEMPTIONS-API-Get-Vouchers-Redemptions.md | 2 +- docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md | 2 +- docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md | 2 +- .../REDEMPTIONS-API-Redeem-Voucher-Client-Side.md | 2 +- docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md | 2 +- docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md | 2 +- .../REDEMPTIONS-API-Rollback-Redemption-Object.md | 2 +- .../REDEMPTIONS-API-Rollback-Redemption.md | 2 +- .../REWARDS-API-Create-Reward-Assignment.md | 2 +- docs/reference-docs/REWARDS-API-Create-Reward.md | 2 +- .../REWARDS-API-Delete-Reward-Assignment.md | 2 +- docs/reference-docs/REWARDS-API-Delete-Reward.md | 2 +- docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md | 2 +- docs/reference-docs/REWARDS-API-Get-Reward.md | 2 +- .../REWARDS-API-List-Reward-Assignments.md | 2 +- docs/reference-docs/REWARDS-API-List-Rewards.md | 2 +- .../REWARDS-API-Reward-Assignment-Object.md | 2 +- docs/reference-docs/REWARDS-API-Reward-Object.md | 2 +- .../REWARDS-API-Update-Reward-Assignment.md | 2 +- docs/reference-docs/REWARDS-API-Update-Reward.md | 2 +- docs/reference-docs/SEGMENTS-API-Create-Segment.md | 2 +- .../SEGMENTS-API-Customer-Segment-Object.md | 2 +- docs/reference-docs/SEGMENTS-API-Delete-Segment.md | 2 +- docs/reference-docs/SEGMENTS-API-Get-Segment.md | 2 +- ...SCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md | 2 +- ...STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md | 2 +- ...KABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md | 2 +- ...ACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md | 2 +- ...OUNTS-API-Validate-Stackable-Discounts-Client-Side.md | 2 +- ...ACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md | 2 +- .../VALIDATION-RULES-API-Create-Validation-Rule.md | 2 +- ...TION-RULES-API-Create-Validation-Rules-Assignments.md | 2 +- ...DATION-RULES-API-Delete-Validation-Rule-Assignment.md | 2 +- .../VALIDATION-RULES-API-Delete-Validation-Rule.md | 2 +- .../VALIDATION-RULES-API-Get-Validation-Rule.md | 2 +- ...IDATION-RULES-API-List-Validation-Rule-Assignments.md | 2 +- ...DATION-RULES-API-List-Validation-Rules-Assignments.md | 2 +- .../VALIDATION-RULES-API-List-Validation-Rules.md | 2 +- .../VALIDATION-RULES-API-Update-Validation-Rule.md | 2 +- ...DATION-RULES-API-Validation-Rule-Assignment-Object.md | 2 +- .../VALIDATION-RULES-API-Validation-Rule-Object.md | 2 +- .../VALIDATIONS-API-Validate-Promotion-Tier.md | 2 +- .../VALIDATIONS-API-Validate-Promotions.md | 2 +- .../VALIDATIONS-API-Validate-Voucher-Client-Side.md | 2 +- docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md | 2 +- docs/reference-docs/VALIDATIONS-API-Validation-Object.md | 2 +- .../VOUCHERS-API-Add-Remove-Gift-Card-Balance.md | 2 +- docs/reference-docs/VOUCHERS-API-Create-Voucher.md | 2 +- docs/reference-docs/VOUCHERS-API-Delete-Voucher.md | 2 +- docs/reference-docs/VOUCHERS-API-Disable-Voucher.md | 2 +- docs/reference-docs/VOUCHERS-API-Enable-Voucher.md | 2 +- .../reference-docs/VOUCHERS-API-Examine-Qualification.md | 2 +- .../VOUCHERS-API-Export-Gift-Card-Transactions.md | 2 +- docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md | 2 +- docs/reference-docs/VOUCHERS-API-Get-Voucher.md | 2 +- .../VOUCHERS-API-Import-Vouchers-Using-CSV.md | 2 +- docs/reference-docs/VOUCHERS-API-Import-Vouchers.md | 2 +- .../VOUCHERS-API-List-Gift-Card-Transactions.md | 2 +- docs/reference-docs/VOUCHERS-API-List-Vouchers.md | 2 +- .../VOUCHERS-API-Release-Validation-Session.md | 2 +- docs/reference-docs/VOUCHERS-API-Update-Voucher.md | 2 +- .../VOUCHERS-API-Update-Vouchers-In-Bulk.md | 2 +- .../VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md | 2 +- docs/reference-docs/VOUCHERS-API-Voucher-Object.md | 2 +- docs/script/index.js | 9 +++++++++ 219 files changed, 227 insertions(+), 218 deletions(-) diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md b/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md index 9ce9a15b0..77e0de29e 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md @@ -3,7 +3,7 @@ title: Async Action Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fabf +parentDocSlug: async-actions-api slug: async-action-object hidden: false order: 1 diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md b/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md index d5761d845..cbfad2fcc 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-async-action -parentDoc: 639ba2658407100061f5fabf +parentDocSlug: async-actions-api hidden: false order: 2 --- diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md b/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md index 198eb706a..2c7a2b16a 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-async-actions -parentDoc: 639ba2658407100061f5fabf +parentDocSlug: async-actions-api hidden: false order: 1 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md index 4816764f1..6bb881e2f 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-voucher-with-specific-code-to-campaign -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 7 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md index ea3500bed..6112804a1 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-vouchers-to-campaign -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 6 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md b/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md index 78f4cabe8..3227452ff 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md +++ b/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md @@ -3,7 +3,7 @@ title: Campaign Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api slug: campaign-object hidden: false order: 1 diff --git a/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md index 3637ca99c..a00f40b46 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-campaign -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 3 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md index a1bbcd2fd..3af439cee 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-campaign -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 5 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md index 1e2893e3e..f6cbd6682 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: disable-campaign -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 12 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md index 2ce4f037a..da219c7e2 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: enable-campaign -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 11 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md b/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md index 40ab27acb..00c90be7f 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md +++ b/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: examine-campaigns-qualification -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 10 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md index 50ffa4acb..e516f18ea 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-campaign -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 2 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md index 7769e7c76..22bc785ab 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md +++ b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-vouchers-to-campaign-using-csv -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 9 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md index 00a966323..f1ad06953 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-vouchers-to-campaign -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 8 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md b/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md index 7a678f40f..68293b1d4 100644 --- a/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md +++ b/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-campaigns -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 1 --- diff --git a/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md index 34c5f98b7..9140e32c2 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-campaign -parentDoc: 639ba2658407100061f5faaf +parentDocSlug: campaigns-api hidden: false order: 4 --- diff --git a/docs/reference-docs/CATEGORIES-API-Category-Object.md b/docs/reference-docs/CATEGORIES-API-Category-Object.md index 014261d07..2ebe872f9 100644 --- a/docs/reference-docs/CATEGORIES-API-Category-Object.md +++ b/docs/reference-docs/CATEGORIES-API-Category-Object.md @@ -3,7 +3,7 @@ title: Category Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fac1 +parentDocSlug: categories-api slug: category-object hidden: false order: 1 diff --git a/docs/reference-docs/CATEGORIES-API-Create-Category.md b/docs/reference-docs/CATEGORIES-API-Create-Category.md index 64f6dd03e..f5322ba23 100644 --- a/docs/reference-docs/CATEGORIES-API-Create-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Create-Category.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-category -parentDoc: 639ba2658407100061f5fac1 +parentDocSlug: categories-api hidden: false order: 3 --- diff --git a/docs/reference-docs/CATEGORIES-API-Delete-Category.md b/docs/reference-docs/CATEGORIES-API-Delete-Category.md index 824f358f5..2fb1fe53a 100644 --- a/docs/reference-docs/CATEGORIES-API-Delete-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Delete-Category.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-category -parentDoc: 639ba2658407100061f5fac1 +parentDocSlug: categories-api hidden: false order: 5 --- diff --git a/docs/reference-docs/CATEGORIES-API-Get-Category.md b/docs/reference-docs/CATEGORIES-API-Get-Category.md index 0996ee4d8..ae03a7811 100644 --- a/docs/reference-docs/CATEGORIES-API-Get-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Get-Category.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-category -parentDoc: 639ba2658407100061f5fac1 +parentDocSlug: categories-api hidden: false order: 2 --- diff --git a/docs/reference-docs/CATEGORIES-API-List-Categories.md b/docs/reference-docs/CATEGORIES-API-List-Categories.md index 2d6cfc3bb..176a7de2f 100644 --- a/docs/reference-docs/CATEGORIES-API-List-Categories.md +++ b/docs/reference-docs/CATEGORIES-API-List-Categories.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-categories -parentDoc: 639ba2658407100061f5fac1 +parentDocSlug: categories-api hidden: false order: 1 --- diff --git a/docs/reference-docs/CATEGORIES-API-Update-Category.md b/docs/reference-docs/CATEGORIES-API-Update-Category.md index d34c7a110..68a090a57 100644 --- a/docs/reference-docs/CATEGORIES-API-Update-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Update-Category.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-category -parentDoc: 639ba2658407100061f5fac1 +parentDocSlug: categories-api hidden: false order: 4 --- diff --git a/docs/reference-docs/CONSENTS-API-Consents-Object.md b/docs/reference-docs/CONSENTS-API-Consents-Object.md index 58b8a0423..b161d1797 100644 --- a/docs/reference-docs/CONSENTS-API-Consents-Object.md +++ b/docs/reference-docs/CONSENTS-API-Consents-Object.md @@ -3,7 +3,7 @@ title: Consents Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fabe +parentDocSlug: consents-api slug: consents-object hidden: false order: 1 diff --git a/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md b/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md index 7f8d0be51..de33e7af3 100644 --- a/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md +++ b/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-consents-client-side -parentDoc: 639ba2658407100061f5fabe +parentDocSlug: consents-api hidden: false order: 2 --- diff --git a/docs/reference-docs/CONSENTS-API-List-Consents.md b/docs/reference-docs/CONSENTS-API-List-Consents.md index a0b647224..d181bcb31 100644 --- a/docs/reference-docs/CONSENTS-API-List-Consents.md +++ b/docs/reference-docs/CONSENTS-API-List-Consents.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-consents -parentDoc: 639ba2658407100061f5fabe +parentDocSlug: consents-api hidden: false order: 1 --- diff --git a/docs/reference-docs/CUSTOMERS-API-Create-Customer.md b/docs/reference-docs/CUSTOMERS-API-Create-Customer.md index 32781c0f5..fb362c325 100644 --- a/docs/reference-docs/CUSTOMERS-API-Create-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Create-Customer.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-customer -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 5 --- diff --git a/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md b/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md index ef3988bb2..55746efc1 100644 --- a/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md +++ b/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md @@ -3,7 +3,7 @@ title: Customer Activity Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api slug: customer-activity-object hidden: false order: 1 diff --git a/docs/reference-docs/CUSTOMERS-API-Customer-Object.md b/docs/reference-docs/CUSTOMERS-API-Customer-Object.md index d59e66036..01ef6d1a2 100644 --- a/docs/reference-docs/CUSTOMERS-API-Customer-Object.md +++ b/docs/reference-docs/CUSTOMERS-API-Customer-Object.md @@ -3,7 +3,7 @@ title: Customer Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api slug: customer-object hidden: false order: 1 diff --git a/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md b/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md index 18549df08..47677cadc 100644 --- a/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md +++ b/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-customer-permanently -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 10 --- diff --git a/docs/reference-docs/CUSTOMERS-API-Get-Customer.md b/docs/reference-docs/CUSTOMERS-API-Get-Customer.md index e2e29f634..607110e1c 100644 --- a/docs/reference-docs/CUSTOMERS-API-Get-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Get-Customer.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-customer -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 2 --- diff --git a/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md b/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md index 1967c132f..e21ff196b 100644 --- a/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md +++ b/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-customers-using-csv -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 6 --- diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md b/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md index d41a4152b..f34fb0c41 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-customer-activities -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 3 --- diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md b/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md index c42d20540..167f8672a 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-customer-segments -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 4 --- diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customers.md b/docs/reference-docs/CUSTOMERS-API-List-Customers.md index 545cef35d..78903e7f9 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customers.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customers.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-customers -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 1 --- diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md b/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md index db3a2a43e..cf7aeb928 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-customers-consents -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 8 --- diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customer.md b/docs/reference-docs/CUSTOMERS-API-Update-Customer.md index 0e0942df4..4d2c5e0c6 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customer.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-customer -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 7 --- diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md index edc8f4d8f..1a74eed0c 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-customers-consents-client-side -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 9 --- diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md index 4402a30e3..acd382fd5 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-customers-in-bulk -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 10 --- diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md index 5dc3d1b94..86150caf8 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-customers-metadata-in-bulk -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 11 --- diff --git a/docs/reference-docs/CUSTOMES-API-Delete-Customer.md b/docs/reference-docs/CUSTOMES-API-Delete-Customer.md index e94f12b76..d152df2a3 100644 --- a/docs/reference-docs/CUSTOMES-API-Delete-Customer.md +++ b/docs/reference-docs/CUSTOMES-API-Delete-Customer.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-customer -parentDoc: 639ba2658407100061f5fab7 +parentDocSlug: customers-api hidden: false order: 9 --- diff --git a/docs/reference-docs/EVENTS-API-Custom-Event-Object.md b/docs/reference-docs/EVENTS-API-Custom-Event-Object.md index 2da951b4e..a2b1d43f2 100644 --- a/docs/reference-docs/EVENTS-API-Custom-Event-Object.md +++ b/docs/reference-docs/EVENTS-API-Custom-Event-Object.md @@ -3,7 +3,7 @@ title: Custom Event Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fabd +parentDocSlug: events-api slug: custom-event-object hidden: false order: 1 diff --git a/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md b/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md index d30e2b6fc..d99f1d29a 100644 --- a/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md +++ b/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: track-custom-event-client-side -parentDoc: 639ba2658407100061f5fabd +parentDocSlug: events-api hidden: false order: 2 --- diff --git a/docs/reference-docs/EVENTS-API-Track-Custom-Event.md b/docs/reference-docs/EVENTS-API-Track-Custom-Event.md index 8d7e64b89..bc9178a8e 100644 --- a/docs/reference-docs/EVENTS-API-Track-Custom-Event.md +++ b/docs/reference-docs/EVENTS-API-Track-Custom-Event.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: track-custom-event -parentDoc: 639ba2658407100061f5fabd +parentDocSlug: events-api hidden: false order: 1 --- diff --git a/docs/reference-docs/EXPORTS-API-Create-Export.md b/docs/reference-docs/EXPORTS-API-Create-Export.md index 1d590db67..093a82f10 100644 --- a/docs/reference-docs/EXPORTS-API-Create-Export.md +++ b/docs/reference-docs/EXPORTS-API-Create-Export.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-export -parentDoc: 639ba2658407100061f5fac0 +parentDocSlug: exports-api hidden: false order: 4 --- diff --git a/docs/reference-docs/EXPORTS-API-Delete-Export.md b/docs/reference-docs/EXPORTS-API-Delete-Export.md index 8252a0e2d..607c8d667 100644 --- a/docs/reference-docs/EXPORTS-API-Delete-Export.md +++ b/docs/reference-docs/EXPORTS-API-Delete-Export.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-export -parentDoc: 639ba2658407100061f5fac0 +parentDocSlug: exports-api hidden: false order: 5 --- diff --git a/docs/reference-docs/EXPORTS-API-Download-Export.md b/docs/reference-docs/EXPORTS-API-Download-Export.md index 7fa8ad9b4..4980f88a5 100644 --- a/docs/reference-docs/EXPORTS-API-Download-Export.md +++ b/docs/reference-docs/EXPORTS-API-Download-Export.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: download-export -parentDoc: 639ba2658407100061f5fac0 +parentDocSlug: exports-api hidden: false order: 3 --- diff --git a/docs/reference-docs/EXPORTS-API-Export-Object.md b/docs/reference-docs/EXPORTS-API-Export-Object.md index 21de53459..836b68d6a 100644 --- a/docs/reference-docs/EXPORTS-API-Export-Object.md +++ b/docs/reference-docs/EXPORTS-API-Export-Object.md @@ -3,7 +3,7 @@ title: Export Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fac0 +parentDocSlug: exports-api slug: export-object hidden: false order: 1 diff --git a/docs/reference-docs/EXPORTS-API-Get-Export.md b/docs/reference-docs/EXPORTS-API-Get-Export.md index f7556f963..2bb3eee6b 100644 --- a/docs/reference-docs/EXPORTS-API-Get-Export.md +++ b/docs/reference-docs/EXPORTS-API-Get-Export.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-export -parentDoc: 639ba2658407100061f5fac0 +parentDocSlug: exports-api hidden: false order: 2 --- diff --git a/docs/reference-docs/EXPORTS-API-List-Exports.md b/docs/reference-docs/EXPORTS-API-List-Exports.md index 08a292475..74ee59de1 100644 --- a/docs/reference-docs/EXPORTS-API-List-Exports.md +++ b/docs/reference-docs/EXPORTS-API-List-Exports.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-exports -parentDoc: 639ba2658407100061f5fac0 +parentDocSlug: exports-api hidden: false order: 1 --- diff --git a/docs/reference-docs/LOCATIONS-API-Get-Location.md b/docs/reference-docs/LOCATIONS-API-Get-Location.md index 3f15f4fe2..44e35535b 100644 --- a/docs/reference-docs/LOCATIONS-API-Get-Location.md +++ b/docs/reference-docs/LOCATIONS-API-Get-Location.md @@ -3,7 +3,7 @@ title: Get Location type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 64d0e09b5a917a1254315da7 +parentDocSlug: locations-api slug: get-location hidden: false order: 3 diff --git a/docs/reference-docs/LOCATIONS-API-List-Locations.md b/docs/reference-docs/LOCATIONS-API-List-Locations.md index 28fe1a2cb..815359955 100644 --- a/docs/reference-docs/LOCATIONS-API-List-Locations.md +++ b/docs/reference-docs/LOCATIONS-API-List-Locations.md @@ -3,7 +3,7 @@ title: List Locations type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 64d0e09b5a917a1254315da7 +parentDocSlug: locations-api slug: list-locations hidden: false order: 2 diff --git a/docs/reference-docs/LOCATIONS-API-Location-Object.md b/docs/reference-docs/LOCATIONS-API-Location-Object.md index 4e314a2cd..19bc1ae60 100644 --- a/docs/reference-docs/LOCATIONS-API-Location-Object.md +++ b/docs/reference-docs/LOCATIONS-API-Location-Object.md @@ -3,7 +3,7 @@ title: Location Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 64d0e09b5a917a1254315da7 +parentDocSlug: locations-api slug: location-object hidden: false order: 1 diff --git a/docs/reference-docs/LOYALTIES-API-Add-Member.md b/docs/reference-docs/LOYALTIES-API-Add-Member.md index a5d7461f9..589ccb02b 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Member.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Member.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-member -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 9 --- diff --git a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md index 35f574cc7..3bd0b3493 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-remove-loyalty-card-balance-1 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 13 --- diff --git a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md index 93cf6b783..25c018a0f 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-remove-loyalty-card-balance -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 12 --- diff --git a/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md index 42c4807a2..72d34b6ae 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-earning-rule -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 23 --- diff --git a/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md index 4645bb4da..2dbbec4f4 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-loyalty-program -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 3 --- diff --git a/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md b/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md index e325fe0ce..f541007f0 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-points-expiration-export -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 20 --- diff --git a/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md b/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md index 5ec6a6965..e7635462b 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-reward-assignment-1 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 36 --- diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md index 6847caed3..4f15776e9 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-earning-rule -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 25 --- diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md index 97bbe4831..23a62e786 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-loyalty-program -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 5 --- diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md b/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md index cbf511ffb..e20579dbc 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-reward-assignment-1 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 38 --- diff --git a/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md index fc193127a..dd0c8b42b 100644 --- a/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: disable-earning-rule -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 27 --- diff --git a/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md b/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md index 722f439d9..1f6c69437 100644 --- a/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md @@ -3,7 +3,7 @@ title: Earning Rule Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api slug: earning-rule-object hidden: false order: 4 diff --git a/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md index 9e3a5eca5..3ab836f88 100644 --- a/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: enable-earning-rule -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 26 --- diff --git a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md index 4c3009900..396db9045 100644 --- a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md +++ b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: export-loyalty-card-transactions-1 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 17 --- diff --git a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md index 94443a65f..f2ae209d1 100644 --- a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md +++ b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: export-loyalty-card-transactions -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 18 --- diff --git a/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md b/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md index cd018f98f..43c8f2e82 100644 --- a/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md +++ b/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-reward-assignment-2 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 35 --- diff --git a/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md index bf25a1f50..341fad646 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-earning-rule -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 22 --- diff --git a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md index a5ceea2ce..006d457b9 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-loyalty-program -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 2 --- diff --git a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md index e238693ee..253051c23 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-loyalty-tier -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 40 --- diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-1.md b/docs/reference-docs/LOYALTIES-API-Get-Member-1.md index 23700839a..3e2b03d37 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-1.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-member-1 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 8 --- diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md index a06fddbce..887866527 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-member-activities-1 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 11 --- diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md index 82bf71533..40be2dba6 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-member-activities -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 10 --- diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member.md b/docs/reference-docs/LOYALTIES-API-Get-Member.md index b73885596..9d67c8c3f 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-member -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 7 --- diff --git a/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md b/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md index 4591892bb..9c573dd26 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-points-expiration -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 19 --- diff --git a/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md b/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md index 62acda1fa..0371a6ba1 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-reward-assignment-1 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 34 --- diff --git a/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md b/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md index 199670cfe..4cdc5cd5b 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-reward-details -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 29 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md b/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md index c9cabf1f8..fdc69fe0e 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md +++ b/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-earning-rules -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 21 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md index c74192883..47b4345ca 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-programs -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 1 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md index 1530876ee..0628f9d35 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-card-transactions-1 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 15 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md index 09e2b26be..330d727ed 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-card-transactions -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 16 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md index b351573e0..726eb4bda 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-tier-earning-rules -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 42 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md index 8724b8fa4..49300080b 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-tier-rewards -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 43 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md index 29e0eb5b4..837a510df 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-tiers -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 39 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md b/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md index ae4893e69..a38b545be 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md +++ b/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-member-rewards -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 28 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md b/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md index 759f46e75..d714727f6 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md +++ b/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-member-loyalty-tier -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 41 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Members.md b/docs/reference-docs/LOYALTIES-API-List-Members.md index 3329ec3a8..4a162a00f 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Members.md +++ b/docs/reference-docs/LOYALTIES-API-List-Members.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-members -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 6 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md index f9c4b88b7..ebd38f044 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md +++ b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-reward-assignments-1 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 32 --- diff --git a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md index 887786efb..3a509521d 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md +++ b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-reward-assignments-2 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 33 --- diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md index 62ca57247..0fbc306a1 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md @@ -3,7 +3,7 @@ title: Loyalty Campaign Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api slug: loyalty-campaign-object hidden: false order: 1 diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md index 957989eca..9f05cf52d 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md @@ -3,7 +3,7 @@ title: Loyalty Card Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api slug: loyalty-card-object hidden: false order: 2 diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md index beb2f7e7b..664045efc 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md @@ -3,7 +3,7 @@ title: Loyalty Tier Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api slug: loyalty-tier-object hidden: false order: 3 diff --git a/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md b/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md index bf5307eb3..1feb1f3e2 100644 --- a/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md +++ b/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-reward -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 30 --- diff --git a/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md b/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md index e08cee117..d84256f25 100644 --- a/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md +++ b/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-reward-1 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 31 --- diff --git a/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md b/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md index 7770d3956..21ad380f1 100644 --- a/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md +++ b/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: transfer-points -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 14 --- diff --git a/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md index 311be219a..a0c060fce 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-earning-rule -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 24 --- diff --git a/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md index 729713354..a4fd73062 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-loyalty-program -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 4 --- diff --git a/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md b/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md index 61190e9fb..54783e11f 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-reward-assignment-1 -parentDoc: 639ba2658407100061f5fab6 +parentDocSlug: loyalties-api hidden: false order: 37 --- diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md b/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md index 6af58c44b..5088c7a97 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-metadata-schema -parentDoc: 639ba2658407100061f5fac2 +parentDocSlug: metadata-schemas-api hidden: false order: 2 --- diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md b/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md index 794e32aa4..c6b670f6f 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-metadata-schemas -parentDoc: 639ba2658407100061f5fac2 +parentDocSlug: metadata-schemas-api hidden: false order: 1 --- diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md b/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md index 83bb6db21..3ca639754 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md @@ -3,7 +3,7 @@ title: Metadata Schema Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fac2 +parentDocSlug: metadata-schemas-api slug: metadata-schema-object hidden: false order: 1 diff --git a/docs/reference-docs/ORDERS-API-Create-Order.md b/docs/reference-docs/ORDERS-API-Create-Order.md index 43a7426fc..02d8c7e10 100644 --- a/docs/reference-docs/ORDERS-API-Create-Order.md +++ b/docs/reference-docs/ORDERS-API-Create-Order.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-order -parentDoc: 639ba2658407100061f5fab8 +parentDocSlug: orders-api hidden: false order: 3 --- diff --git a/docs/reference-docs/ORDERS-API-Create-Orders-Export.md b/docs/reference-docs/ORDERS-API-Create-Orders-Export.md index 51c7364fa..caf3a7183 100644 --- a/docs/reference-docs/ORDERS-API-Create-Orders-Export.md +++ b/docs/reference-docs/ORDERS-API-Create-Orders-Export.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-order-export -parentDoc: 639ba2658407100061f5fab8 +parentDocSlug: orders-api hidden: false order: 6 --- diff --git a/docs/reference-docs/ORDERS-API-Get-Order.md b/docs/reference-docs/ORDERS-API-Get-Order.md index 96e0ae2b5..c68f88ab5 100644 --- a/docs/reference-docs/ORDERS-API-Get-Order.md +++ b/docs/reference-docs/ORDERS-API-Get-Order.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-order -parentDoc: 639ba2658407100061f5fab8 +parentDocSlug: orders-api hidden: false order: 2 --- diff --git a/docs/reference-docs/ORDERS-API-Import-Orders.md b/docs/reference-docs/ORDERS-API-Import-Orders.md index b87256e92..07757ec53 100644 --- a/docs/reference-docs/ORDERS-API-Import-Orders.md +++ b/docs/reference-docs/ORDERS-API-Import-Orders.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-orders -parentDoc: 639ba2658407100061f5fab8 +parentDocSlug: orders-api hidden: false order: 5 --- diff --git a/docs/reference-docs/ORDERS-API-List-Orders.md b/docs/reference-docs/ORDERS-API-List-Orders.md index ecddeba2f..a63dd02c2 100644 --- a/docs/reference-docs/ORDERS-API-List-Orders.md +++ b/docs/reference-docs/ORDERS-API-List-Orders.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-orders -parentDoc: 639ba2658407100061f5fab8 +parentDocSlug: orders-api hidden: false order: 1 --- diff --git a/docs/reference-docs/ORDERS-API-Order-Object.md b/docs/reference-docs/ORDERS-API-Order-Object.md index 52d8cd479..9775085ac 100644 --- a/docs/reference-docs/ORDERS-API-Order-Object.md +++ b/docs/reference-docs/ORDERS-API-Order-Object.md @@ -3,7 +3,7 @@ title: Order Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab8 +parentDocSlug: orders-api slug: order-object hidden: false order: 1 diff --git a/docs/reference-docs/ORDERS-API-Update-Order.md b/docs/reference-docs/ORDERS-API-Update-Order.md index b121b1637..03252272f 100644 --- a/docs/reference-docs/ORDERS-API-Update-Order.md +++ b/docs/reference-docs/ORDERS-API-Update-Order.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-order -parentDoc: 639ba2658407100061f5fab8 +parentDocSlug: orders-api hidden: false order: 4 --- diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md index 5abfc2ceb..c397df1d9 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-product-collection -parentDoc: 639ba2658407100061f5faba +parentDocSlug: product-collections-api hidden: false order: 4 --- diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md index 8dcbb03a1..849e5d675 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-product-collections -parentDoc: 639ba2658407100061f5faba +parentDocSlug: product-collections-api hidden: false order: 1 --- diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md index 95233099f..f9b4278a8 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-products-in-collection -parentDoc: 639ba2658407100061f5faba +parentDocSlug: product-collections-api hidden: false order: 3 --- diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md index 19d9a9f08..ab923b344 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md @@ -3,7 +3,7 @@ title: Product Collection Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5faba +parentDocSlug: product-collections-api slug: product-collection-object hidden: false order: 1 diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md index 7f67da08b..8fd12177f 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-product-collection -parentDoc: 639ba2658407100061f5faba +parentDocSlug: product-collections-api hidden: false order: 2 --- diff --git a/docs/reference-docs/PRODUCTS-API-Create-Product.md b/docs/reference-docs/PRODUCTS-API-Create-Product.md index f4297868f..3c58c97fb 100644 --- a/docs/reference-docs/PRODUCTS-API-Create-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Create-Product.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-product -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 3 --- diff --git a/docs/reference-docs/PRODUCTS-API-Create-SKU.md b/docs/reference-docs/PRODUCTS-API-Create-SKU.md index 6aa50a2e7..46a9b96df 100644 --- a/docs/reference-docs/PRODUCTS-API-Create-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Create-SKU.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-sku -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 11 --- diff --git a/docs/reference-docs/PRODUCTS-API-Delete-Product.md b/docs/reference-docs/PRODUCTS-API-Delete-Product.md index 214689c0a..601be3a5a 100644 --- a/docs/reference-docs/PRODUCTS-API-Delete-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Delete-Product.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-product -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 8 --- diff --git a/docs/reference-docs/PRODUCTS-API-Delete-SKU.md b/docs/reference-docs/PRODUCTS-API-Delete-SKU.md index d00fa2b2b..3e5d627ba 100644 --- a/docs/reference-docs/PRODUCTS-API-Delete-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Delete-SKU.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-sku -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 14 --- diff --git a/docs/reference-docs/PRODUCTS-API-Get-Product.md b/docs/reference-docs/PRODUCTS-API-Get-Product.md index 40da2411d..2b3b98a8d 100644 --- a/docs/reference-docs/PRODUCTS-API-Get-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Get-Product.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-product -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 2 --- diff --git a/docs/reference-docs/PRODUCTS-API-Get-SKU.md b/docs/reference-docs/PRODUCTS-API-Get-SKU.md index 9530ce8ba..32a6d4891 100644 --- a/docs/reference-docs/PRODUCTS-API-Get-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Get-SKU.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-sku -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 10 --- diff --git a/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md b/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md index 677f6b6cd..b5be62499 100644 --- a/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md +++ b/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-products-using-csv -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 4 --- diff --git a/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md b/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md index 23ba05752..fb65fe755 100644 --- a/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md +++ b/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-skus-using-csv -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 12 --- diff --git a/docs/reference-docs/PRODUCTS-API-List-Products.md b/docs/reference-docs/PRODUCTS-API-List-Products.md index 3c485ba2f..d065eaed7 100644 --- a/docs/reference-docs/PRODUCTS-API-List-Products.md +++ b/docs/reference-docs/PRODUCTS-API-List-Products.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-products -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 1 --- diff --git a/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md b/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md index 6e2948c41..e5d908ea1 100644 --- a/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md +++ b/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-skus-in-product -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 9 --- diff --git a/docs/reference-docs/PRODUCTS-API-Product-Object.md b/docs/reference-docs/PRODUCTS-API-Product-Object.md index 2ce6128be..9e32f5325 100644 --- a/docs/reference-docs/PRODUCTS-API-Product-Object.md +++ b/docs/reference-docs/PRODUCTS-API-Product-Object.md @@ -3,7 +3,7 @@ title: Product Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api slug: product-object hidden: false order: 1 diff --git a/docs/reference-docs/PRODUCTS-API-SKU-Object.md b/docs/reference-docs/PRODUCTS-API-SKU-Object.md index b7a73eb84..81d7f2ea6 100644 --- a/docs/reference-docs/PRODUCTS-API-SKU-Object.md +++ b/docs/reference-docs/PRODUCTS-API-SKU-Object.md @@ -3,7 +3,7 @@ title: SKU Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api slug: sku-object hidden: false order: 1 diff --git a/docs/reference-docs/PRODUCTS-API-Update-Product.md b/docs/reference-docs/PRODUCTS-API-Update-Product.md index 8549281c4..3e8d843f6 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Product.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-product -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 5 --- diff --git a/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md b/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md index 637eeb3d1..cc4e6aec9 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-products-in-bulk -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 6 --- diff --git a/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md b/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md index 21cd177c4..abefef1f5 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-products-metadata-in-bulk -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 7 --- diff --git a/docs/reference-docs/PRODUCTS-API-Update-SKU.md b/docs/reference-docs/PRODUCTS-API-Update-SKU.md index fa2c6b86a..1d5c662fa 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Update-SKU.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-sku -parentDoc: 639ba2658407100061f5fab9 +parentDocSlug: products-api hidden: false order: 13 --- diff --git a/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md b/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md index d1edcf969..6d04eaade 100644 --- a/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-promotion-tier-to-campaign -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 4 --- diff --git a/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md index faf347177..db1ce1ad7 100644 --- a/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-promotion-stack -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 13 --- diff --git a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md index 7e18877eb..72e958b8f 100644 --- a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-promotion-stack -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 15 --- diff --git a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md index 6daa678ac..7bb006761 100644 --- a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-promotion-tier -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 7 --- diff --git a/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md index c803afd86..8cd219266 100644 --- a/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: disable-promotion-tier -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 9 --- diff --git a/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md index c30f6b98b..988ac1fc2 100644 --- a/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: enable-promotion-tier -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 8 --- diff --git a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md index bb532134e..44ad7b26c 100644 --- a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-promotion-stack -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 12 --- diff --git a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md index ffd02c397..0a69bc0f5 100644 --- a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-promotion-tier -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 5 --- diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md index 784bdba2f..2fdf6e10a 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-promotion-stacks-in-campaign -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 11 --- diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md index ae31735ad..298c99879 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-all-promotion-stacks -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 10 --- diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md index 52172e1b0..733e969ba 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-promotion-tiers-client-side -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 2 --- diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md index 4b216f82b..b654fd848 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-promotion-tiers-from-campaign -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 3 --- diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md index 857329e47..bab484698 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-promotion-tiers -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 1 --- diff --git a/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md b/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md index 5f50cf346..2f2a7f72d 100644 --- a/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md +++ b/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md @@ -3,7 +3,7 @@ title: Promotion Tier Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api slug: promotion-tier-object hidden: false order: 1 diff --git a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md index 5872f52ac..1db8dcf6b 100644 --- a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-promotion-stack -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 14 --- diff --git a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md index 1b355ea07..0106b5bea 100644 --- a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-promotion-tier -parentDoc: 639ba2658407100061f5fab0 +parentDocSlug: promotions-api hidden: false order: 6 --- diff --git a/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md b/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md index df0da47f8..18422530c 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md +++ b/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-publication-1 -parentDoc: 63b58495b5ee6800ab6535dc +parentDocSlug: publications-api hidden: false order: 3 --- diff --git a/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md b/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md index 599240890..705a33094 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md +++ b/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-publication -parentDoc: 63b58495b5ee6800ab6535dc +parentDocSlug: publications-api hidden: false order: 2 --- diff --git a/docs/reference-docs/PUBLICATIONS-API-List-Publications.md b/docs/reference-docs/PUBLICATIONS-API-List-Publications.md index 05fbe1bd2..1d1534c2d 100644 --- a/docs/reference-docs/PUBLICATIONS-API-List-Publications.md +++ b/docs/reference-docs/PUBLICATIONS-API-List-Publications.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-publications -parentDoc: 63b58495b5ee6800ab6535dc +parentDocSlug: publications-api hidden: false order: 1 --- diff --git a/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md b/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md index c8cc7b2e6..c19110c2e 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md +++ b/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md @@ -3,7 +3,7 @@ title: Publication Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 63b58495b5ee6800ab6535dc +parentDocSlug: publications-api slug: publication-object hidden: false order: 1 diff --git a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md index 90cde0dbd..f431e5f63 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md @@ -3,7 +3,7 @@ title: Check Eligibility (client-side) [Beta] type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 64d0e09b5a917a1254315da8 +parentDocSlug: qualifications-api slug: check-eligibility-client-side hidden: false order: 3 diff --git a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md index 317724a54..90a70d561 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md @@ -3,7 +3,7 @@ title: Check Eligibility [Beta] type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 64d0e09b5a917a1254315da8 +parentDocSlug: qualifications-api slug: check-eligibility hidden: false order: 2 diff --git a/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md b/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md index ddb3e654e..e9e06ea4e 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md @@ -3,7 +3,7 @@ title: Qualification Object [Beta] type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 64d0e09b5a917a1254315da8 +parentDocSlug: qualifications-api slug: qualification-object hidden: false order: 1 diff --git a/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md b/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md index 668f22de3..2840784e7 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md +++ b/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-redemption -parentDoc: 639ba2658407100061f5fab4 +parentDocSlug: redemptions-api hidden: false order: 2 --- diff --git a/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md b/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md index 6c728a612..8b3d95f88 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md +++ b/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-voucher-redemptions -parentDoc: 639ba2658407100061f5fab4 +parentDocSlug: redemptions-api hidden: false order: 3 --- diff --git a/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md b/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md index 062a622b6..0e99fb934 100644 --- a/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md +++ b/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-redemptions -parentDoc: 639ba2658407100061f5fab4 +parentDocSlug: redemptions-api hidden: false order: 1 --- diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md index 1ae7aad3f..2a4c702c3 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-promotion -parentDoc: 639ba2658407100061f5fab4 +parentDocSlug: redemptions-api hidden: false order: 7 --- diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md index 469c975e4..dfad707a9 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-voucher-client-side -parentDoc: 639ba2658407100061f5fab4 +parentDocSlug: redemptions-api hidden: false order: 5 --- diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md index ba249702c..c959d74df 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-voucher -parentDoc: 639ba2658407100061f5fab4 +parentDocSlug: redemptions-api hidden: false order: 4 --- diff --git a/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md b/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md index a4c127caa..b0e429c51 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md @@ -3,7 +3,7 @@ title: Redemption Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab4 +parentDocSlug: redemptions-api slug: redemption-object hidden: false order: 1 diff --git a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md index 8c60b43ac..3d58890be 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md +++ b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md @@ -3,7 +3,7 @@ title: Rollback Redemption Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab4 +parentDocSlug: redemptions-api slug: rollback-redemption-object hidden: false order: 1 diff --git a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md index b41bc2b0a..67923e0ef 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md +++ b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: rollback-redemption -parentDoc: 639ba2658407100061f5fab4 +parentDocSlug: redemptions-api hidden: false order: 6 --- diff --git a/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md index 72bdcb02e..891b0d346 100644 --- a/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-reward-assignment -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api hidden: false order: 8 --- diff --git a/docs/reference-docs/REWARDS-API-Create-Reward.md b/docs/reference-docs/REWARDS-API-Create-Reward.md index 59844a567..a6da5ee92 100644 --- a/docs/reference-docs/REWARDS-API-Create-Reward.md +++ b/docs/reference-docs/REWARDS-API-Create-Reward.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-reward -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api hidden: false order: 3 --- diff --git a/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md index f79b54fcc..a145ae6d8 100644 --- a/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-reward-assignment -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api hidden: false order: 10 --- diff --git a/docs/reference-docs/REWARDS-API-Delete-Reward.md b/docs/reference-docs/REWARDS-API-Delete-Reward.md index 62eef6b5c..ec462af0b 100644 --- a/docs/reference-docs/REWARDS-API-Delete-Reward.md +++ b/docs/reference-docs/REWARDS-API-Delete-Reward.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-reward -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api hidden: false order: 5 --- diff --git a/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md index 016e988e3..c28f8b18a 100644 --- a/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-reward-assignment -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api hidden: false order: 7 --- diff --git a/docs/reference-docs/REWARDS-API-Get-Reward.md b/docs/reference-docs/REWARDS-API-Get-Reward.md index 7094b6fa3..bfa9cea00 100644 --- a/docs/reference-docs/REWARDS-API-Get-Reward.md +++ b/docs/reference-docs/REWARDS-API-Get-Reward.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-reward -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api hidden: false order: 2 --- diff --git a/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md b/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md index ac7596810..23bccff64 100644 --- a/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md +++ b/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-reward-assignments -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api hidden: false order: 6 --- diff --git a/docs/reference-docs/REWARDS-API-List-Rewards.md b/docs/reference-docs/REWARDS-API-List-Rewards.md index a621d7ed6..79babaa48 100644 --- a/docs/reference-docs/REWARDS-API-List-Rewards.md +++ b/docs/reference-docs/REWARDS-API-List-Rewards.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-rewards -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api hidden: false order: 1 --- diff --git a/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md b/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md index 479a4ee7d..ed0f91038 100644 --- a/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md +++ b/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md @@ -3,7 +3,7 @@ title: Reward Assignment Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api slug: reward-assignment-object hidden: false order: 2 diff --git a/docs/reference-docs/REWARDS-API-Reward-Object.md b/docs/reference-docs/REWARDS-API-Reward-Object.md index f4823e7c2..80c3b5905 100644 --- a/docs/reference-docs/REWARDS-API-Reward-Object.md +++ b/docs/reference-docs/REWARDS-API-Reward-Object.md @@ -3,7 +3,7 @@ title: Reward Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api slug: reward-object hidden: false order: 1 diff --git a/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md index c6452bc98..f6c68964b 100644 --- a/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-reward-assignment -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api hidden: false order: 9 --- diff --git a/docs/reference-docs/REWARDS-API-Update-Reward.md b/docs/reference-docs/REWARDS-API-Update-Reward.md index 28b0912bf..59557afce 100644 --- a/docs/reference-docs/REWARDS-API-Update-Reward.md +++ b/docs/reference-docs/REWARDS-API-Update-Reward.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-reward -parentDoc: 639ba2658407100061f5fab1 +parentDocSlug: rewards-api hidden: false order: 4 --- diff --git a/docs/reference-docs/SEGMENTS-API-Create-Segment.md b/docs/reference-docs/SEGMENTS-API-Create-Segment.md index e08c466ac..00fee66b2 100644 --- a/docs/reference-docs/SEGMENTS-API-Create-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Create-Segment.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-segment -parentDoc: 639ba2658407100061f5fabc +parentDocSlug: segments-api hidden: false order: 2 --- diff --git a/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md b/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md index 7180dbe04..7887016c9 100644 --- a/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md +++ b/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md @@ -3,7 +3,7 @@ title: Customer Segment Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fabc +parentDocSlug: segments-api slug: customer-segment-object hidden: false order: 1 diff --git a/docs/reference-docs/SEGMENTS-API-Delete-Segment.md b/docs/reference-docs/SEGMENTS-API-Delete-Segment.md index f40cdfffe..6be2434da 100644 --- a/docs/reference-docs/SEGMENTS-API-Delete-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Delete-Segment.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-segment -parentDoc: 639ba2658407100061f5fabc +parentDocSlug: segments-api hidden: false order: 3 --- diff --git a/docs/reference-docs/SEGMENTS-API-Get-Segment.md b/docs/reference-docs/SEGMENTS-API-Get-Segment.md index 8b522fb2e..36a6fe0fd 100644 --- a/docs/reference-docs/SEGMENTS-API-Get-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Get-Segment.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-segment -parentDoc: 639ba2658407100061f5fabc +parentDocSlug: segments-api hidden: false order: 1 --- diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md index 75d6f7ecf..68186a051 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-stacked-discounts-client-side -parentDoc: 639ba2658407100061f5fab5 +parentDocSlug: stackable-discounts-api hidden: false order: 6 --- diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md index 949557684..b2944322e 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-stacked-discounts -parentDoc: 639ba2658407100061f5fab5 +parentDocSlug: stackable-discounts-api hidden: false order: 5 --- diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md index e074c6348..e12253d06 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: rollback-stacked-redemptions -parentDoc: 639ba2658407100061f5fab5 +parentDocSlug: stackable-discounts-api hidden: false order: 7 --- diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md index 63f4b561c..030e6b112 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md @@ -3,7 +3,7 @@ title: Stackable Redemptions Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab5 +parentDocSlug: stackable-discounts-api slug: stackable-redemptions-object hidden: false order: 3 diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md index 147198f7a..c57ee5077 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-stacked-discounts-client-side -parentDoc: 639ba2658407100061f5fab5 +parentDocSlug: stackable-discounts-api hidden: false order: 4 --- diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md index cde23c76f..b94e83ae7 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-stacked-discounts -parentDoc: 639ba2658407100061f5fab5 +parentDocSlug: stackable-discounts-api hidden: false order: 3 --- diff --git a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md index 8823c204b..e5305a7da 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-validation-rules -parentDoc: 639ba2658407100061f5fabb +parentDocSlug: validation-rules-api hidden: false order: 3 --- diff --git a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md index 766dc4499..f442add27 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-validation-rule-assignment -parentDoc: 639ba2658407100061f5fabb +parentDocSlug: validation-rules-api hidden: false order: 8 --- diff --git a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md index 193f5b5b2..f7fa029a3 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-validation-rule-assignment -parentDoc: 639ba2658407100061f5fabb +parentDocSlug: validation-rules-api hidden: false order: 9 --- diff --git a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md index d715c6673..cf0c99394 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-validation-rules -parentDoc: 639ba2658407100061f5fabb +parentDocSlug: validation-rules-api hidden: false order: 5 --- diff --git a/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md index 67b8fce8f..4ac4fc054 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-validation-rule -parentDoc: 639ba2658407100061f5fabb +parentDocSlug: validation-rules-api hidden: false order: 2 --- diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md index daf2c5c7f..08044d941 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-validation-rule-assignments -parentDoc: 639ba2658407100061f5fabb +parentDocSlug: validation-rules-api hidden: false order: 7 --- diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md index 7ad751ccd..362fe4362 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-validation-rules-assignments -parentDoc: 639ba2658407100061f5fabb +parentDocSlug: validation-rules-api hidden: false order: 6 --- diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md index 742479a03..3dd72d67c 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-validation-rules -parentDoc: 639ba2658407100061f5fabb +parentDocSlug: validation-rules-api hidden: false order: 1 --- diff --git a/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md index 36eb35364..913e6811a 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-validation-rule -parentDoc: 639ba2658407100061f5fabb +parentDocSlug: validation-rules-api hidden: false order: 4 --- diff --git a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md index ec0e39575..f9d141c7e 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md @@ -3,7 +3,7 @@ title: Validation Rule Assignment Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fabb +parentDocSlug: validation-rules-api slug: validation-rule-assignment-object hidden: false order: 2 diff --git a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md index 71fbc75eb..ea04969c0 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md @@ -3,7 +3,7 @@ title: Validation Rule Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fabb +parentDocSlug: validation-rules-api slug: validation-rule-object hidden: false order: 1 diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md b/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md index 0382cdb96..2b20d1963 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-promotion-tier -parentDoc: 639ba2658407100061f5fab3 +parentDocSlug: validations-api hidden: false order: 5 --- diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md b/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md index 2812c523b..fa3c31310 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-promotions -parentDoc: 639ba2658407100061f5fab3 +parentDocSlug: validations-api hidden: false order: 4 --- diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md index 5640f0236..fe1e5ba00 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-voucher-client-side -parentDoc: 639ba2658407100061f5fab3 +parentDocSlug: validations-api hidden: false order: 3 --- diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md index 0dd68111f..871f8db1b 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-voucher -parentDoc: 639ba2658407100061f5fab3 +parentDocSlug: validations-api hidden: false order: 2 --- diff --git a/docs/reference-docs/VALIDATIONS-API-Validation-Object.md b/docs/reference-docs/VALIDATIONS-API-Validation-Object.md index a26ed7aa8..a86acf4a9 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validation-Object.md +++ b/docs/reference-docs/VALIDATIONS-API-Validation-Object.md @@ -3,7 +3,7 @@ title: Validation Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab3 +parentDocSlug: validations-api slug: validation-object hidden: false order: 2 diff --git a/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md b/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md index f15a91d74..6792627da 100644 --- a/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md +++ b/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-remove-gift-voucher-balance -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 9 --- diff --git a/docs/reference-docs/VOUCHERS-API-Create-Voucher.md b/docs/reference-docs/VOUCHERS-API-Create-Voucher.md index d2b75236a..a8686f695 100644 --- a/docs/reference-docs/VOUCHERS-API-Create-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Create-Voucher.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-voucher -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 3 --- diff --git a/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md b/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md index 54c0e3a4c..f58907baf 100644 --- a/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-voucher -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 6 --- diff --git a/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md b/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md index 6ace3cada..9f25a6619 100644 --- a/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: disable-voucher -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 8 --- diff --git a/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md b/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md index cc43af8f6..0e58a8a73 100644 --- a/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: enable-voucher -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 7 --- diff --git a/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md b/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md index 69588e28a..2d73b14ea 100644 --- a/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md +++ b/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: examine-vouchers-qualification -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 14 --- diff --git a/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md b/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md index b95178ab4..cdb44480a 100644 --- a/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md +++ b/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: export-gift-card-transactions -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 11 --- diff --git a/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md b/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md index a872b6c5e..f152b0b99 100644 --- a/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md +++ b/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: generate-random-code -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 4 --- diff --git a/docs/reference-docs/VOUCHERS-API-Get-Voucher.md b/docs/reference-docs/VOUCHERS-API-Get-Voucher.md index 1a043b9b7..f5acf85ff 100644 --- a/docs/reference-docs/VOUCHERS-API-Get-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Get-Voucher.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-voucher -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 2 --- diff --git a/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md b/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md index 0f6eff29b..be75d4df9 100644 --- a/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md +++ b/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-vouchers-using-csv -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 13 --- diff --git a/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md b/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md index 9af30b696..804092b5a 100644 --- a/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md +++ b/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-vouchers -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 12 --- diff --git a/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md b/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md index e7fa7d5b7..37dfb2326 100644 --- a/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md +++ b/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-gift-card-transactions -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 10 --- diff --git a/docs/reference-docs/VOUCHERS-API-List-Vouchers.md b/docs/reference-docs/VOUCHERS-API-List-Vouchers.md index cb02a28f6..1f5a3c07a 100644 --- a/docs/reference-docs/VOUCHERS-API-List-Vouchers.md +++ b/docs/reference-docs/VOUCHERS-API-List-Vouchers.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-vouchers -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 1 --- diff --git a/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md b/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md index 8d02492db..79da9a99e 100644 --- a/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md +++ b/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: release-validation-session -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 17 --- diff --git a/docs/reference-docs/VOUCHERS-API-Update-Voucher.md b/docs/reference-docs/VOUCHERS-API-Update-Voucher.md index 508ffd04b..58d4bd377 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Voucher.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-voucher -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 5 --- diff --git a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md index eb6d0196a..9f1015ff2 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-vouchers-in-bulk -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 15 --- diff --git a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md index 8771c8b32..e711b704e 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md @@ -4,7 +4,7 @@ type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-vouchers-metadata-in-bulk -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api hidden: false order: 16 --- diff --git a/docs/reference-docs/VOUCHERS-API-Voucher-Object.md b/docs/reference-docs/VOUCHERS-API-Voucher-Object.md index 8c2e07e25..cdb5f1577 100644 --- a/docs/reference-docs/VOUCHERS-API-Voucher-Object.md +++ b/docs/reference-docs/VOUCHERS-API-Voucher-Object.md @@ -3,7 +3,7 @@ title: Voucher Object type: endpoint category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5faae +parentDocSlug: vouchers-api slug: voucher-object hidden: false order: 1 diff --git a/docs/script/index.js b/docs/script/index.js index fde22fdba..340a3502a 100644 --- a/docs/script/index.js +++ b/docs/script/index.js @@ -92,6 +92,15 @@ const main = async () => { const parentDoc = docsForCategory.find((categoryDocs) => categoryDocs.children.find((doc) => doc.slug === docSlug) ); + + await fsPromises.writeFile( + pathToFile.replace(pathToFile, pathToFile), + data + .replace(/parentDoc: .*/, `parentDocSlug: ${parentDoc.slug}`) + .toString(), + "utf8" + ); + if (!parentDoc?._id) { console.log(`error, ${parentDocFile}, ${docSlug}, ${pathToFile}`); console.log(JSON.stringify(docsForCategory)); From 4d485a4fa473d67d0dbf52f0c942aaae70449f0e Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:56:51 +0200 Subject: [PATCH 49/62] delete category: id --- docs/guides/building_blocks/Campaigns.md | 1 - docs/guides/building_blocks/Customer.md | 1 - docs/guides/building_blocks/Distribution.md | 1 - docs/guides/building_blocks/Earning-Rules.md | 1 - docs/guides/building_blocks/Formula-Builder.md | 1 - docs/guides/building_blocks/Metadata-Custom-Fields.md | 1 - docs/guides/building_blocks/Orders.md | 1 - docs/guides/building_blocks/Products.md | 1 - docs/guides/building_blocks/Promotion-Tier.md | 1 - docs/guides/building_blocks/Redemption.md | 1 - docs/guides/building_blocks/Rewards.md | 1 - docs/guides/building_blocks/Validation-Rules.md | 1 - docs/guides/building_blocks/Vouchers.md | 1 - docs/guides/building_blocks/Webhooks.md | 1 - docs/guides/campaign_recipes/Locking-Validation-Session.md | 1 - docs/guides/campaign_recipes/Loyalty Program.md | 1 - docs/guides/campaign_recipes/Prepaid-Gift-Cards.md | 1 - docs/guides/campaign_recipes/Qualifications.md | 1 - docs/guides/campaign_recipes/Referral-Program.md | 1 - docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md | 1 - docs/guides/campaign_recipes/Transfer-Loyalty-Points.md | 1 - docs/guides/development/API-Reference.md | 1 - docs/guides/development/API-Version-Upgrades.md | 1 - docs/guides/development/Client-Side-API.md | 1 - docs/guides/development/Error-Codes.md | 1 - docs/guides/development/Examples.md | 1 - docs/guides/development/Limits.md | 1 - docs/guides/development/Performance.md | 1 - docs/guides/development/SDKs.md | 1 - docs/guides/development/Security.md | 1 - docs/guides/development/Test-Mode-Sandbox.md | 1 - docs/guides/development/Troubleshooting.md | 1 - docs/guides/discounts_recipes/Discount-Effects.md | 1 - docs/guides/discounts_recipes/Free-Shipping-Discount.md | 1 - .../discounts_recipes/Give-Items-For-Free-Unit-Discount.md | 1 - docs/guides/discounts_recipes/Product-Specific-Discounts.md | 1 - docs/guides/discounts_recipes/Stackable-Discounts-API.md | 1 - docs/guides/distributions_recipes/CSV-Export-With-API.md | 1 - docs/guides/distributions_recipes/Geofencing.md | 1 - docs/guides/distributions_recipes/Import-Legacy-Codes.md | 1 - docs/guides/distributions_recipes/Messaging-Automation.md | 1 - docs/guides/getting_started/API-Endpoints.md | 1 - docs/guides/getting_started/Authentication.md | 1 - docs/guides/getting_started/Home.md | 1 - docs/guides/getting_started/Integration-Checklist.md | 1 - docs/guides/getting_started/Key-Concepts.md | 1 - docs/guides/getting_started/Quickstart.md | 1 - docs/guides/more/Roadmap.md | 1 - docs/guides/more/Status.md | 1 - docs/guides/more/Support.md | 1 - docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md | 1 - docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md | 1 - docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md | 1 - .../CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md | 1 - docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md | 1 - docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md | 1 - docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md | 1 - docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md | 1 - docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md | 1 - docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md | 1 - docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md | 1 - docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md | 1 - .../CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md | 1 - .../reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md | 1 - docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md | 1 - docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md | 1 - docs/reference-docs/CATEGORIES-API-Category-Object.md | 1 - docs/reference-docs/CATEGORIES-API-Create-Category.md | 1 - docs/reference-docs/CATEGORIES-API-Delete-Category.md | 1 - docs/reference-docs/CATEGORIES-API-Get-Category.md | 1 - docs/reference-docs/CATEGORIES-API-List-Categories.md | 1 - docs/reference-docs/CATEGORIES-API-Update-Category.md | 1 - docs/reference-docs/CONSENTS-API-Consents-Object.md | 1 - docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md | 1 - docs/reference-docs/CONSENTS-API-List-Consents.md | 1 - docs/reference-docs/CUSTOMERS-API-Create-Customer.md | 1 - docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md | 1 - docs/reference-docs/CUSTOMERS-API-Customer-Object.md | 1 - .../reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md | 1 - docs/reference-docs/CUSTOMERS-API-Get-Customer.md | 1 - docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md | 1 - docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md | 1 - docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md | 1 - docs/reference-docs/CUSTOMERS-API-List-Customers.md | 1 - docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md | 1 - docs/reference-docs/CUSTOMERS-API-Update-Customer.md | 1 - .../CUSTOMERS-API-Update-Customers-Consents-Client-Side.md | 1 - docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md | 1 - .../CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md | 1 - docs/reference-docs/CUSTOMES-API-Delete-Customer.md | 1 - docs/reference-docs/EVENTS-API-Custom-Event-Object.md | 1 - .../reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md | 1 - docs/reference-docs/EVENTS-API-Track-Custom-Event.md | 1 - docs/reference-docs/EXPORTS-API-Create-Export.md | 1 - docs/reference-docs/EXPORTS-API-Delete-Export.md | 1 - docs/reference-docs/EXPORTS-API-Download-Export.md | 1 - docs/reference-docs/EXPORTS-API-Export-Object.md | 1 - docs/reference-docs/EXPORTS-API-Get-Export.md | 1 - docs/reference-docs/EXPORTS-API-List-Exports.md | 1 - docs/reference-docs/Errors.md | 1 - docs/reference-docs/Establish-Validation-Session.md | 2 -- docs/reference-docs/Fetching-Data.md | 1 - docs/reference-docs/Introduction.md | 1 - docs/reference-docs/LOCATIONS-API-Get-Location.md | 1 - docs/reference-docs/LOCATIONS-API-List-Locations.md | 1 - docs/reference-docs/LOCATIONS-API-Location-Object.md | 1 - docs/reference-docs/LOYALTIES-API-Add-Member.md | 1 - .../LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md | 1 - .../LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md | 1 - docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md | 1 - docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md | 1 - .../LOYALTIES-API-Create-Points-Expiration-Export.md | 1 - docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md | 1 - docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md | 1 - docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md | 1 - docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md | 1 - docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md | 1 - docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md | 1 - docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md | 1 - .../LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md | 1 - .../LOYALTIES-API-Export-Loyalty-Card-Transactions.md | 1 - docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md | 1 - docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md | 1 - docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md | 1 - docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md | 1 - docs/reference-docs/LOYALTIES-API-Get-Member-1.md | 1 - docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md | 1 - docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md | 1 - docs/reference-docs/LOYALTIES-API-Get-Member.md | 1 - docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md | 1 - docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md | 1 - docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md | 1 - docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md | 1 - docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md | 1 - .../LOYALTIES-API-List-Loyalty-Card-Transactions-1.md | 1 - .../LOYALTIES-API-List-Loyalty-Card-Transactions.md | 1 - .../LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md | 1 - docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md | 1 - docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md | 1 - docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md | 1 - docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md | 1 - docs/reference-docs/LOYALTIES-API-List-Members.md | 1 - docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md | 1 - docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md | 1 - docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md | 1 - docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md | 1 - docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md | 1 - docs/reference-docs/LOYALTIES-API-Redeem-Reward.md | 1 - docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md | 1 - docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md | 1 - docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md | 1 - docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md | 1 - docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md | 1 - docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md | 1 - .../METADATA-SCHEMAS-API-List-Metadata-Schemas.md | 1 - .../METADATA-SCHEMAS-API-Metadata-Schema-Object.md | 1 - docs/reference-docs/ORDERS-API-Create-Order.md | 1 - docs/reference-docs/ORDERS-API-Create-Orders-Export.md | 1 - docs/reference-docs/ORDERS-API-Get-Order.md | 1 - docs/reference-docs/ORDERS-API-Import-Orders.md | 1 - docs/reference-docs/ORDERS-API-List-Orders.md | 1 - docs/reference-docs/ORDERS-API-Order-Object.md | 1 - docs/reference-docs/ORDERS-API-Update-Order.md | 1 - docs/reference-docs/Object-Schemas.md | 1 - .../PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md | 1 - .../PRODUCT-COLLECTIONS-API-List-Product-Collections.md | 1 - .../PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md | 1 - .../PRODUCT-COLLECTIONS-API-Product-Collection-Object.md | 1 - .../PRODUCT-COLLECTIONS-Get-Product-Collection.md | 1 - docs/reference-docs/PRODUCTS-API-Create-Product.md | 1 - docs/reference-docs/PRODUCTS-API-Create-SKU.md | 1 - docs/reference-docs/PRODUCTS-API-Delete-Product.md | 1 - docs/reference-docs/PRODUCTS-API-Delete-SKU.md | 1 - docs/reference-docs/PRODUCTS-API-Get-Product.md | 1 - docs/reference-docs/PRODUCTS-API-Get-SKU.md | 1 - docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md | 1 - docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md | 1 - docs/reference-docs/PRODUCTS-API-List-Products.md | 1 - docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md | 1 - docs/reference-docs/PRODUCTS-API-Product-Object.md | 1 - docs/reference-docs/PRODUCTS-API-SKU-Object.md | 1 - docs/reference-docs/PRODUCTS-API-Update-Product.md | 1 - docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md | 1 - .../PRODUCTS-API-Update-Products-Metadata-In-Bulk.md | 1 - docs/reference-docs/PRODUCTS-API-Update-SKU.md | 1 - .../PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md | 1 - docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md | 1 - docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md | 1 - docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md | 1 - docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md | 1 - docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md | 1 - docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md | 1 - docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md | 1 - .../PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md | 1 - docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md | 1 - .../PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md | 1 - .../PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md | 1 - docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md | 1 - docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md | 1 - docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md | 1 - docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md | 1 - docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md | 1 - docs/reference-docs/PUBLICATIONS-API-Create-Publication.md | 1 - docs/reference-docs/PUBLICATIONS-API-List-Publications.md | 1 - docs/reference-docs/PUBLICATIONS-API-Publication-Object.md | 1 - .../QUALIFICATIONS-API-Check-Eligibility-Client-Side.md | 1 - docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md | 1 - docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md | 1 - docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md | 1 - docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md | 1 - docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md | 1 - docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md | 1 - .../REDEMPTIONS-API-Redeem-Voucher-Client-Side.md | 1 - docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md | 1 - docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md | 1 - .../REDEMPTIONS-API-Rollback-Redemption-Object.md | 1 - docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md | 1 - docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md | 1 - docs/reference-docs/REWARDS-API-Create-Reward.md | 1 - docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md | 1 - docs/reference-docs/REWARDS-API-Delete-Reward.md | 1 - docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md | 1 - docs/reference-docs/REWARDS-API-Get-Reward.md | 1 - docs/reference-docs/REWARDS-API-List-Reward-Assignments.md | 1 - docs/reference-docs/REWARDS-API-List-Rewards.md | 1 - docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md | 1 - docs/reference-docs/REWARDS-API-Reward-Object.md | 1 - docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md | 1 - docs/reference-docs/REWARDS-API-Update-Reward.md | 1 - docs/reference-docs/SEGMENTS-API-Create-Segment.md | 1 - docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md | 1 - docs/reference-docs/SEGMENTS-API-Delete-Segment.md | 1 - docs/reference-docs/SEGMENTS-API-Get-Segment.md | 1 - ...ABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md | 1 - .../STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md | 1 - .../STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md | 1 - .../STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md | 1 - ...LE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md | 1 - .../STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md | 1 - docs/reference-docs/Stacking-API-Overview.md | 2 -- .../VALIDATION-RULES-API-Create-Validation-Rule.md | 1 - .../VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md | 1 - .../VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md | 1 - .../VALIDATION-RULES-API-Delete-Validation-Rule.md | 1 - docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md | 1 - .../VALIDATION-RULES-API-List-Validation-Rule-Assignments.md | 1 - .../VALIDATION-RULES-API-List-Validation-Rules-Assignments.md | 1 - .../VALIDATION-RULES-API-List-Validation-Rules.md | 1 - .../VALIDATION-RULES-API-Update-Validation-Rule.md | 1 - .../VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md | 1 - .../VALIDATION-RULES-API-Validation-Rule-Object.md | 1 - docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md | 1 - docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md | 1 - .../VALIDATIONS-API-Validate-Voucher-Client-Side.md | 1 - docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md | 1 - docs/reference-docs/VALIDATIONS-API-Validation-Object.md | 1 - .../reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md | 1 - docs/reference-docs/VOUCHERS-API-Create-Voucher.md | 1 - docs/reference-docs/VOUCHERS-API-Delete-Voucher.md | 1 - docs/reference-docs/VOUCHERS-API-Disable-Voucher.md | 1 - docs/reference-docs/VOUCHERS-API-Enable-Voucher.md | 1 - docs/reference-docs/VOUCHERS-API-Examine-Qualification.md | 1 - .../VOUCHERS-API-Export-Gift-Card-Transactions.md | 1 - docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md | 1 - docs/reference-docs/VOUCHERS-API-Get-Voucher.md | 1 - docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md | 1 - docs/reference-docs/VOUCHERS-API-Import-Vouchers.md | 1 - docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md | 1 - docs/reference-docs/VOUCHERS-API-List-Vouchers.md | 1 - docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md | 1 - docs/reference-docs/VOUCHERS-API-Update-Voucher.md | 1 - docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md | 1 - .../VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md | 1 - docs/reference-docs/VOUCHERS-API-Voucher-Object.md | 1 - docs/reference-docs/Validation-Session.md | 2 -- docs/reference-docs/Versioning.md | 1 - 276 files changed, 279 deletions(-) diff --git a/docs/guides/building_blocks/Campaigns.md b/docs/guides/building_blocks/Campaigns.md index 04f97c682..94421ded3 100644 --- a/docs/guides/building_blocks/Campaigns.md +++ b/docs/guides/building_blocks/Campaigns.md @@ -1,7 +1,6 @@ --- title: Campaigns excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: campaigns type: basic diff --git a/docs/guides/building_blocks/Customer.md b/docs/guides/building_blocks/Customer.md index 8922851b6..e8d8cd2a4 100644 --- a/docs/guides/building_blocks/Customer.md +++ b/docs/guides/building_blocks/Customer.md @@ -1,7 +1,6 @@ --- title: Customers excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: customers type: basic diff --git a/docs/guides/building_blocks/Distribution.md b/docs/guides/building_blocks/Distribution.md index 66597aa8e..1762df90f 100644 --- a/docs/guides/building_blocks/Distribution.md +++ b/docs/guides/building_blocks/Distribution.md @@ -1,7 +1,6 @@ --- title: Distribution excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: distribution type: basic diff --git a/docs/guides/building_blocks/Earning-Rules.md b/docs/guides/building_blocks/Earning-Rules.md index df7e86383..fc27a8e8b 100644 --- a/docs/guides/building_blocks/Earning-Rules.md +++ b/docs/guides/building_blocks/Earning-Rules.md @@ -1,7 +1,6 @@ --- title: Earning Rules excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: earning-rules type: basic diff --git a/docs/guides/building_blocks/Formula-Builder.md b/docs/guides/building_blocks/Formula-Builder.md index df28de142..efae299ca 100644 --- a/docs/guides/building_blocks/Formula-Builder.md +++ b/docs/guides/building_blocks/Formula-Builder.md @@ -1,7 +1,6 @@ --- title: Formula Builder excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: formula-builder type: basic diff --git a/docs/guides/building_blocks/Metadata-Custom-Fields.md b/docs/guides/building_blocks/Metadata-Custom-Fields.md index 3e20c50b9..fc14fbc13 100644 --- a/docs/guides/building_blocks/Metadata-Custom-Fields.md +++ b/docs/guides/building_blocks/Metadata-Custom-Fields.md @@ -1,7 +1,6 @@ --- title: Metadata (custom fields) excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: metadata-custom-fields type: basic diff --git a/docs/guides/building_blocks/Orders.md b/docs/guides/building_blocks/Orders.md index 2e4c26ad1..e422404b3 100644 --- a/docs/guides/building_blocks/Orders.md +++ b/docs/guides/building_blocks/Orders.md @@ -1,7 +1,6 @@ --- title: Orders excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: orders type: basic diff --git a/docs/guides/building_blocks/Products.md b/docs/guides/building_blocks/Products.md index da94b942e..9628d4e60 100644 --- a/docs/guides/building_blocks/Products.md +++ b/docs/guides/building_blocks/Products.md @@ -1,7 +1,6 @@ --- title: Products excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: products type: basic diff --git a/docs/guides/building_blocks/Promotion-Tier.md b/docs/guides/building_blocks/Promotion-Tier.md index 96a4066b2..d5a8872e7 100644 --- a/docs/guides/building_blocks/Promotion-Tier.md +++ b/docs/guides/building_blocks/Promotion-Tier.md @@ -1,7 +1,6 @@ --- title: Promotion Tier excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: promotion-tier type: basic diff --git a/docs/guides/building_blocks/Redemption.md b/docs/guides/building_blocks/Redemption.md index fb81c9002..835ac4c64 100644 --- a/docs/guides/building_blocks/Redemption.md +++ b/docs/guides/building_blocks/Redemption.md @@ -1,7 +1,6 @@ --- title: Redemption excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: redemption type: basic diff --git a/docs/guides/building_blocks/Rewards.md b/docs/guides/building_blocks/Rewards.md index 516f21a5b..1f1a0d69f 100644 --- a/docs/guides/building_blocks/Rewards.md +++ b/docs/guides/building_blocks/Rewards.md @@ -1,7 +1,6 @@ --- title: Rewards excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: rewards type: basic diff --git a/docs/guides/building_blocks/Validation-Rules.md b/docs/guides/building_blocks/Validation-Rules.md index e711bcc19..5f2154ae7 100644 --- a/docs/guides/building_blocks/Validation-Rules.md +++ b/docs/guides/building_blocks/Validation-Rules.md @@ -1,7 +1,6 @@ --- title: Validation Rules excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: validation-rules type: basic diff --git a/docs/guides/building_blocks/Vouchers.md b/docs/guides/building_blocks/Vouchers.md index 3bd5b3aa3..0f8e062c0 100644 --- a/docs/guides/building_blocks/Vouchers.md +++ b/docs/guides/building_blocks/Vouchers.md @@ -1,7 +1,6 @@ --- title: Vouchers excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: vouchers type: basic diff --git a/docs/guides/building_blocks/Webhooks.md b/docs/guides/building_blocks/Webhooks.md index d6147b5a0..a4db6ebc1 100644 --- a/docs/guides/building_blocks/Webhooks.md +++ b/docs/guides/building_blocks/Webhooks.md @@ -1,7 +1,6 @@ --- title: Webhooks excerpt: -category: 639ba16d677235008f800454 categorySlug: building-blocks slug: webhooks type: link diff --git a/docs/guides/campaign_recipes/Locking-Validation-Session.md b/docs/guides/campaign_recipes/Locking-Validation-Session.md index 9a3142499..687dab4d3 100644 --- a/docs/guides/campaign_recipes/Locking-Validation-Session.md +++ b/docs/guides/campaign_recipes/Locking-Validation-Session.md @@ -1,7 +1,6 @@ --- title: Locking Validation Session excerpt: Temporary lock the voucher's usage until redemption is successful. -category: 639ba16d677235008f80045c categorySlug: campaigns-1 slug: locking-validation-session type: basic diff --git a/docs/guides/campaign_recipes/Loyalty Program.md b/docs/guides/campaign_recipes/Loyalty Program.md index 55f481d0c..c53b48cbe 100644 --- a/docs/guides/campaign_recipes/Loyalty Program.md +++ b/docs/guides/campaign_recipes/Loyalty Program.md @@ -1,7 +1,6 @@ --- title: Loyalty Program excerpt: null -category: 639ba16d677235008f80045c categorySlug: campaigns-1 slug: loyalty-program type: basic diff --git a/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md b/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md index 164301c45..0ebbf105f 100644 --- a/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md +++ b/docs/guides/campaign_recipes/Prepaid-Gift-Cards.md @@ -1,7 +1,6 @@ --- title: Prepaid Gift Cards excerpt: null -category: 639ba16d677235008f80045c categorySlug: campaigns-1 slug: prepaid-gift-cards type: basic diff --git a/docs/guides/campaign_recipes/Qualifications.md b/docs/guides/campaign_recipes/Qualifications.md index bd8281a28..8af641479 100644 --- a/docs/guides/campaign_recipes/Qualifications.md +++ b/docs/guides/campaign_recipes/Qualifications.md @@ -1,7 +1,6 @@ --- title: Qualification - Checking eligibility excerpt: null -category: 639ba16d677235008f80045c categorySlug: campaigns-1 slug: checking-eligibility type: basic diff --git a/docs/guides/campaign_recipes/Referral-Program.md b/docs/guides/campaign_recipes/Referral-Program.md index aa0e7f456..8fa21ede1 100644 --- a/docs/guides/campaign_recipes/Referral-Program.md +++ b/docs/guides/campaign_recipes/Referral-Program.md @@ -1,7 +1,6 @@ --- title: Referral Program excerpt: null -category: 639ba16d677235008f80045c categorySlug: campaigns-1 slug: referral-program type: link diff --git a/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md b/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md index 24699155b..b1edb1464 100644 --- a/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md +++ b/docs/guides/campaign_recipes/Stacking-Promotion-Tiers.md @@ -1,7 +1,6 @@ --- title: Stacking Promotion Tiers excerpt: 'In this tutorial, you will learn how to validate, redeem, and manage promotion stacks using API.' -category: 639ba16d677235008f80045c categorySlug: campaigns-1 slug: stacking-promotion-tiers type: basic diff --git a/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md b/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md index bc1051a4c..937388a41 100644 --- a/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md +++ b/docs/guides/campaign_recipes/Transfer-Loyalty-Points.md @@ -1,7 +1,6 @@ --- title: Transfer Loyalty Points excerpt: See how to transfer points between loyalty cards. -category: 639ba16d677235008f80045c categorySlug: campaigns-1 slug: transfer-loyalty-points type: basic diff --git a/docs/guides/development/API-Reference.md b/docs/guides/development/API-Reference.md index 2e2b68b27..475f06116 100644 --- a/docs/guides/development/API-Reference.md +++ b/docs/guides/development/API-Reference.md @@ -1,7 +1,6 @@ --- title: API Reference excerpt: -category: 639ba16d677235008f800447 categorySlug: development slug: api-reference type: link diff --git a/docs/guides/development/API-Version-Upgrades.md b/docs/guides/development/API-Version-Upgrades.md index 9b7e14af3..f87c8fc21 100644 --- a/docs/guides/development/API-Version-Upgrades.md +++ b/docs/guides/development/API-Version-Upgrades.md @@ -1,7 +1,6 @@ --- title: API Version Upgrades excerpt: Keep track of changes and upgrades to the Voucherify API. -category: 639ba16d677235008f800447 categorySlug: development slug: api-version-upgrades type: basic diff --git a/docs/guides/development/Client-Side-API.md b/docs/guides/development/Client-Side-API.md index 5d2c72f96..22332003b 100644 --- a/docs/guides/development/Client-Side-API.md +++ b/docs/guides/development/Client-Side-API.md @@ -1,7 +1,6 @@ --- title: Client-side API excerpt: -category: 639ba16d677235008f800447 categorySlug: development slug: client-side-api type: basic diff --git a/docs/guides/development/Error-Codes.md b/docs/guides/development/Error-Codes.md index 8a27c925a..c3fe797de 100644 --- a/docs/guides/development/Error-Codes.md +++ b/docs/guides/development/Error-Codes.md @@ -1,7 +1,6 @@ --- title: Error Codes excerpt: -category: 639ba16d677235008f800447 categorySlug: development slug: error-codes type: link diff --git a/docs/guides/development/Examples.md b/docs/guides/development/Examples.md index c6340e063..f8aa485fa 100644 --- a/docs/guides/development/Examples.md +++ b/docs/guides/development/Examples.md @@ -1,7 +1,6 @@ --- title: Examples excerpt: Here are some exemplary integrations and third-party guides for you to learn more about Voucherify. -category: 639ba16d677235008f800447 categorySlug: development slug: examples type: basic diff --git a/docs/guides/development/Limits.md b/docs/guides/development/Limits.md index 2e49b7987..373d5da61 100644 --- a/docs/guides/development/Limits.md +++ b/docs/guides/development/Limits.md @@ -1,7 +1,6 @@ --- title: Limits excerpt: API calls limits and optimization -category: 639ba16d677235008f800447 categorySlug: development slug: limits type: basic diff --git a/docs/guides/development/Performance.md b/docs/guides/development/Performance.md index 2834e7ed8..bf9fcf4c8 100644 --- a/docs/guides/development/Performance.md +++ b/docs/guides/development/Performance.md @@ -1,7 +1,6 @@ --- title: Performance excerpt: Average response rates -category: 639ba16d677235008f800447 categorySlug: development slug: performance type: basic diff --git a/docs/guides/development/SDKs.md b/docs/guides/development/SDKs.md index a8f1ad8bb..49f0fd461 100644 --- a/docs/guides/development/SDKs.md +++ b/docs/guides/development/SDKs.md @@ -1,7 +1,6 @@ --- title: SDKs excerpt: -category: 639ba16d677235008f800447 categorySlug: development slug: sdks type: basic diff --git a/docs/guides/development/Security.md b/docs/guides/development/Security.md index 548573b2b..188d549c7 100644 --- a/docs/guides/development/Security.md +++ b/docs/guides/development/Security.md @@ -1,7 +1,6 @@ --- title: Security excerpt: -category: 639ba16d677235008f800447 categorySlug: development slug: security type: basic diff --git a/docs/guides/development/Test-Mode-Sandbox.md b/docs/guides/development/Test-Mode-Sandbox.md index 43f5b361c..3131d4b2c 100644 --- a/docs/guides/development/Test-Mode-Sandbox.md +++ b/docs/guides/development/Test-Mode-Sandbox.md @@ -1,7 +1,6 @@ --- title: Test mode (Sandbox) excerpt: Run integration tests of your promotions before going to production -category: 639ba16d677235008f800447 categorySlug: development slug: testing type: basic diff --git a/docs/guides/development/Troubleshooting.md b/docs/guides/development/Troubleshooting.md index e47fec8f1..9b0c0da78 100644 --- a/docs/guides/development/Troubleshooting.md +++ b/docs/guides/development/Troubleshooting.md @@ -1,7 +1,6 @@ --- title: Troubleshooting excerpt: -category: 639ba16d677235008f800447 categorySlug: development slug: troubleshooting type: basic diff --git a/docs/guides/discounts_recipes/Discount-Effects.md b/docs/guides/discounts_recipes/Discount-Effects.md index 808f3cc8e..6529481fd 100644 --- a/docs/guides/discounts_recipes/Discount-Effects.md +++ b/docs/guides/discounts_recipes/Discount-Effects.md @@ -1,7 +1,6 @@ --- title: Discount Effects excerpt: The discount effect defines how the discount will be applied to the customer's cart. In this article, we're going to show you how different effects work with discounts. -category: 639ba16d677235008f80045e categorySlug: discounts slug: discount-effects type: basic diff --git a/docs/guides/discounts_recipes/Free-Shipping-Discount.md b/docs/guides/discounts_recipes/Free-Shipping-Discount.md index 516b229be..df908f3a8 100644 --- a/docs/guides/discounts_recipes/Free-Shipping-Discount.md +++ b/docs/guides/discounts_recipes/Free-Shipping-Discount.md @@ -1,7 +1,6 @@ --- title: Free shipping disount excerpt: How to use free shipping discounts? -category: 639ba16d677235008f80045e categorySlug: discounts slug: free-shipping-discount type: basic diff --git a/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md b/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md index 0214ab623..c2e9ecb11 100644 --- a/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md +++ b/docs/guides/discounts_recipes/Give-Items-For-Free-Unit-Discount.md @@ -1,7 +1,6 @@ --- title: Give item(s) for free - unit discount excerpt: How to add free items to customers' orders? -category: 639ba16d677235008f80045e categorySlug: discounts slug: give-item-for-free-unit-discount type: basic diff --git a/docs/guides/discounts_recipes/Product-Specific-Discounts.md b/docs/guides/discounts_recipes/Product-Specific-Discounts.md index 380c32be2..002893d6e 100644 --- a/docs/guides/discounts_recipes/Product-Specific-Discounts.md +++ b/docs/guides/discounts_recipes/Product-Specific-Discounts.md @@ -1,7 +1,6 @@ --- title: Product-specific discounts excerpt: A recipe for using *applicable_to* validation rule -category: 639ba16d677235008f80045e categorySlug: discounts slug: discount-for-particular-product type: basic diff --git a/docs/guides/discounts_recipes/Stackable-Discounts-API.md b/docs/guides/discounts_recipes/Stackable-Discounts-API.md index fd2aa72d0..6394c6ffd 100644 --- a/docs/guides/discounts_recipes/Stackable-Discounts-API.md +++ b/docs/guides/discounts_recipes/Stackable-Discounts-API.md @@ -1,7 +1,6 @@ --- title: Stackable discounts API excerpt: -category: 639ba16d677235008f80045e categorySlug: discounts slug: manage-stackable-discounts type: basic diff --git a/docs/guides/distributions_recipes/CSV-Export-With-API.md b/docs/guides/distributions_recipes/CSV-Export-With-API.md index 224182063..4852bd75e 100644 --- a/docs/guides/distributions_recipes/CSV-Export-With-API.md +++ b/docs/guides/distributions_recipes/CSV-Export-With-API.md @@ -1,7 +1,6 @@ --- title: CSV export with API excerpt: null -category: 639ba16d677235008f80045d categorySlug: distribution-1 slug: csv-export type: basic diff --git a/docs/guides/distributions_recipes/Geofencing.md b/docs/guides/distributions_recipes/Geofencing.md index 50cbd299a..13f7c5ddc 100644 --- a/docs/guides/distributions_recipes/Geofencing.md +++ b/docs/guides/distributions_recipes/Geofencing.md @@ -1,7 +1,6 @@ --- title: Geofencing excerpt: -category: 639ba16d677235008f80045d categorySlug: distribution-1 slug: geofencing type: link diff --git a/docs/guides/distributions_recipes/Import-Legacy-Codes.md b/docs/guides/distributions_recipes/Import-Legacy-Codes.md index dd9fe200e..07efe095d 100644 --- a/docs/guides/distributions_recipes/Import-Legacy-Codes.md +++ b/docs/guides/distributions_recipes/Import-Legacy-Codes.md @@ -1,7 +1,6 @@ --- title: Import legacy codes excerpt: null -category: 639ba16d677235008f80045d categorySlug: distribution-1 slug: import-codes type: basic diff --git a/docs/guides/distributions_recipes/Messaging-Automation.md b/docs/guides/distributions_recipes/Messaging-Automation.md index 75969c161..62ebde939 100644 --- a/docs/guides/distributions_recipes/Messaging-Automation.md +++ b/docs/guides/distributions_recipes/Messaging-Automation.md @@ -1,7 +1,6 @@ --- title: Messaging automation excerpt: How to set up an automatic promotion delivery for a dynamic customer segment? -category: 639ba16d677235008f80045d categorySlug: distribution-1 slug: automatic-delivery type: basic diff --git a/docs/guides/getting_started/API-Endpoints.md b/docs/guides/getting_started/API-Endpoints.md index 49f23ef89..bf2287af4 100644 --- a/docs/guides/getting_started/API-Endpoints.md +++ b/docs/guides/getting_started/API-Endpoints.md @@ -1,7 +1,6 @@ --- title: API Endpoints excerpt: -category: 639ba16d677235008f80043f categorySlug: getting-started slug: api-endpoints type: basic diff --git a/docs/guides/getting_started/Authentication.md b/docs/guides/getting_started/Authentication.md index 6c35b248d..f6de24f9c 100644 --- a/docs/guides/getting_started/Authentication.md +++ b/docs/guides/getting_started/Authentication.md @@ -1,7 +1,6 @@ --- title: Authentication excerpt: Authorization methods and principles used to access the Voucherify platform HTTP APIs. -category: 639ba16d677235008f80043f categorySlug: getting-started slug: authentication type: basic diff --git a/docs/guides/getting_started/Home.md b/docs/guides/getting_started/Home.md index b46f6604b..e774efb92 100644 --- a/docs/guides/getting_started/Home.md +++ b/docs/guides/getting_started/Home.md @@ -1,7 +1,6 @@ --- title: Home excerpt: Welcome to [Voucherify's](https://www.voucherify.io) Developer Hub. -category: 639ba16d677235008f80043f categorySlug: getting-started slug: introduction type: basic diff --git a/docs/guides/getting_started/Integration-Checklist.md b/docs/guides/getting_started/Integration-Checklist.md index cc0805b0c..29431406b 100644 --- a/docs/guides/getting_started/Integration-Checklist.md +++ b/docs/guides/getting_started/Integration-Checklist.md @@ -1,7 +1,6 @@ --- title: Integration checklist excerpt: Get the documentation, sample code, and developer tools — everything you need to build digital promotions faster -category: 639ba16d677235008f80043f categorySlug: getting-started slug: welcome type: basic diff --git a/docs/guides/getting_started/Key-Concepts.md b/docs/guides/getting_started/Key-Concepts.md index 3190d81fa..05c2cae86 100644 --- a/docs/guides/getting_started/Key-Concepts.md +++ b/docs/guides/getting_started/Key-Concepts.md @@ -1,7 +1,6 @@ --- title: Key concepts excerpt: Voucherify offers several building blocks to help you implement promotional campaigns and integrate it with your stack. -category: 639ba16d677235008f80043f categorySlug: getting-started slug: key-concepts type: basic diff --git a/docs/guides/getting_started/Quickstart.md b/docs/guides/getting_started/Quickstart.md index 7a404535d..795526996 100644 --- a/docs/guides/getting_started/Quickstart.md +++ b/docs/guides/getting_started/Quickstart.md @@ -1,7 +1,6 @@ --- title: Quickstart excerpt: Get started with Voucherify API and dashboard by redeeming your first coupon code. -category: 639ba16d677235008f80043f categorySlug: getting-started slug: quickstart type: basic diff --git a/docs/guides/more/Roadmap.md b/docs/guides/more/Roadmap.md index e64c92105..24fa52038 100644 --- a/docs/guides/more/Roadmap.md +++ b/docs/guides/more/Roadmap.md @@ -1,7 +1,6 @@ --- title: Roadmap excerpt: -category: 639ba16d677235008f800441 categorySlug: more slug: roadmap type: link diff --git a/docs/guides/more/Status.md b/docs/guides/more/Status.md index 893f84944..aee30ebf3 100644 --- a/docs/guides/more/Status.md +++ b/docs/guides/more/Status.md @@ -1,7 +1,6 @@ --- title: Status excerpt: -category: 639ba16d677235008f800441 categorySlug: more slug: status type: link diff --git a/docs/guides/more/Support.md b/docs/guides/more/Support.md index 53431aca0..7d7051cb2 100644 --- a/docs/guides/more/Support.md +++ b/docs/guides/more/Support.md @@ -1,7 +1,6 @@ --- title: Support excerpt: -category: 639ba16d677235008f800441 categorySlug: more slug: support type: basic diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md b/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md index 77e0de29e..6966970ea 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-Async-Action-Object.md @@ -1,7 +1,6 @@ --- title: Async Action Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: async-actions-api slug: async-action-object diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md b/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md index cbfad2fcc..b39a49c71 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-Get-Async-Action.md @@ -1,7 +1,6 @@ --- title: Get Async Action type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-async-action parentDocSlug: async-actions-api diff --git a/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md b/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md index 2c7a2b16a..19b4fe25d 100644 --- a/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md +++ b/docs/reference-docs/ASYNC-ACTIONS-API-List-Async-Actions.md @@ -1,7 +1,6 @@ --- title: List Async Actions type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-async-actions parentDocSlug: async-actions-api diff --git a/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md index 6bb881e2f..96f2f304f 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Add-Voucher-With-Specific-Code-To-Campaign.md @@ -1,7 +1,6 @@ --- title: Add Voucher with Specific Code to Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-voucher-with-specific-code-to-campaign parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md index 6112804a1..0f723fffe 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Add-Vouchers-To-Campaign.md @@ -1,7 +1,6 @@ --- title: Add Vouchers to Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-vouchers-to-campaign parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md b/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md index 3227452ff..ab8faa8ba 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md +++ b/docs/reference-docs/CAMPAIGNS-API-Campaign-Object.md @@ -1,7 +1,6 @@ --- title: Campaign Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: campaigns-api slug: campaign-object diff --git a/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md index a00f40b46..a931c5750 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Create-Campaign.md @@ -1,7 +1,6 @@ --- title: Create Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-campaign parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md index 3af439cee..7fe823bd3 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Delete-Campaign.md @@ -1,7 +1,6 @@ --- title: Delete Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-campaign parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md index f6cbd6682..5bba866c0 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Disable-Campaign.md @@ -1,7 +1,6 @@ --- title: Disable Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: disable-campaign parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md index da219c7e2..aa16efc11 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Enable-Campaign.md @@ -1,7 +1,6 @@ --- title: Enable Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: enable-campaign parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md b/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md index 00c90be7f..bc215f114 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md +++ b/docs/reference-docs/CAMPAIGNS-API-Examine-Qualification.md @@ -1,7 +1,6 @@ --- title: Examine Qualification [Deprecated] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: examine-campaigns-qualification parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md index e516f18ea..6b4ccbf43 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Get-Campaign.md @@ -1,7 +1,6 @@ --- title: Get Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-campaign parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md index 22bc785ab..80a5f05bc 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md +++ b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign-Using-CSV.md @@ -1,7 +1,6 @@ --- title: Import Vouchers to Campaign by CSV type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-vouchers-to-campaign-using-csv parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md index f1ad06953..ef5925540 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Import-Vouchers-To-Campaign.md @@ -1,7 +1,6 @@ --- title: Import Vouchers to Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-vouchers-to-campaign parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md b/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md index 68293b1d4..5f2c29e52 100644 --- a/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md +++ b/docs/reference-docs/CAMPAIGNS-API-List-Campaigns.md @@ -1,7 +1,6 @@ --- title: List Campaigns type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-campaigns parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md b/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md index 9140e32c2..6d786b527 100644 --- a/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md +++ b/docs/reference-docs/CAMPAIGNS-API-Update-Campaign.md @@ -1,7 +1,6 @@ --- title: Update Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-campaign parentDocSlug: campaigns-api diff --git a/docs/reference-docs/CATEGORIES-API-Category-Object.md b/docs/reference-docs/CATEGORIES-API-Category-Object.md index 2ebe872f9..86b87a53a 100644 --- a/docs/reference-docs/CATEGORIES-API-Category-Object.md +++ b/docs/reference-docs/CATEGORIES-API-Category-Object.md @@ -1,7 +1,6 @@ --- title: Category Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: categories-api slug: category-object diff --git a/docs/reference-docs/CATEGORIES-API-Create-Category.md b/docs/reference-docs/CATEGORIES-API-Create-Category.md index f5322ba23..c69abe2ff 100644 --- a/docs/reference-docs/CATEGORIES-API-Create-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Create-Category.md @@ -1,7 +1,6 @@ --- title: Create Category type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-category parentDocSlug: categories-api diff --git a/docs/reference-docs/CATEGORIES-API-Delete-Category.md b/docs/reference-docs/CATEGORIES-API-Delete-Category.md index 2fb1fe53a..95eab5e11 100644 --- a/docs/reference-docs/CATEGORIES-API-Delete-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Delete-Category.md @@ -1,7 +1,6 @@ --- title: Delete Category type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-category parentDocSlug: categories-api diff --git a/docs/reference-docs/CATEGORIES-API-Get-Category.md b/docs/reference-docs/CATEGORIES-API-Get-Category.md index ae03a7811..aa4aea600 100644 --- a/docs/reference-docs/CATEGORIES-API-Get-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Get-Category.md @@ -1,7 +1,6 @@ --- title: Get Category type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-category parentDocSlug: categories-api diff --git a/docs/reference-docs/CATEGORIES-API-List-Categories.md b/docs/reference-docs/CATEGORIES-API-List-Categories.md index 176a7de2f..d2f203b9d 100644 --- a/docs/reference-docs/CATEGORIES-API-List-Categories.md +++ b/docs/reference-docs/CATEGORIES-API-List-Categories.md @@ -1,7 +1,6 @@ --- title: List Categories type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-categories parentDocSlug: categories-api diff --git a/docs/reference-docs/CATEGORIES-API-Update-Category.md b/docs/reference-docs/CATEGORIES-API-Update-Category.md index 68a090a57..345155055 100644 --- a/docs/reference-docs/CATEGORIES-API-Update-Category.md +++ b/docs/reference-docs/CATEGORIES-API-Update-Category.md @@ -1,7 +1,6 @@ --- title: Update Category type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-category parentDocSlug: categories-api diff --git a/docs/reference-docs/CONSENTS-API-Consents-Object.md b/docs/reference-docs/CONSENTS-API-Consents-Object.md index b161d1797..fa6417fe2 100644 --- a/docs/reference-docs/CONSENTS-API-Consents-Object.md +++ b/docs/reference-docs/CONSENTS-API-Consents-Object.md @@ -1,7 +1,6 @@ --- title: Consents Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: consents-api slug: consents-object diff --git a/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md b/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md index de33e7af3..338f84336 100644 --- a/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md +++ b/docs/reference-docs/CONSENTS-API-List-Consents-Client-Side.md @@ -1,7 +1,6 @@ --- title: List Consents (client-side) type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-consents-client-side parentDocSlug: consents-api diff --git a/docs/reference-docs/CONSENTS-API-List-Consents.md b/docs/reference-docs/CONSENTS-API-List-Consents.md index d181bcb31..c03d1a165 100644 --- a/docs/reference-docs/CONSENTS-API-List-Consents.md +++ b/docs/reference-docs/CONSENTS-API-List-Consents.md @@ -1,7 +1,6 @@ --- title: List Consents type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-consents parentDocSlug: consents-api diff --git a/docs/reference-docs/CUSTOMERS-API-Create-Customer.md b/docs/reference-docs/CUSTOMERS-API-Create-Customer.md index fb362c325..7abebdd31 100644 --- a/docs/reference-docs/CUSTOMERS-API-Create-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Create-Customer.md @@ -1,7 +1,6 @@ --- title: Create Customer type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-customer parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md b/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md index 55746efc1..5f09bb236 100644 --- a/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md +++ b/docs/reference-docs/CUSTOMERS-API-Customer-Activity-Object.md @@ -1,7 +1,6 @@ --- title: Customer Activity Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: customers-api slug: customer-activity-object diff --git a/docs/reference-docs/CUSTOMERS-API-Customer-Object.md b/docs/reference-docs/CUSTOMERS-API-Customer-Object.md index 01ef6d1a2..8d5ba4c79 100644 --- a/docs/reference-docs/CUSTOMERS-API-Customer-Object.md +++ b/docs/reference-docs/CUSTOMERS-API-Customer-Object.md @@ -1,7 +1,6 @@ --- title: Customer Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: customers-api slug: customer-object diff --git a/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md b/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md index 47677cadc..3fc7a73a2 100644 --- a/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md +++ b/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md @@ -1,7 +1,6 @@ --- title: Delete Customer Permanently type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-customer-permanently parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMERS-API-Get-Customer.md b/docs/reference-docs/CUSTOMERS-API-Get-Customer.md index 607110e1c..a258775bb 100644 --- a/docs/reference-docs/CUSTOMERS-API-Get-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Get-Customer.md @@ -1,7 +1,6 @@ --- title: Get Customer type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-customer parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md b/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md index e21ff196b..343f6b7e0 100644 --- a/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md +++ b/docs/reference-docs/CUSTOMERS-API-Import-Customers-Using-CSV.md @@ -1,7 +1,6 @@ --- title: Import and Update Customers using CSV type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-customers-using-csv parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md b/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md index f34fb0c41..0f7395dd5 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customer-Activities.md @@ -1,7 +1,6 @@ --- title: List Customer Activities type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-customer-activities parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md b/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md index 167f8672a..2cec39eff 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customer-Segments.md @@ -1,7 +1,6 @@ --- title: List Customer's Segments type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-customer-segments parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMERS-API-List-Customers.md b/docs/reference-docs/CUSTOMERS-API-List-Customers.md index 78903e7f9..ee4982d0c 100644 --- a/docs/reference-docs/CUSTOMERS-API-List-Customers.md +++ b/docs/reference-docs/CUSTOMERS-API-List-Customers.md @@ -1,7 +1,6 @@ --- title: List Customers type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-customers parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md b/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md index cf7aeb928..ea2c3b7b4 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md @@ -1,7 +1,6 @@ --- title: Update Customer's consents type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-customers-consents parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customer.md b/docs/reference-docs/CUSTOMERS-API-Update-Customer.md index 4d2c5e0c6..5f8ff0eba 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customer.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customer.md @@ -1,7 +1,6 @@ --- title: Update Customer type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-customer parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md index 1a74eed0c..29e2bdcfa 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md @@ -1,7 +1,6 @@ --- title: Update Customer's consents (client-side) type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-customers-consents-client-side parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md index acd382fd5..18597841b 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-In-Bulk.md @@ -1,7 +1,6 @@ --- title: Update Customers in bulk type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-customers-in-bulk parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md index 86150caf8..a4ba17e10 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Metadata-In-Bulk.md @@ -1,7 +1,6 @@ --- title: Update Customers' Metadata in bulk type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-customers-metadata-in-bulk parentDocSlug: customers-api diff --git a/docs/reference-docs/CUSTOMES-API-Delete-Customer.md b/docs/reference-docs/CUSTOMES-API-Delete-Customer.md index d152df2a3..431f2adcb 100644 --- a/docs/reference-docs/CUSTOMES-API-Delete-Customer.md +++ b/docs/reference-docs/CUSTOMES-API-Delete-Customer.md @@ -1,7 +1,6 @@ --- title: Delete Customer type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-customer parentDocSlug: customers-api diff --git a/docs/reference-docs/EVENTS-API-Custom-Event-Object.md b/docs/reference-docs/EVENTS-API-Custom-Event-Object.md index a2b1d43f2..7cd09e75b 100644 --- a/docs/reference-docs/EVENTS-API-Custom-Event-Object.md +++ b/docs/reference-docs/EVENTS-API-Custom-Event-Object.md @@ -1,7 +1,6 @@ --- title: Custom Event Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: events-api slug: custom-event-object diff --git a/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md b/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md index d99f1d29a..5964f8f47 100644 --- a/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md +++ b/docs/reference-docs/EVENTS-API-Track-Custom-Event-Client-Side.md @@ -1,7 +1,6 @@ --- title: Track Custom Event (client-side) type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: track-custom-event-client-side parentDocSlug: events-api diff --git a/docs/reference-docs/EVENTS-API-Track-Custom-Event.md b/docs/reference-docs/EVENTS-API-Track-Custom-Event.md index bc9178a8e..4f62b735c 100644 --- a/docs/reference-docs/EVENTS-API-Track-Custom-Event.md +++ b/docs/reference-docs/EVENTS-API-Track-Custom-Event.md @@ -1,7 +1,6 @@ --- title: Track Custom Event type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: track-custom-event parentDocSlug: events-api diff --git a/docs/reference-docs/EXPORTS-API-Create-Export.md b/docs/reference-docs/EXPORTS-API-Create-Export.md index 093a82f10..fba7fbaf8 100644 --- a/docs/reference-docs/EXPORTS-API-Create-Export.md +++ b/docs/reference-docs/EXPORTS-API-Create-Export.md @@ -1,7 +1,6 @@ --- title: Create Export type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-export parentDocSlug: exports-api diff --git a/docs/reference-docs/EXPORTS-API-Delete-Export.md b/docs/reference-docs/EXPORTS-API-Delete-Export.md index 607c8d667..baa827e29 100644 --- a/docs/reference-docs/EXPORTS-API-Delete-Export.md +++ b/docs/reference-docs/EXPORTS-API-Delete-Export.md @@ -1,7 +1,6 @@ --- title: Delete Export type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-export parentDocSlug: exports-api diff --git a/docs/reference-docs/EXPORTS-API-Download-Export.md b/docs/reference-docs/EXPORTS-API-Download-Export.md index 4980f88a5..3c1986d98 100644 --- a/docs/reference-docs/EXPORTS-API-Download-Export.md +++ b/docs/reference-docs/EXPORTS-API-Download-Export.md @@ -1,7 +1,6 @@ --- title: Download Export type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: download-export parentDocSlug: exports-api diff --git a/docs/reference-docs/EXPORTS-API-Export-Object.md b/docs/reference-docs/EXPORTS-API-Export-Object.md index 836b68d6a..141979252 100644 --- a/docs/reference-docs/EXPORTS-API-Export-Object.md +++ b/docs/reference-docs/EXPORTS-API-Export-Object.md @@ -1,7 +1,6 @@ --- title: Export Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: exports-api slug: export-object diff --git a/docs/reference-docs/EXPORTS-API-Get-Export.md b/docs/reference-docs/EXPORTS-API-Get-Export.md index 2bb3eee6b..c75d234ff 100644 --- a/docs/reference-docs/EXPORTS-API-Get-Export.md +++ b/docs/reference-docs/EXPORTS-API-Get-Export.md @@ -1,7 +1,6 @@ --- title: Get Export type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-export parentDocSlug: exports-api diff --git a/docs/reference-docs/EXPORTS-API-List-Exports.md b/docs/reference-docs/EXPORTS-API-List-Exports.md index 74ee59de1..9f397d9f4 100644 --- a/docs/reference-docs/EXPORTS-API-List-Exports.md +++ b/docs/reference-docs/EXPORTS-API-List-Exports.md @@ -1,7 +1,6 @@ --- title: List Exports type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-exports parentDocSlug: exports-api diff --git a/docs/reference-docs/Errors.md b/docs/reference-docs/Errors.md index bbfeb6f40..07abf7efd 100644 --- a/docs/reference-docs/Errors.md +++ b/docs/reference-docs/Errors.md @@ -1,7 +1,6 @@ --- title: Errors excerpt: Learn about the errors returned to responses and how you can customize them to improve your customer experience. -category: 639ba44d204cb60020b4b7ec categorySlug: introduction slug: errors type: basic diff --git a/docs/reference-docs/Establish-Validation-Session.md b/docs/reference-docs/Establish-Validation-Session.md index 63efeaf5b..95e938242 100644 --- a/docs/reference-docs/Establish-Validation-Session.md +++ b/docs/reference-docs/Establish-Validation-Session.md @@ -1,8 +1,6 @@ --- title: Establish Validation Session -category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab5 parentDocSlug: stackable-discounts-api slug: establish-validation-session type: link diff --git a/docs/reference-docs/Fetching-Data.md b/docs/reference-docs/Fetching-Data.md index bd77ca7a8..33500ec37 100644 --- a/docs/reference-docs/Fetching-Data.md +++ b/docs/reference-docs/Fetching-Data.md @@ -1,7 +1,6 @@ --- title: Fetching Data excerpt: Learn how to specify the data you would like to fetch. -category: 639ba44d204cb60020b4b7ec categorySlug: introduction slug: listing type: basic diff --git a/docs/reference-docs/Introduction.md b/docs/reference-docs/Introduction.md index 4e95d6d52..fbc7e8b6e 100644 --- a/docs/reference-docs/Introduction.md +++ b/docs/reference-docs/Introduction.md @@ -1,7 +1,6 @@ --- title: Introduction excerpt: What is Voucherify API? -category: 639ba44d204cb60020b4b7ec categorySlug: introduction slug: introduction-1 type: basic diff --git a/docs/reference-docs/LOCATIONS-API-Get-Location.md b/docs/reference-docs/LOCATIONS-API-Get-Location.md index 44e35535b..ed578ccc1 100644 --- a/docs/reference-docs/LOCATIONS-API-Get-Location.md +++ b/docs/reference-docs/LOCATIONS-API-Get-Location.md @@ -1,7 +1,6 @@ --- title: Get Location type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: locations-api slug: get-location diff --git a/docs/reference-docs/LOCATIONS-API-List-Locations.md b/docs/reference-docs/LOCATIONS-API-List-Locations.md index 815359955..fadb3ec0e 100644 --- a/docs/reference-docs/LOCATIONS-API-List-Locations.md +++ b/docs/reference-docs/LOCATIONS-API-List-Locations.md @@ -1,7 +1,6 @@ --- title: List Locations type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: locations-api slug: list-locations diff --git a/docs/reference-docs/LOCATIONS-API-Location-Object.md b/docs/reference-docs/LOCATIONS-API-Location-Object.md index 19bc1ae60..18e06f3be 100644 --- a/docs/reference-docs/LOCATIONS-API-Location-Object.md +++ b/docs/reference-docs/LOCATIONS-API-Location-Object.md @@ -1,7 +1,6 @@ --- title: Location Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: locations-api slug: location-object diff --git a/docs/reference-docs/LOYALTIES-API-Add-Member.md b/docs/reference-docs/LOYALTIES-API-Add-Member.md index 589ccb02b..39b75c48f 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Member.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Member.md @@ -1,7 +1,6 @@ --- title: Add Member type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-member parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md index 3bd0b3493..42a8d2cbb 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md @@ -1,7 +1,6 @@ --- title: Add or Remove Loyalty Card Balance type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-remove-loyalty-card-balance-1 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md index 25c018a0f..44e762ba9 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md @@ -1,7 +1,6 @@ --- title: Add or Remove Loyalty Card Balance type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-remove-loyalty-card-balance parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md index 72d34b6ae..8016e1a5a 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md @@ -1,7 +1,6 @@ --- title: Create Earning Rule type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-earning-rule parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md index 2dbbec4f4..b47703429 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md @@ -1,7 +1,6 @@ --- title: Create Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-loyalty-program parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md b/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md index f541007f0..5e8484e55 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md @@ -1,7 +1,6 @@ --- title: Create Points Expiration Export type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-points-expiration-export parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md b/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md index e7635462b..b31482694 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md @@ -1,7 +1,6 @@ --- title: Create Reward Assignment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-reward-assignment-1 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md index 4f15776e9..db8c44faa 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md @@ -1,7 +1,6 @@ --- title: Delete Earning Rule type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-earning-rule parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md index 23a62e786..ee396eb31 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md @@ -1,7 +1,6 @@ --- title: Delete Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-loyalty-program parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md b/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md index e20579dbc..a9ddd5285 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md @@ -1,7 +1,6 @@ --- title: Delete Reward Assignment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-reward-assignment-1 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md index dd0c8b42b..7bf3100d5 100644 --- a/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md @@ -1,7 +1,6 @@ --- title: Disable Earning Rule type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: disable-earning-rule parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md b/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md index 1f6c69437..c3c2f4bf6 100644 --- a/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Earning-Rule-Object.md @@ -1,7 +1,6 @@ --- title: Earning Rule Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: loyalties-api slug: earning-rule-object diff --git a/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md index 3ab836f88..8fbb21e1b 100644 --- a/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md @@ -1,7 +1,6 @@ --- title: Enable Earning Rule type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: enable-earning-rule parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md index 396db9045..6b691a19c 100644 --- a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md +++ b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md @@ -1,7 +1,6 @@ --- title: Export Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: export-loyalty-card-transactions-1 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md index f2ae209d1..3f8fe5988 100644 --- a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md +++ b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md @@ -1,7 +1,6 @@ --- title: Export Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: export-loyalty-card-transactions parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md b/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md index 43c8f2e82..a41832e73 100644 --- a/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md +++ b/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md @@ -1,7 +1,6 @@ --- title: Get Reward Assignment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-reward-assignment-2 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md index 341fad646..1e7262615 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md @@ -1,7 +1,6 @@ --- title: Get Earning Rule type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-earning-rule parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md index 006d457b9..8561b4d14 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md @@ -1,7 +1,6 @@ --- title: Get Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-loyalty-program parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md index 253051c23..a8d0c74dc 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md @@ -1,7 +1,6 @@ --- title: Get Loyalty Tier type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-loyalty-tier parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-1.md b/docs/reference-docs/LOYALTIES-API-Get-Member-1.md index 3e2b03d37..b2454e9c0 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-1.md @@ -1,7 +1,6 @@ --- title: Get Member type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-member-1 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md index 887866527..c2904a543 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md @@ -1,7 +1,6 @@ --- title: Get Member Activities type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-member-activities-1 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md index 40be2dba6..d7607b3fa 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md @@ -1,7 +1,6 @@ --- title: Get Member Activities type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-member-activities parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member.md b/docs/reference-docs/LOYALTIES-API-Get-Member.md index 9d67c8c3f..f713bcfcc 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member.md @@ -1,7 +1,6 @@ --- title: Get Member type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-member parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md b/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md index 9c573dd26..575680a6a 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md @@ -1,7 +1,6 @@ --- title: Get Points Expiration type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-points-expiration parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md b/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md index 0371a6ba1..186d2b1d4 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md @@ -1,7 +1,6 @@ --- title: Get Reward Assignment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-reward-assignment-1 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md b/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md index 4cdc5cd5b..1315b6e32 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md @@ -1,7 +1,6 @@ --- title: Get Reward Details type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-reward-details parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md b/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md index fdc69fe0e..10e08cb66 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md +++ b/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md @@ -1,7 +1,6 @@ --- title: List Earning Rules type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-earning-rules parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md index 47b4345ca..50b7771aa 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md @@ -1,7 +1,6 @@ --- title: List Loyalty Campaigns type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-programs parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md index 0628f9d35..62e2c86db 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md @@ -1,7 +1,6 @@ --- title: List Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-card-transactions-1 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md index 330d727ed..ae4fbe273 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md @@ -1,7 +1,6 @@ --- title: List Loyalty Card Transactions type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-card-transactions parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md index 726eb4bda..ad96bb241 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md @@ -1,7 +1,6 @@ --- title: List Loyalty Tier Earning Rules type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-tier-earning-rules parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md index 49300080b..b642f919a 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md @@ -1,7 +1,6 @@ --- title: List Loyalty Tier Rewards type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-tier-rewards parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md index 837a510df..c01b13fc9 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md @@ -1,7 +1,6 @@ --- title: List Loyalty Tiers type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-loyalty-tiers parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md b/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md index a38b545be..d8927ba05 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md +++ b/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md @@ -1,7 +1,6 @@ --- title: List Member Rewards type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-member-rewards parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md b/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md index d714727f6..d51df4d8b 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md +++ b/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md @@ -1,7 +1,6 @@ --- title: List Member's Loyalty Tiers type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-member-loyalty-tier parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Members.md b/docs/reference-docs/LOYALTIES-API-List-Members.md index 4a162a00f..891eb8691 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Members.md +++ b/docs/reference-docs/LOYALTIES-API-List-Members.md @@ -1,7 +1,6 @@ --- title: List Members type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-members parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md index ebd38f044..f032ffb58 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md +++ b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md @@ -1,7 +1,6 @@ --- title: List Reward Assignments type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-reward-assignments-1 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md index 3a509521d..4dd1ce1de 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md +++ b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md @@ -1,7 +1,6 @@ --- title: List Reward Assignments type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-reward-assignments-2 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md index 0fbc306a1..1a41cf633 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Campaign-Object.md @@ -1,7 +1,6 @@ --- title: Loyalty Campaign Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: loyalties-api slug: loyalty-campaign-object diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md index 9f05cf52d..aa532a397 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Card-Object.md @@ -1,7 +1,6 @@ --- title: Loyalty Card Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: loyalties-api slug: loyalty-card-object diff --git a/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md b/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md index 664045efc..cac33a389 100644 --- a/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md +++ b/docs/reference-docs/LOYALTIES-API-Loyalty-Tier-Object.md @@ -1,7 +1,6 @@ --- title: Loyalty Tier Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: loyalties-api slug: loyalty-tier-object diff --git a/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md b/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md index 1feb1f3e2..aa61ba501 100644 --- a/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md +++ b/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md @@ -1,7 +1,6 @@ --- title: Redeem Reward type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-reward parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md b/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md index d84256f25..55013d4bc 100644 --- a/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md +++ b/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md @@ -1,7 +1,6 @@ --- title: Redeem Reward type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-reward-1 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md b/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md index 21ad380f1..5eeaf1505 100644 --- a/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md +++ b/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md @@ -1,7 +1,6 @@ --- title: Transfer Loyalty Points type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: transfer-points parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md index a0c060fce..71d5506d1 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md @@ -1,7 +1,6 @@ --- title: Update Earning Rule type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-earning-rule parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md index a4fd73062..bc77b6727 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md @@ -1,7 +1,6 @@ --- title: Update Loyalty Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-loyalty-program parentDocSlug: loyalties-api diff --git a/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md b/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md index 54783e11f..0e242783c 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md @@ -1,7 +1,6 @@ --- title: Update Reward Assignment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-reward-assignment-1 parentDocSlug: loyalties-api diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md b/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md index 5088c7a97..01f977385 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-Get-Metadata-Schema.md @@ -1,7 +1,6 @@ --- title: Get Metadata Schema type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-metadata-schema parentDocSlug: metadata-schemas-api diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md b/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md index c6b670f6f..2f0d59d5b 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-List-Metadata-Schemas.md @@ -1,7 +1,6 @@ --- title: List Metadata Schemas type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-metadata-schemas parentDocSlug: metadata-schemas-api diff --git a/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md b/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md index 3ca639754..5612cda31 100644 --- a/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md +++ b/docs/reference-docs/METADATA-SCHEMAS-API-Metadata-Schema-Object.md @@ -1,7 +1,6 @@ --- title: Metadata Schema Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: metadata-schemas-api slug: metadata-schema-object diff --git a/docs/reference-docs/ORDERS-API-Create-Order.md b/docs/reference-docs/ORDERS-API-Create-Order.md index 02d8c7e10..427a6d6a6 100644 --- a/docs/reference-docs/ORDERS-API-Create-Order.md +++ b/docs/reference-docs/ORDERS-API-Create-Order.md @@ -1,7 +1,6 @@ --- title: Create Order type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-order parentDocSlug: orders-api diff --git a/docs/reference-docs/ORDERS-API-Create-Orders-Export.md b/docs/reference-docs/ORDERS-API-Create-Orders-Export.md index caf3a7183..87638a551 100644 --- a/docs/reference-docs/ORDERS-API-Create-Orders-Export.md +++ b/docs/reference-docs/ORDERS-API-Create-Orders-Export.md @@ -1,7 +1,6 @@ --- title: Create Orders Export type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-order-export parentDocSlug: orders-api diff --git a/docs/reference-docs/ORDERS-API-Get-Order.md b/docs/reference-docs/ORDERS-API-Get-Order.md index c68f88ab5..dbcfcebe0 100644 --- a/docs/reference-docs/ORDERS-API-Get-Order.md +++ b/docs/reference-docs/ORDERS-API-Get-Order.md @@ -1,7 +1,6 @@ --- title: Get Order type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-order parentDocSlug: orders-api diff --git a/docs/reference-docs/ORDERS-API-Import-Orders.md b/docs/reference-docs/ORDERS-API-Import-Orders.md index 07757ec53..586d5a730 100644 --- a/docs/reference-docs/ORDERS-API-Import-Orders.md +++ b/docs/reference-docs/ORDERS-API-Import-Orders.md @@ -1,7 +1,6 @@ --- title: Import Orders type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-orders parentDocSlug: orders-api diff --git a/docs/reference-docs/ORDERS-API-List-Orders.md b/docs/reference-docs/ORDERS-API-List-Orders.md index a63dd02c2..d1731c07b 100644 --- a/docs/reference-docs/ORDERS-API-List-Orders.md +++ b/docs/reference-docs/ORDERS-API-List-Orders.md @@ -1,7 +1,6 @@ --- title: List Orders type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-orders parentDocSlug: orders-api diff --git a/docs/reference-docs/ORDERS-API-Order-Object.md b/docs/reference-docs/ORDERS-API-Order-Object.md index 9775085ac..9bec16d73 100644 --- a/docs/reference-docs/ORDERS-API-Order-Object.md +++ b/docs/reference-docs/ORDERS-API-Order-Object.md @@ -1,7 +1,6 @@ --- title: Order Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: orders-api slug: order-object diff --git a/docs/reference-docs/ORDERS-API-Update-Order.md b/docs/reference-docs/ORDERS-API-Update-Order.md index 03252272f..5901e90ac 100644 --- a/docs/reference-docs/ORDERS-API-Update-Order.md +++ b/docs/reference-docs/ORDERS-API-Update-Order.md @@ -1,7 +1,6 @@ --- title: Update Order type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-order parentDocSlug: orders-api diff --git a/docs/reference-docs/Object-Schemas.md b/docs/reference-docs/Object-Schemas.md index 3d176392d..05936e976 100644 --- a/docs/reference-docs/Object-Schemas.md +++ b/docs/reference-docs/Object-Schemas.md @@ -1,7 +1,6 @@ --- title: Object Schemas excerpt: Schema model definitions -category: 639ba44d204cb60020b4b7ec categorySlug: introduction slug: object-schemas type: basic diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md index c397df1d9..05fb0ad1d 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Delete-Product-Collection.md @@ -1,7 +1,6 @@ --- title: Delete Product Collection type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-product-collection parentDocSlug: product-collections-api diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md index 849e5d675..cd9545268 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Product-Collections.md @@ -1,7 +1,6 @@ --- title: List Product Collections type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-product-collections parentDocSlug: product-collections-api diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md index f9b4278a8..eb43bb27d 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-List-Products-In-Collection.md @@ -1,7 +1,6 @@ --- title: List Products in Collection type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-products-in-collection parentDocSlug: product-collections-api diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md index ab923b344..22793c2f1 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-API-Product-Collection-Object.md @@ -1,7 +1,6 @@ --- title: Product Collection Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: product-collections-api slug: product-collection-object diff --git a/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md b/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md index 8fd12177f..025466528 100644 --- a/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md +++ b/docs/reference-docs/PRODUCT-COLLECTIONS-Get-Product-Collection.md @@ -1,7 +1,6 @@ --- title: Get Product Collection type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-product-collection parentDocSlug: product-collections-api diff --git a/docs/reference-docs/PRODUCTS-API-Create-Product.md b/docs/reference-docs/PRODUCTS-API-Create-Product.md index 3c58c97fb..3c593f265 100644 --- a/docs/reference-docs/PRODUCTS-API-Create-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Create-Product.md @@ -1,7 +1,6 @@ --- title: Create Product type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-product parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-Create-SKU.md b/docs/reference-docs/PRODUCTS-API-Create-SKU.md index 46a9b96df..c8eb600b3 100644 --- a/docs/reference-docs/PRODUCTS-API-Create-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Create-SKU.md @@ -1,7 +1,6 @@ --- title: Create SKU type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-sku parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-Delete-Product.md b/docs/reference-docs/PRODUCTS-API-Delete-Product.md index 601be3a5a..42062b6f2 100644 --- a/docs/reference-docs/PRODUCTS-API-Delete-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Delete-Product.md @@ -1,7 +1,6 @@ --- title: Delete Product type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-product parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-Delete-SKU.md b/docs/reference-docs/PRODUCTS-API-Delete-SKU.md index 3e5d627ba..e1666b761 100644 --- a/docs/reference-docs/PRODUCTS-API-Delete-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Delete-SKU.md @@ -1,7 +1,6 @@ --- title: Delete SKU type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-sku parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-Get-Product.md b/docs/reference-docs/PRODUCTS-API-Get-Product.md index 2b3b98a8d..86afae102 100644 --- a/docs/reference-docs/PRODUCTS-API-Get-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Get-Product.md @@ -1,7 +1,6 @@ --- title: Get Product type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-product parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-Get-SKU.md b/docs/reference-docs/PRODUCTS-API-Get-SKU.md index 32a6d4891..2e4f8ef94 100644 --- a/docs/reference-docs/PRODUCTS-API-Get-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Get-SKU.md @@ -1,7 +1,6 @@ --- title: Get SKU type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-sku parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md b/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md index b5be62499..394776565 100644 --- a/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md +++ b/docs/reference-docs/PRODUCTS-API-Import-Products-Using-CSV.md @@ -1,7 +1,6 @@ --- title: Import Products using CSV type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-products-using-csv parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md b/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md index fb65fe755..693862182 100644 --- a/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md +++ b/docs/reference-docs/PRODUCTS-API-Import-SKUS-Using-CSV.md @@ -1,7 +1,6 @@ --- title: Import SKUs using CSV type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-skus-using-csv parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-List-Products.md b/docs/reference-docs/PRODUCTS-API-List-Products.md index d065eaed7..40c6a4ac5 100644 --- a/docs/reference-docs/PRODUCTS-API-List-Products.md +++ b/docs/reference-docs/PRODUCTS-API-List-Products.md @@ -1,7 +1,6 @@ --- title: List Products type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-products parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md b/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md index e5d908ea1..e17d20279 100644 --- a/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md +++ b/docs/reference-docs/PRODUCTS-API-List-SKUS-In-Product.md @@ -1,7 +1,6 @@ --- title: List SKUs in Product type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-skus-in-product parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-Product-Object.md b/docs/reference-docs/PRODUCTS-API-Product-Object.md index 9e32f5325..b598bb02e 100644 --- a/docs/reference-docs/PRODUCTS-API-Product-Object.md +++ b/docs/reference-docs/PRODUCTS-API-Product-Object.md @@ -1,7 +1,6 @@ --- title: Product Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: products-api slug: product-object diff --git a/docs/reference-docs/PRODUCTS-API-SKU-Object.md b/docs/reference-docs/PRODUCTS-API-SKU-Object.md index 81d7f2ea6..bc7de6771 100644 --- a/docs/reference-docs/PRODUCTS-API-SKU-Object.md +++ b/docs/reference-docs/PRODUCTS-API-SKU-Object.md @@ -1,7 +1,6 @@ --- title: SKU Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: products-api slug: sku-object diff --git a/docs/reference-docs/PRODUCTS-API-Update-Product.md b/docs/reference-docs/PRODUCTS-API-Update-Product.md index 3e8d843f6..369d104ae 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Product.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Product.md @@ -1,7 +1,6 @@ --- title: Update Product type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-product parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md b/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md index cc4e6aec9..a4a640dd3 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Products-In-Bulk.md @@ -1,7 +1,6 @@ --- title: Update Products in bulk type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-products-in-bulk parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md b/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md index abefef1f5..bf4af71bf 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md +++ b/docs/reference-docs/PRODUCTS-API-Update-Products-Metadata-In-Bulk.md @@ -1,7 +1,6 @@ --- title: Update Products' Metadata in bulk type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-products-metadata-in-bulk parentDocSlug: products-api diff --git a/docs/reference-docs/PRODUCTS-API-Update-SKU.md b/docs/reference-docs/PRODUCTS-API-Update-SKU.md index 1d5c662fa..3a6065350 100644 --- a/docs/reference-docs/PRODUCTS-API-Update-SKU.md +++ b/docs/reference-docs/PRODUCTS-API-Update-SKU.md @@ -1,7 +1,6 @@ --- title: Update SKU type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-sku parentDocSlug: products-api diff --git a/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md b/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md index 6d04eaade..eef603156 100644 --- a/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-Add-Promotion-Tier-To-Campaign.md @@ -1,7 +1,6 @@ --- title: Add Promotion Tier to Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-promotion-tier-to-campaign parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md index db1ce1ad7..4b8355e4e 100644 --- a/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Create-Promotion-Stack.md @@ -1,7 +1,6 @@ --- title: Create Promotion Stack type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-promotion-stack parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md index 72e958b8f..99185324b 100644 --- a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Stack.md @@ -1,7 +1,6 @@ --- title: Delete Promotion Stack type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-promotion-stack parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md index 7bb006761..53c6554a0 100644 --- a/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Delete-Promotion-Tier.md @@ -1,7 +1,6 @@ --- title: Delete Promotion Tier type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-promotion-tier parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md index 8cd219266..acf3d8976 100644 --- a/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Disable-Promotion-Tier.md @@ -1,7 +1,6 @@ --- title: Disable Promotion Tier type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: disable-promotion-tier parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md index 988ac1fc2..8b78bd249 100644 --- a/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Enable-Promotion-Tier.md @@ -1,7 +1,6 @@ --- title: Enable Promotion Tier type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: enable-promotion-tier parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md index 44ad7b26c..d2ffdc4ce 100644 --- a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Stack.md @@ -1,7 +1,6 @@ --- title: Get Promotion Stack type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-promotion-stack parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md index 0a69bc0f5..ddf78f10d 100644 --- a/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Get-Promotion-Tier.md @@ -1,7 +1,6 @@ --- title: Get Promotion Tier type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-promotion-tier parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md index 2fdf6e10a..5dac142b2 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks-In-Campaign.md @@ -1,7 +1,6 @@ --- title: List Promotion Stacks in Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-promotion-stacks-in-campaign parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md index 298c99879..f19774443 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Stacks.md @@ -1,7 +1,6 @@ --- title: List Promotion Stacks type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-all-promotion-stacks parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md index 733e969ba..20f9406dc 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-Client-Side.md @@ -1,7 +1,6 @@ --- title: List Promotion Tiers (client-side) type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-promotion-tiers-client-side parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md index b654fd848..fa47e6881 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers-From-Campaign.md @@ -1,7 +1,6 @@ --- title: List Promotion Tiers from Campaign type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-promotion-tiers-from-campaign parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md index bab484698..3aff4a53e 100644 --- a/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md +++ b/docs/reference-docs/PROMOTIONS-API-List-Promotion-Tiers.md @@ -1,7 +1,6 @@ --- title: List Promotion Tiers type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-promotion-tiers parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md b/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md index 2f2a7f72d..55bfb7641 100644 --- a/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md +++ b/docs/reference-docs/PROMOTIONS-API-Promotion-Tier-Object.md @@ -1,7 +1,6 @@ --- title: Promotion Tier Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: promotions-api slug: promotion-tier-object diff --git a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md index 1db8dcf6b..21705d707 100644 --- a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md +++ b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Stack.md @@ -1,7 +1,6 @@ --- title: Update Promotion Stack type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-promotion-stack parentDocSlug: promotions-api diff --git a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md index 0106b5bea..5f5ae9cf5 100644 --- a/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md +++ b/docs/reference-docs/PROMOTIONS-API-Update-Promotion-Tier.md @@ -1,7 +1,6 @@ --- title: Update Promotion Tier type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-promotion-tier parentDocSlug: promotions-api diff --git a/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md b/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md index 18422530c..7275eaa4a 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md +++ b/docs/reference-docs/PUBLICATIONS-API-Create-Publication-1.md @@ -1,7 +1,6 @@ --- title: Create Publication type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-publication-1 parentDocSlug: publications-api diff --git a/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md b/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md index 705a33094..d47284a85 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md +++ b/docs/reference-docs/PUBLICATIONS-API-Create-Publication.md @@ -1,7 +1,6 @@ --- title: Create Publication type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-publication parentDocSlug: publications-api diff --git a/docs/reference-docs/PUBLICATIONS-API-List-Publications.md b/docs/reference-docs/PUBLICATIONS-API-List-Publications.md index 1d1534c2d..5652cdfd4 100644 --- a/docs/reference-docs/PUBLICATIONS-API-List-Publications.md +++ b/docs/reference-docs/PUBLICATIONS-API-List-Publications.md @@ -1,7 +1,6 @@ --- title: List Publications type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-publications parentDocSlug: publications-api diff --git a/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md b/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md index c19110c2e..95a3872c8 100644 --- a/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md +++ b/docs/reference-docs/PUBLICATIONS-API-Publication-Object.md @@ -1,7 +1,6 @@ --- title: Publication Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: publications-api slug: publication-object diff --git a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md index f431e5f63..97eac4b21 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility-Client-Side.md @@ -1,7 +1,6 @@ --- title: Check Eligibility (client-side) [Beta] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: qualifications-api slug: check-eligibility-client-side diff --git a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md index 90a70d561..28b8fbb94 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Check-Eligibility.md @@ -1,7 +1,6 @@ --- title: Check Eligibility [Beta] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: qualifications-api slug: check-eligibility diff --git a/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md b/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md index e9e06ea4e..1e40adadb 100644 --- a/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md +++ b/docs/reference-docs/QUALIFICATIONS-API-Qualification-Object.md @@ -1,7 +1,6 @@ --- title: Qualification Object [Beta] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: qualifications-api slug: qualification-object diff --git a/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md b/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md index 2840784e7..895d16abc 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md +++ b/docs/reference-docs/REDEMPTIONS-API-Get-Redemption.md @@ -1,7 +1,6 @@ --- title: Get Redemption type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-redemption parentDocSlug: redemptions-api diff --git a/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md b/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md index 8b3d95f88..a83aa2659 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md +++ b/docs/reference-docs/REDEMPTIONS-API-Get-Vouchers-Redemptions.md @@ -1,7 +1,6 @@ --- title: Get Voucher's Redemptions type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-voucher-redemptions parentDocSlug: redemptions-api diff --git a/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md b/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md index 0e99fb934..265cdeb5c 100644 --- a/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md +++ b/docs/reference-docs/REDEMPTIONS-API-List-Redemptions.md @@ -1,7 +1,6 @@ --- title: List Redemptions type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-redemptions parentDocSlug: redemptions-api diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md index 2a4c702c3..369cb8623 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Promotion.md @@ -1,7 +1,6 @@ --- title: Redeem Promotion [Deprecated] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-promotion parentDocSlug: redemptions-api diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md index dfad707a9..80974230e 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher-Client-Side.md @@ -1,7 +1,6 @@ --- title: Redeem Voucher (client-side) [Deprecated] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-voucher-client-side parentDocSlug: redemptions-api diff --git a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md index c959d74df..d251663a2 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redeem-Voucher.md @@ -1,7 +1,6 @@ --- title: Redeem Voucher [Deprecated] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-voucher parentDocSlug: redemptions-api diff --git a/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md b/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md index b0e429c51..7013a4d47 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md +++ b/docs/reference-docs/REDEMPTIONS-API-Redemption-Object.md @@ -1,7 +1,6 @@ --- title: Redemption Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: redemptions-api slug: redemption-object diff --git a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md index 3d58890be..51af51722 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md +++ b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption-Object.md @@ -1,7 +1,6 @@ --- title: Rollback Redemption Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: redemptions-api slug: rollback-redemption-object diff --git a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md index 67923e0ef..a0775dcbb 100644 --- a/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md +++ b/docs/reference-docs/REDEMPTIONS-API-Rollback-Redemption.md @@ -1,7 +1,6 @@ --- title: Rollback Redemption type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: rollback-redemption parentDocSlug: redemptions-api diff --git a/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md index 891b0d346..6a5e52309 100644 --- a/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md @@ -1,7 +1,6 @@ --- title: Create Reward Assignment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-reward-assignment parentDocSlug: rewards-api diff --git a/docs/reference-docs/REWARDS-API-Create-Reward.md b/docs/reference-docs/REWARDS-API-Create-Reward.md index a6da5ee92..a44e184ac 100644 --- a/docs/reference-docs/REWARDS-API-Create-Reward.md +++ b/docs/reference-docs/REWARDS-API-Create-Reward.md @@ -1,7 +1,6 @@ --- title: Create Reward type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-reward parentDocSlug: rewards-api diff --git a/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md index a145ae6d8..01a43aba6 100644 --- a/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md @@ -1,7 +1,6 @@ --- title: Delete Reward Assignment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-reward-assignment parentDocSlug: rewards-api diff --git a/docs/reference-docs/REWARDS-API-Delete-Reward.md b/docs/reference-docs/REWARDS-API-Delete-Reward.md index ec462af0b..815966e78 100644 --- a/docs/reference-docs/REWARDS-API-Delete-Reward.md +++ b/docs/reference-docs/REWARDS-API-Delete-Reward.md @@ -1,7 +1,6 @@ --- title: Delete Reward type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-reward parentDocSlug: rewards-api diff --git a/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md index c28f8b18a..e2865343f 100644 --- a/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md @@ -1,7 +1,6 @@ --- title: Get Reward Assignment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-reward-assignment parentDocSlug: rewards-api diff --git a/docs/reference-docs/REWARDS-API-Get-Reward.md b/docs/reference-docs/REWARDS-API-Get-Reward.md index bfa9cea00..de91c5ba3 100644 --- a/docs/reference-docs/REWARDS-API-Get-Reward.md +++ b/docs/reference-docs/REWARDS-API-Get-Reward.md @@ -1,7 +1,6 @@ --- title: Get Reward type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-reward parentDocSlug: rewards-api diff --git a/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md b/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md index 23bccff64..0b4095008 100644 --- a/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md +++ b/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md @@ -1,7 +1,6 @@ --- title: List Reward Assignments type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-reward-assignments parentDocSlug: rewards-api diff --git a/docs/reference-docs/REWARDS-API-List-Rewards.md b/docs/reference-docs/REWARDS-API-List-Rewards.md index 79babaa48..aef679512 100644 --- a/docs/reference-docs/REWARDS-API-List-Rewards.md +++ b/docs/reference-docs/REWARDS-API-List-Rewards.md @@ -1,7 +1,6 @@ --- title: List Rewards type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-rewards parentDocSlug: rewards-api diff --git a/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md b/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md index ed0f91038..9cbe82fd0 100644 --- a/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md +++ b/docs/reference-docs/REWARDS-API-Reward-Assignment-Object.md @@ -1,7 +1,6 @@ --- title: Reward Assignment Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: rewards-api slug: reward-assignment-object diff --git a/docs/reference-docs/REWARDS-API-Reward-Object.md b/docs/reference-docs/REWARDS-API-Reward-Object.md index 80c3b5905..d9adb7b30 100644 --- a/docs/reference-docs/REWARDS-API-Reward-Object.md +++ b/docs/reference-docs/REWARDS-API-Reward-Object.md @@ -1,7 +1,6 @@ --- title: Reward Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: rewards-api slug: reward-object diff --git a/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md index f6c68964b..bb05a1b30 100644 --- a/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md @@ -1,7 +1,6 @@ --- title: Update Reward Assignment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-reward-assignment parentDocSlug: rewards-api diff --git a/docs/reference-docs/REWARDS-API-Update-Reward.md b/docs/reference-docs/REWARDS-API-Update-Reward.md index 59557afce..8e6fac5db 100644 --- a/docs/reference-docs/REWARDS-API-Update-Reward.md +++ b/docs/reference-docs/REWARDS-API-Update-Reward.md @@ -1,7 +1,6 @@ --- title: Update Reward type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-reward parentDocSlug: rewards-api diff --git a/docs/reference-docs/SEGMENTS-API-Create-Segment.md b/docs/reference-docs/SEGMENTS-API-Create-Segment.md index 00fee66b2..a65ff6775 100644 --- a/docs/reference-docs/SEGMENTS-API-Create-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Create-Segment.md @@ -1,7 +1,6 @@ --- title: Create Segment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-segment parentDocSlug: segments-api diff --git a/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md b/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md index 7887016c9..b34373045 100644 --- a/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md +++ b/docs/reference-docs/SEGMENTS-API-Customer-Segment-Object.md @@ -1,7 +1,6 @@ --- title: Customer Segment Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: segments-api slug: customer-segment-object diff --git a/docs/reference-docs/SEGMENTS-API-Delete-Segment.md b/docs/reference-docs/SEGMENTS-API-Delete-Segment.md index 6be2434da..a840a6731 100644 --- a/docs/reference-docs/SEGMENTS-API-Delete-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Delete-Segment.md @@ -1,7 +1,6 @@ --- title: Delete Segment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-segment parentDocSlug: segments-api diff --git a/docs/reference-docs/SEGMENTS-API-Get-Segment.md b/docs/reference-docs/SEGMENTS-API-Get-Segment.md index 36a6fe0fd..39b1a3093 100644 --- a/docs/reference-docs/SEGMENTS-API-Get-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Get-Segment.md @@ -1,7 +1,6 @@ --- title: Get Segment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-segment parentDocSlug: segments-api diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md index 68186a051..ebfc0721e 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts-Client-Side.md @@ -1,7 +1,6 @@ --- title: Redeem Stackable Discounts (client-side) type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-stacked-discounts-client-side parentDocSlug: stackable-discounts-api diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md index b2944322e..8585b4204 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Redeem-Stackable-Discounts.md @@ -1,7 +1,6 @@ --- title: Redeem Stackable Discounts type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: redeem-stacked-discounts parentDocSlug: stackable-discounts-api diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md index e12253d06..532a996f9 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Rollback-Stackable-Redemptions.md @@ -1,7 +1,6 @@ --- title: Rollback Stackable Redemptions type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: rollback-stacked-redemptions parentDocSlug: stackable-discounts-api diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md index 030e6b112..6d9f14863 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Stackable-Redemptions-Object.md @@ -1,7 +1,6 @@ --- title: Stackable Redemptions Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: stackable-discounts-api slug: stackable-redemptions-object diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md index c57ee5077..3569cbd27 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts-Client-Side.md @@ -1,7 +1,6 @@ --- title: Validate Stackable Discounts (client-side) type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-stacked-discounts-client-side parentDocSlug: stackable-discounts-api diff --git a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md index b94e83ae7..be11b2eed 100644 --- a/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md +++ b/docs/reference-docs/STACKABLE-DISCOUNTS-API-Validate-Stackable-Discounts.md @@ -1,7 +1,6 @@ --- title: Validate Stackable Discounts type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-stacked-discounts parentDocSlug: stackable-discounts-api diff --git a/docs/reference-docs/Stacking-API-Overview.md b/docs/reference-docs/Stacking-API-Overview.md index f08a23c6c..06e0e2a24 100644 --- a/docs/reference-docs/Stacking-API-Overview.md +++ b/docs/reference-docs/Stacking-API-Overview.md @@ -1,8 +1,6 @@ --- title: Stacking API Overview -category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab5 parentDocSlug: stackable-discounts-api slug: stacking-api-overview type: link diff --git a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md index e5305a7da..a0096e024 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md @@ -1,7 +1,6 @@ --- title: Create Validation Rules type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-validation-rules parentDocSlug: validation-rules-api diff --git a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md index f442add27..e364cb6b3 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md @@ -1,7 +1,6 @@ --- title: Create Validation Rules Assignments type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-validation-rule-assignment parentDocSlug: validation-rules-api diff --git a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md index f7fa029a3..0959668d6 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md @@ -1,7 +1,6 @@ --- title: Delete Validation Rule Assignment type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-validation-rule-assignment parentDocSlug: validation-rules-api diff --git a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md index cf0c99394..2648ea4c1 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md @@ -1,7 +1,6 @@ --- title: Delete Validation Rule type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-validation-rules parentDocSlug: validation-rules-api diff --git a/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md index 4ac4fc054..585a778e8 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md @@ -1,7 +1,6 @@ --- title: Get Validation Rule type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-validation-rule parentDocSlug: validation-rules-api diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md index 08044d941..fd536c9a9 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md @@ -1,7 +1,6 @@ --- title: List Validation Rule Assignments type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-validation-rule-assignments parentDocSlug: validation-rules-api diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md index 362fe4362..e4dce54ce 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md @@ -1,7 +1,6 @@ --- title: List Validation Rules' Assignment(s) type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-validation-rules-assignments parentDocSlug: validation-rules-api diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md index 3dd72d67c..20aa6c11f 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md @@ -1,7 +1,6 @@ --- title: List Validation Rules type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-validation-rules parentDocSlug: validation-rules-api diff --git a/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md index 913e6811a..e877d0bb1 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md @@ -1,7 +1,6 @@ --- title: Update Validation Rule type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-validation-rule parentDocSlug: validation-rules-api diff --git a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md index f9d141c7e..93ea0e151 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Assignment-Object.md @@ -1,7 +1,6 @@ --- title: Validation Rule Assignment Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: validation-rules-api slug: validation-rule-assignment-object diff --git a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md index ea04969c0..931d6a277 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Validation-Rule-Object.md @@ -1,7 +1,6 @@ --- title: Validation Rule Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: validation-rules-api slug: validation-rule-object diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md b/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md index 2b20d1963..040dbbdbc 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Promotion-Tier.md @@ -1,7 +1,6 @@ --- title: Validate Promotion Tier [Deprecated] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-promotion-tier parentDocSlug: validations-api diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md b/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md index fa3c31310..19728be9d 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Promotions.md @@ -1,7 +1,6 @@ --- title: Validate Promotions [Deprecated] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-promotions parentDocSlug: validations-api diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md index fe1e5ba00..2bc4faf53 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher-Client-Side.md @@ -1,7 +1,6 @@ --- title: Validate Voucher (client-side) [Deprecated] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-voucher-client-side parentDocSlug: validations-api diff --git a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md index 871f8db1b..d1f2c0217 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md +++ b/docs/reference-docs/VALIDATIONS-API-Validate-Voucher.md @@ -1,7 +1,6 @@ --- title: Validate Voucher [Deprecated] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: validate-voucher parentDocSlug: validations-api diff --git a/docs/reference-docs/VALIDATIONS-API-Validation-Object.md b/docs/reference-docs/VALIDATIONS-API-Validation-Object.md index a86acf4a9..a1c9ccece 100644 --- a/docs/reference-docs/VALIDATIONS-API-Validation-Object.md +++ b/docs/reference-docs/VALIDATIONS-API-Validation-Object.md @@ -1,7 +1,6 @@ --- title: Validation Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: validations-api slug: validation-object diff --git a/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md b/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md index 6792627da..8f3e01bb4 100644 --- a/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md +++ b/docs/reference-docs/VOUCHERS-API-Add-Remove-Gift-Card-Balance.md @@ -1,7 +1,6 @@ --- title: Add or Remove Gift Card Balance type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: add-remove-gift-voucher-balance parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Create-Voucher.md b/docs/reference-docs/VOUCHERS-API-Create-Voucher.md index a8686f695..c7428d35d 100644 --- a/docs/reference-docs/VOUCHERS-API-Create-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Create-Voucher.md @@ -1,7 +1,6 @@ --- title: Create Voucher type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: create-voucher parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md b/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md index f58907baf..db8b25d38 100644 --- a/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Delete-Voucher.md @@ -1,7 +1,6 @@ --- title: Delete Voucher type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: delete-voucher parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md b/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md index 9f25a6619..e16038e55 100644 --- a/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Disable-Voucher.md @@ -1,7 +1,6 @@ --- title: Disable Voucher type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: disable-voucher parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md b/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md index 0e58a8a73..e1c7d439a 100644 --- a/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Enable-Voucher.md @@ -1,7 +1,6 @@ --- title: Enable Voucher type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: enable-voucher parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md b/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md index 2d73b14ea..0658cf53b 100644 --- a/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md +++ b/docs/reference-docs/VOUCHERS-API-Examine-Qualification.md @@ -1,7 +1,6 @@ --- title: Examine Qualification [Deprecated] type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: examine-vouchers-qualification parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md b/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md index cdb44480a..d6df109e9 100644 --- a/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md +++ b/docs/reference-docs/VOUCHERS-API-Export-Gift-Card-Transactions.md @@ -1,7 +1,6 @@ --- title: Export Gift Card Transactions type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: export-gift-card-transactions parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md b/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md index f152b0b99..ddaad09b5 100644 --- a/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md +++ b/docs/reference-docs/VOUCHERS-API-Generate-Random-Code.md @@ -1,7 +1,6 @@ --- title: Generate Random Code type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: generate-random-code parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Get-Voucher.md b/docs/reference-docs/VOUCHERS-API-Get-Voucher.md index f5acf85ff..dddfad065 100644 --- a/docs/reference-docs/VOUCHERS-API-Get-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Get-Voucher.md @@ -1,7 +1,6 @@ --- title: Get Voucher type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: get-voucher parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md b/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md index be75d4df9..f4c68692d 100644 --- a/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md +++ b/docs/reference-docs/VOUCHERS-API-Import-Vouchers-Using-CSV.md @@ -1,7 +1,6 @@ --- title: Import Vouchers using CSV type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-vouchers-using-csv parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md b/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md index 804092b5a..79a85f3ca 100644 --- a/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md +++ b/docs/reference-docs/VOUCHERS-API-Import-Vouchers.md @@ -1,7 +1,6 @@ --- title: Import Vouchers type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: import-vouchers parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md b/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md index 37dfb2326..d22b99e3c 100644 --- a/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md +++ b/docs/reference-docs/VOUCHERS-API-List-Gift-Card-Transactions.md @@ -1,7 +1,6 @@ --- title: List Gift Card Transactions type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-gift-card-transactions parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-List-Vouchers.md b/docs/reference-docs/VOUCHERS-API-List-Vouchers.md index 1f5a3c07a..41418f5ce 100644 --- a/docs/reference-docs/VOUCHERS-API-List-Vouchers.md +++ b/docs/reference-docs/VOUCHERS-API-List-Vouchers.md @@ -1,7 +1,6 @@ --- title: List Vouchers type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: list-vouchers parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md b/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md index 79da9a99e..04b28ef6a 100644 --- a/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md +++ b/docs/reference-docs/VOUCHERS-API-Release-Validation-Session.md @@ -1,7 +1,6 @@ --- title: Release Validation Session type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: release-validation-session parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Update-Voucher.md b/docs/reference-docs/VOUCHERS-API-Update-Voucher.md index 58d4bd377..ba4508833 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Voucher.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Voucher.md @@ -1,7 +1,6 @@ --- title: Update Voucher type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-voucher parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md index 9f1015ff2..1a658d2f4 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-In-Bulk.md @@ -1,7 +1,6 @@ --- title: Update Vouchers in bulk type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-vouchers-in-bulk parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md index e711b704e..ddf7eda85 100644 --- a/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md +++ b/docs/reference-docs/VOUCHERS-API-Update-Vouchers-Metadata-In-Bulk.md @@ -1,7 +1,6 @@ --- title: Update Vouchers' metadata in bulk type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api slug: update-vouchers-metadata-in-bulk parentDocSlug: vouchers-api diff --git a/docs/reference-docs/VOUCHERS-API-Voucher-Object.md b/docs/reference-docs/VOUCHERS-API-Voucher-Object.md index cdb5f1577..7bf9ecaab 100644 --- a/docs/reference-docs/VOUCHERS-API-Voucher-Object.md +++ b/docs/reference-docs/VOUCHERS-API-Voucher-Object.md @@ -1,7 +1,6 @@ --- title: Voucher Object type: endpoint -category: 639ba2628407100061f5faac categorySlug: voucherify-api parentDocSlug: vouchers-api slug: voucher-object diff --git a/docs/reference-docs/Validation-Session.md b/docs/reference-docs/Validation-Session.md index bd7408fde..09ff33744 100644 --- a/docs/reference-docs/Validation-Session.md +++ b/docs/reference-docs/Validation-Session.md @@ -1,8 +1,6 @@ --- title: Establish Validation Session -category: 639ba2628407100061f5faac categorySlug: voucherify-api -parentDoc: 639ba2658407100061f5fab3 parentDocSlug: validations-api slug: validation-session type: link diff --git a/docs/reference-docs/Versioning.md b/docs/reference-docs/Versioning.md index 27d4cce5c..e4e4fefe0 100644 --- a/docs/reference-docs/Versioning.md +++ b/docs/reference-docs/Versioning.md @@ -1,7 +1,6 @@ --- title: Versioning excerpt: What is the latest version? -category: 639ba44d204cb60020b4b7ec categorySlug: introduction slug: versioning type: basic From 04b71c9b816d824af7e5917f1267e210766c121f Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:59:17 +0200 Subject: [PATCH 50/62] remove script :) --- docs/script/.env.example | 1 - docs/script/index.js | 227 ---------------------------------- docs/script/package-lock.json | 11 -- docs/script/package.json | 6 - package-lock.json | 71 ----------- package.json | 14 --- 6 files changed, 330 deletions(-) delete mode 100644 docs/script/.env.example delete mode 100644 docs/script/index.js delete mode 100644 docs/script/package-lock.json delete mode 100644 docs/script/package.json delete mode 100644 package-lock.json delete mode 100644 package.json diff --git a/docs/script/.env.example b/docs/script/.env.example deleted file mode 100644 index a6948185d..000000000 --- a/docs/script/.env.example +++ /dev/null @@ -1 +0,0 @@ -README_IO_AUTH=rdme_x...... diff --git a/docs/script/index.js b/docs/script/index.js deleted file mode 100644 index 340a3502a..000000000 --- a/docs/script/index.js +++ /dev/null @@ -1,227 +0,0 @@ -const fetch = require("node-fetch"); -const fsPromises = require("fs/promises"); -const fs = require("fs"); -const path = require("path"); -require("dotenv").config(); - -const { version } = require("minimist")(process.argv.slice(2)); - -if (!version) { - console.log( - "`version` argument was not provided :/, next time try add `-- --version=************` at the end of file execution command" - ); - return; -} - -if (process.env.README_IO_AUTH?.length < 10) { - console.log("`README_IO_AUTH` was not provided in `.env` file :/"); - return; -} -const main = async () => { - const categories = await getCategories(); - const docsForCategories = new Map(); - - const basePath = path.join(__dirname, ".."); - const pathsToFiles = await getFiles(basePath); - - const baseOutputPath = path.join(basePath, ".bin"); - //create .bin folder - if (!fs.existsSync(baseOutputPath)) { - await fsPromises.mkdir(baseOutputPath); - } - - for (const pathToFile of pathsToFiles) { - const data = await fsPromises.readFile(pathToFile, { encoding: "utf8" }); - const fileCategorySlug = data - .match(/categorySlug: .*/)?.[0] - ?.split?.("categorySlug: ")?.[1]; - if (!fileCategorySlug) { - console.log(`error, ${fileCategorySlug}, ${pathToFile}`); - continue; - } - const category = categories - .filter((c) => c.slug.includes(fileCategorySlug)) - .sort( - (a, b) => - new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime() - )?.[0]; - if (!category) { - console.log(`error, ${fileCategorySlug}, ${category}, ${pathToFile}`); - continue; - } - - const categorySlug = category.slug; - - //handling reference-docs aka. "parentDoc: id" - const replaceParentDoc = { old: "", new: "" }; - const parentDocFile = data - .match(/parentDoc: .*/)?.[0] - ?.split?.("parentDoc: ")?.[1]; - if (parentDocFile) { - if (!docsForCategories.get(categorySlug)) { - docsForCategories.set( - categorySlug, - await getDocsForCategory(categorySlug) - ); - } - const docsForCategory = docsForCategories.get(categorySlug); - const docSlug = data.match(/\nslug: .*/)?.[0]?.split?.("slug: ")?.[1]; - const allowedMissing = [ - "establish-validation-session", - "stacking-api-overview", - "validation-session", - ]; - if (allowedMissing.includes(docSlug)) { - const parentDocSlug = data - .match(/parentDocSlug: .*/)?.[0] - ?.split?.("parentDocSlug: ")?.[1]; - if (!parentDocSlug) { - console.log(`error! parentDocSlug was not provided in ${pathToFile}`); - throw new Error("Missing parentDocSlug"); - } - const parentDoc = docsForCategory.find( - (categoryDoc) => categoryDoc.slug === parentDocSlug - ); - if (!parentDoc) { - console.log(`error, ${parentDocSlug}, ${docSlug}, ${pathToFile}`); - throw new Error("parentDoc not found"); - } - replaceParentDoc.old = `parentDoc: ${parentDocFile}`; - replaceParentDoc.new = `parentDoc: ${parentDoc._id}`; - } else { - const parentDoc = docsForCategory.find((categoryDocs) => - categoryDocs.children.find((doc) => doc.slug === docSlug) - ); - - await fsPromises.writeFile( - pathToFile.replace(pathToFile, pathToFile), - data - .replace(/parentDoc: .*/, `parentDocSlug: ${parentDoc.slug}`) - .toString(), - "utf8" - ); - - if (!parentDoc?._id) { - console.log(`error, ${parentDocFile}, ${docSlug}, ${pathToFile}`); - console.log(JSON.stringify(docsForCategory)); - throw new Error("Missing parentDoc or parentDoc._id"); - } - replaceParentDoc.old = `parentDoc: ${parentDocFile}`; - replaceParentDoc.new = `parentDoc: ${parentDoc._id}`; - } - console.log("ok"); - } - - //folders that output data will be present - const folders = pathToFile - .replace(basePath, "") - .split("/") - .filter((e) => e && !e.endsWith(".md")) - .map((value, index, array) => { - let temp = value; - for (let i = 0; i < index; i++) { - temp = array[i] + "/" + temp; - } - return temp; - }); - - //checking if folders exists - for (const folder of folders) { - if (!fs.existsSync(baseOutputPath + "/" + folder)) { - await fsPromises.mkdir(baseOutputPath + "/" + folder); - } - } - - //saving to .bin folder - await fsPromises.writeFile( - pathToFile.replace(basePath, baseOutputPath), - replaceParentDoc.old && replaceParentDoc.new - ? data - .replace(/category: .*/, `category: ${category.id}`) - .replace(replaceParentDoc.old, replaceParentDoc.new) - .toString() - : data.replace(/category: .*/, `category: ${category.id}`).toString(), - "utf8" - ); - } -}; - -const getDocsForCategory = async (slug) => { - const options = { - method: "GET", - headers: { - "x-readme-version": version, - authorization: "Basic " + btoa(process.env.README_IO_AUTH + ":"), - }, - }; - - const response = await fetch( - `https://dash.readme.com/api/v1/categories/${slug}/docs`, - options - ); - - const responseJSON = await response.json(); - if (responseJSON.error) { - console.log(response); - throw new Error(responseJSON.error); - } - - if ( - !Array.isArray(responseJSON) || - responseJSON.find((element) => !element?._id) - ) { - console.log(responseJSON); - throw new Error(`Unknown response :/`); - } - return responseJSON; -}; -const getCategories = async () => { - const options = { - method: "GET", - headers: { - "x-readme-version": version, - authorization: "Basic " + btoa(process.env.README_IO_AUTH + ":"), - }, - }; - - const response = await fetch( - "https://dash.readme.com/api/v1/categories?perPage=100", - options - ); - - const responseJSON = await response.json(); - if (responseJSON.error) { - console.log(response); - throw new Error(responseJSON.error); - } - - if ( - !Array.isArray(responseJSON) || - responseJSON.find((element) => !element?.id) - ) { - console.log(responseJSON); - throw new Error(`Unknown response :/`); - } - return responseJSON; -}; -const getFiles = async (path) => { - const pathsToFiles = []; - const items = await fsPromises.readdir(path, { - withFileTypes: true, - }); - for (const item of items) { - const itemPath = path + `/${item.name}`; - if (item.isDirectory() && !itemPath.endsWith(".bin")) { - (await getFiles(itemPath)).forEach((value) => { - pathsToFiles.push(value); - }); - continue; - } - if (itemPath.endsWith(".md")) { - pathsToFiles.push(itemPath); - } - } - return pathsToFiles; -}; - -main(); diff --git a/docs/script/package-lock.json b/docs/script/package-lock.json deleted file mode 100644 index 05e70fa30..000000000 --- a/docs/script/package-lock.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "script", - "version": "1.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "version": "1.0.0" - } - } -} diff --git a/docs/script/package.json b/docs/script/package.json deleted file mode 100644 index 48c48a1ab..000000000 --- a/docs/script/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": "1.0.0", - "scripts": { - "start": "node index.js" - } -} diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 43ee98c91..000000000 --- a/package-lock.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "name": "docs", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "dependencies": { - "dotenv": "^16.3.1", - "minimist": "^1.2.8", - "node-fetch": "^2.7.0" - } - }, - "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/whatwg-url/node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "node_modules/whatwg-url/node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - } - } -} diff --git a/package.json b/package.json deleted file mode 100644 index 51fb38ffd..000000000 --- a/package.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": "1.0.0", - "scripts": { - "pre-publish": "npm run start --prefix docs/script", - "publish": "rdme docs ./docs/.bin", - "publish:guides": "rdme docs ./docs/.bin/guides", - "publish:reference-docs": "rdme docs ./docs/.bin/reference-docs" - }, - "dependencies": { - "dotenv": "^16.3.1", - "minimist": "^1.2.8", - "node-fetch": "^2.7.0" - } -} From 2f945ac66b0a8aefc14d3ebf13673031fe97a1ff Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 13:03:41 +0200 Subject: [PATCH 51/62] Update .gitignore --- .gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitignore b/.gitignore index 161a99c1a..1c2d52b6c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1 @@ -/node_modules .idea/* -/docs/.bin -/docs/.bin/* -/docs/script/.env From 1c4f86d09ed38625546db6e567f1ed7437360e4c Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 13:21:56 +0200 Subject: [PATCH 52/62] Update OpenAPI.json --- reference/OpenAPI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 40c61670b..45ec9c7da 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -75515,7 +75515,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/12_res_product-collections" + "$ref": "#/components/schemas/12_obj_product-collections_auto_update" }, "examples": { "Example": { From f77ac6d2988df8d9fd2bc9c1da29f2a9d9e642dc Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 13:45:16 +0200 Subject: [PATCH 53/62] Revert "Update OpenAPI.json" This reverts commit 1c4f86d09ed38625546db6e567f1ed7437360e4c. --- reference/OpenAPI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 45ec9c7da..40c61670b 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -75515,7 +75515,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/12_obj_product-collections_auto_update" + "$ref": "#/components/schemas/12_res_product-collections" }, "examples": { "Example": { From 5bb372ca9f1cb11a9dd14b709428b127e5af5052 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 13:56:34 +0200 Subject: [PATCH 54/62] Update OpenAPI.json --- reference/OpenAPI.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/OpenAPI.json b/reference/OpenAPI.json index 40c61670b..848ef6ddd 100644 --- a/reference/OpenAPI.json +++ b/reference/OpenAPI.json @@ -75795,7 +75795,7 @@ "tags": [ "PRODUCT COLLECTIONS API" ], - "summary": "delete-product-collection", + "summary": "Delete Product Collection", "description": "This method deletes a product collection.", "parameters": [], "security": [ From da9866109b3b3dee461f19bfd42dffd79d2e1e08 Mon Sep 17 00:00:00 2001 From: weronika-kurczyna <117282008+weronika-kurczyna@users.noreply.github.com> Date: Thu, 21 Sep 2023 16:08:24 +0200 Subject: [PATCH 55/62] update consents --- docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md | 2 +- .../CUSTOMERS-API-Update-Customers-Consents-Client-Side.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md b/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md index ea2c3b7b4..7af822242 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customer-Consents.md @@ -1,5 +1,5 @@ --- -title: Update Customer's consents +title: Update Customer's Consents type: endpoint categorySlug: voucherify-api slug: update-customers-consents diff --git a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md index 29e2bdcfa..d6756c1a4 100644 --- a/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md +++ b/docs/reference-docs/CUSTOMERS-API-Update-Customers-Consents-Client-Side.md @@ -1,5 +1,5 @@ --- -title: Update Customer's consents (client-side) +title: Update Customer's Consents (client-side) type: endpoint categorySlug: voucherify-api slug: update-customers-consents-client-side From 495abef81444084ad9064bfdc0b8d96bf32a9374 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 16:08:28 +0200 Subject: [PATCH 56/62] order alignment --- docs/reference-docs/EXPORTS-API-Create-Export.md | 2 +- docs/reference-docs/EXPORTS-API-Delete-Export.md | 2 +- docs/reference-docs/EXPORTS-API-Download-Export.md | 2 +- docs/reference-docs/EXPORTS-API-Get-Export.md | 2 +- docs/reference-docs/EXPORTS-API-List-Exports.md | 2 +- docs/reference-docs/SEGMENTS-API-Create-Segment.md | 2 +- docs/reference-docs/SEGMENTS-API-Delete-Segment.md | 2 +- docs/reference-docs/SEGMENTS-API-Get-Segment.md | 2 +- .../VALIDATION-RULES-API-Create-Validation-Rule.md | 2 +- .../VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md | 2 +- .../VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md | 2 +- .../VALIDATION-RULES-API-Delete-Validation-Rule.md | 2 +- docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md | 2 +- .../VALIDATION-RULES-API-List-Validation-Rule-Assignments.md | 2 +- .../VALIDATION-RULES-API-List-Validation-Rules-Assignments.md | 2 +- .../VALIDATION-RULES-API-List-Validation-Rules.md | 2 +- .../VALIDATION-RULES-API-Update-Validation-Rule.md | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/reference-docs/EXPORTS-API-Create-Export.md b/docs/reference-docs/EXPORTS-API-Create-Export.md index fba7fbaf8..f4f0720b8 100644 --- a/docs/reference-docs/EXPORTS-API-Create-Export.md +++ b/docs/reference-docs/EXPORTS-API-Create-Export.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: create-export parentDocSlug: exports-api hidden: false -order: 4 +order: 5 --- [block:html] { diff --git a/docs/reference-docs/EXPORTS-API-Delete-Export.md b/docs/reference-docs/EXPORTS-API-Delete-Export.md index baa827e29..d83e0fbec 100644 --- a/docs/reference-docs/EXPORTS-API-Delete-Export.md +++ b/docs/reference-docs/EXPORTS-API-Delete-Export.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: delete-export parentDocSlug: exports-api hidden: false -order: 5 +order: 6 --- [block:html] { diff --git a/docs/reference-docs/EXPORTS-API-Download-Export.md b/docs/reference-docs/EXPORTS-API-Download-Export.md index 3c1986d98..2028676d7 100644 --- a/docs/reference-docs/EXPORTS-API-Download-Export.md +++ b/docs/reference-docs/EXPORTS-API-Download-Export.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: download-export parentDocSlug: exports-api hidden: false -order: 3 +order: 4 --- [block:html] { diff --git a/docs/reference-docs/EXPORTS-API-Get-Export.md b/docs/reference-docs/EXPORTS-API-Get-Export.md index c75d234ff..455d59585 100644 --- a/docs/reference-docs/EXPORTS-API-Get-Export.md +++ b/docs/reference-docs/EXPORTS-API-Get-Export.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-export parentDocSlug: exports-api hidden: false -order: 2 +order: 3 --- [block:html] { diff --git a/docs/reference-docs/EXPORTS-API-List-Exports.md b/docs/reference-docs/EXPORTS-API-List-Exports.md index 9f397d9f4..6516b6547 100644 --- a/docs/reference-docs/EXPORTS-API-List-Exports.md +++ b/docs/reference-docs/EXPORTS-API-List-Exports.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-exports parentDocSlug: exports-api hidden: false -order: 1 +order: 2 --- [block:html] { diff --git a/docs/reference-docs/SEGMENTS-API-Create-Segment.md b/docs/reference-docs/SEGMENTS-API-Create-Segment.md index a65ff6775..9d6e0e248 100644 --- a/docs/reference-docs/SEGMENTS-API-Create-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Create-Segment.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: create-segment parentDocSlug: segments-api hidden: false -order: 2 +order: 3 --- [block:html] { diff --git a/docs/reference-docs/SEGMENTS-API-Delete-Segment.md b/docs/reference-docs/SEGMENTS-API-Delete-Segment.md index a840a6731..646bdd3c1 100644 --- a/docs/reference-docs/SEGMENTS-API-Delete-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Delete-Segment.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: delete-segment parentDocSlug: segments-api hidden: false -order: 3 +order: 4 --- [block:html] { diff --git a/docs/reference-docs/SEGMENTS-API-Get-Segment.md b/docs/reference-docs/SEGMENTS-API-Get-Segment.md index 39b1a3093..d4d3585cd 100644 --- a/docs/reference-docs/SEGMENTS-API-Get-Segment.md +++ b/docs/reference-docs/SEGMENTS-API-Get-Segment.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-segment parentDocSlug: segments-api hidden: false -order: 1 +order: 2 --- [block:html] { diff --git a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md index a0096e024..af85a3c4d 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rule.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: create-validation-rules parentDocSlug: validation-rules-api hidden: false -order: 3 +order: 5 --- [block:html] { diff --git a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md index e364cb6b3..7aa9abb00 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Create-Validation-Rules-Assignments.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: create-validation-rule-assignment parentDocSlug: validation-rules-api hidden: false -order: 8 +order: 9 --- [block:html] { diff --git a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md index 0959668d6..a9372eac3 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule-Assignment.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: delete-validation-rule-assignment parentDocSlug: validation-rules-api hidden: false -order: 9 +order: 10 --- [block:html] { diff --git a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md index 2648ea4c1..16fcb00d3 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Delete-Validation-Rule.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: delete-validation-rules parentDocSlug: validation-rules-api hidden: false -order: 5 +order: 7 --- [block:html] { diff --git a/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md index 585a778e8..ab0f1a2e0 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Get-Validation-Rule.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-validation-rule parentDocSlug: validation-rules-api hidden: false -order: 2 +order: 4 --- [block:html] { diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md index fd536c9a9..d992561ca 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rule-Assignments.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-validation-rule-assignments parentDocSlug: validation-rules-api hidden: false -order: 7 +order: 9 --- [block:html] { diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md index e4dce54ce..0a2a2a0a4 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules-Assignments.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-validation-rules-assignments parentDocSlug: validation-rules-api hidden: false -order: 6 +order: 8 --- [block:html] { diff --git a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md index 20aa6c11f..223f44739 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md +++ b/docs/reference-docs/VALIDATION-RULES-API-List-Validation-Rules.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-validation-rules parentDocSlug: validation-rules-api hidden: false -order: 1 +order: 3 --- [block:html] { diff --git a/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md b/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md index e877d0bb1..cc0405ca2 100644 --- a/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md +++ b/docs/reference-docs/VALIDATION-RULES-API-Update-Validation-Rule.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: update-validation-rule parentDocSlug: validation-rules-api hidden: false -order: 4 +order: 6 --- [block:html] { From 78d4092ad87a230434f5bb8337908c75ab9ce1d0 Mon Sep 17 00:00:00 2001 From: weronika-kurczyna <117282008+weronika-kurczyna@users.noreply.github.com> Date: Thu, 21 Sep 2023 16:11:37 +0200 Subject: [PATCH 57/62] order (customers) --- .../reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md | 2 +- docs/reference-docs/CUSTOMES-API-Delete-Customer.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md b/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md index 3fc7a73a2..332f16211 100644 --- a/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md +++ b/docs/reference-docs/CUSTOMERS-API-Delete-Customer-Permanently.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: delete-customer-permanently parentDocSlug: customers-api hidden: false -order: 10 +order: 13 --- [block:html] { diff --git a/docs/reference-docs/CUSTOMES-API-Delete-Customer.md b/docs/reference-docs/CUSTOMES-API-Delete-Customer.md index 431f2adcb..98308f87a 100644 --- a/docs/reference-docs/CUSTOMES-API-Delete-Customer.md +++ b/docs/reference-docs/CUSTOMES-API-Delete-Customer.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: delete-customer parentDocSlug: customers-api hidden: false -order: 9 +order: 12 --- [block:html] { From ffd9b5cb26b4ba0591e1069047074d7a295e0723 Mon Sep 17 00:00:00 2001 From: weronika-kurczyna <117282008+weronika-kurczyna@users.noreply.github.com> Date: Thu, 21 Sep 2023 16:24:12 +0200 Subject: [PATCH 58/62] loyalties --- docs/reference-docs/LOYALTIES-API-Add-Member.md | 2 +- .../LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md | 2 +- .../LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md | 2 +- docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md | 2 +- docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md | 2 +- .../LOYALTIES-API-Create-Points-Expiration-Export.md | 2 +- docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md | 2 +- docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md | 2 +- docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md | 2 +- docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md | 2 +- docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md | 2 +- docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md | 2 +- .../LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md | 2 +- .../LOYALTIES-API-Export-Loyalty-Card-Transactions.md | 2 +- docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Member-1.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Member.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md | 2 +- docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md | 2 +- docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md | 2 +- docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md | 2 +- .../LOYALTIES-API-List-Loyalty-Card-Transactions-1.md | 2 +- .../LOYALTIES-API-List-Loyalty-Card-Transactions.md | 2 +- .../LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md | 2 +- .../reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md | 2 +- docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md | 2 +- docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md | 2 +- .../reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md | 2 +- docs/reference-docs/LOYALTIES-API-List-Members.md | 2 +- .../reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md | 2 +- .../reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md | 2 +- docs/reference-docs/LOYALTIES-API-Redeem-Reward.md | 2 +- docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md | 2 +- docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md | 4 ++-- docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md | 2 +- docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md | 2 +- .../LOYALTIES-API-Update-Reward-Assignment-1.md | 2 +- 43 files changed, 44 insertions(+), 44 deletions(-) diff --git a/docs/reference-docs/LOYALTIES-API-Add-Member.md b/docs/reference-docs/LOYALTIES-API-Add-Member.md index 39b75c48f..527e98727 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Member.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Member.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: add-member parentDocSlug: loyalties-api hidden: false -order: 9 +order: 13 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md index 42a8d2cbb..644c8f482 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance-1.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: add-remove-loyalty-card-balance-1 parentDocSlug: loyalties-api hidden: false -order: 13 +order: 17 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md index 44e762ba9..1d921f47a 100644 --- a/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md +++ b/docs/reference-docs/LOYALTIES-API-Add-Or-Remove-Loyalty-Card-Balance.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: add-remove-loyalty-card-balance parentDocSlug: loyalties-api hidden: false -order: 12 +order: 16 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md index 8016e1a5a..416c6a915 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Earning-Rule.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: create-earning-rule parentDocSlug: loyalties-api hidden: false -order: 23 +order: 27 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md index b47703429..9aa733859 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Loyalty-Campaign.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: create-loyalty-program parentDocSlug: loyalties-api hidden: false -order: 3 +order: 7 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md b/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md index 5e8484e55..5a08519fa 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Points-Expiration-Export.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: create-points-expiration-export parentDocSlug: loyalties-api hidden: false -order: 20 +order: 24 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md b/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md index b31482694..6f5710c59 100644 --- a/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md +++ b/docs/reference-docs/LOYALTIES-API-Create-Reward-Assignment.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: create-reward-assignment-1 parentDocSlug: loyalties-api hidden: false -order: 36 +order: 40 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md index db8c44faa..a31361dad 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Earning-Rule.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: delete-earning-rule parentDocSlug: loyalties-api hidden: false -order: 25 +order: 29 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md index ee396eb31..8ac65fa31 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Loyalty-Campaign.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: delete-loyalty-program parentDocSlug: loyalties-api hidden: false -order: 5 +order: 9 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md b/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md index a9ddd5285..58be80e32 100644 --- a/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md +++ b/docs/reference-docs/LOYALTIES-API-Delete-Reward-Assignment.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: delete-reward-assignment-1 parentDocSlug: loyalties-api hidden: false -order: 38 +order: 42 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md index 7bf3100d5..96a684430 100644 --- a/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Disable-Earning-Rule.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: disable-earning-rule parentDocSlug: loyalties-api hidden: false -order: 27 +order: 31 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md index 8fbb21e1b..2d2ee9409 100644 --- a/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Enable-Earning-Rule.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: enable-earning-rule parentDocSlug: loyalties-api hidden: false -order: 26 +order: 30 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md index 6b691a19c..129e84e4f 100644 --- a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md +++ b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions-1.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: export-loyalty-card-transactions-1 parentDocSlug: loyalties-api hidden: false -order: 17 +order: 22 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md index 3f8fe5988..906e98e9e 100644 --- a/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md +++ b/docs/reference-docs/LOYALTIES-API-Export-Loyalty-Card-Transactions.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: export-loyalty-card-transactions parentDocSlug: loyalties-api hidden: false -order: 18 +order: 21 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md b/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md index a41832e73..e7b8ffe13 100644 --- a/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md +++ b/docs/reference-docs/LOYALTIES-API-GET-Reward-Assignment-2.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-reward-assignment-2 parentDocSlug: loyalties-api hidden: false -order: 35 +order: 39 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md index 1e7262615..1e498dd24 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Earning-Rule.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-earning-rule parentDocSlug: loyalties-api hidden: false -order: 22 +order: 26 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md index 8561b4d14..a5a465d17 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Campaign.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-loyalty-program parentDocSlug: loyalties-api hidden: false -order: 2 +order: 6 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md index a8d0c74dc..3bc23b722 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Loyalty-Tier.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-loyalty-tier parentDocSlug: loyalties-api hidden: false -order: 40 +order: 44 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-1.md b/docs/reference-docs/LOYALTIES-API-Get-Member-1.md index b2454e9c0..f1a45abca 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-1.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-member-1 parentDocSlug: loyalties-api hidden: false -order: 8 +order: 12 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md index c2904a543..54ddfff4b 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities-1.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-member-activities-1 parentDocSlug: loyalties-api hidden: false -order: 11 +order: 15 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md index d7607b3fa..aabd6faeb 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member-Activities.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-member-activities parentDocSlug: loyalties-api hidden: false -order: 10 +order: 14 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Get-Member.md b/docs/reference-docs/LOYALTIES-API-Get-Member.md index f713bcfcc..7eb09059a 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Member.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Member.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-member parentDocSlug: loyalties-api hidden: false -order: 7 +order: 11 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md b/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md index 575680a6a..bd341c967 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Points-Expiration.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-points-expiration parentDocSlug: loyalties-api hidden: false -order: 19 +order: 23 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md b/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md index 186d2b1d4..398245340 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Reward-Assignment-1.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-reward-assignment-1 parentDocSlug: loyalties-api hidden: false -order: 34 +order: 38 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md b/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md index 1315b6e32..df4ea92ea 100644 --- a/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md +++ b/docs/reference-docs/LOYALTIES-API-Get-Reward-Details.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-reward-details parentDocSlug: loyalties-api hidden: false -order: 29 +order: 33 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md b/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md index 10e08cb66..ddbc878a7 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md +++ b/docs/reference-docs/LOYALTIES-API-List-Earning-Rules.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-earning-rules parentDocSlug: loyalties-api hidden: false -order: 21 +order: 25 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md index 50b7771aa..3a546ef05 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Campaigns.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-loyalty-programs parentDocSlug: loyalties-api hidden: false -order: 1 +order: 5 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md index 62e2c86db..a18343b8d 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions-1.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-loyalty-card-transactions-1 parentDocSlug: loyalties-api hidden: false -order: 15 +order: 20 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md index ae4fbe273..a099f2216 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Card-Transactions.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-loyalty-card-transactions parentDocSlug: loyalties-api hidden: false -order: 16 +order: 19 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md index ad96bb241..4815dbca5 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Earning-Rules.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-loyalty-tier-earning-rules parentDocSlug: loyalties-api hidden: false -order: 42 +order: 46 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md index b642f919a..1db2ac6e2 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tier-Rewards.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-loyalty-tier-rewards parentDocSlug: loyalties-api hidden: false -order: 43 +order: 47 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md index c01b13fc9..90e1f6037 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md +++ b/docs/reference-docs/LOYALTIES-API-List-Loyalty-Tiers.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-loyalty-tiers parentDocSlug: loyalties-api hidden: false -order: 39 +order: 43 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md b/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md index d8927ba05..720626c6b 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md +++ b/docs/reference-docs/LOYALTIES-API-List-Member-Rewards.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-member-rewards parentDocSlug: loyalties-api hidden: false -order: 28 +order: 32 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md b/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md index d51df4d8b..74c927b93 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md +++ b/docs/reference-docs/LOYALTIES-API-List-Members-Loyalty-Tier.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-member-loyalty-tier parentDocSlug: loyalties-api hidden: false -order: 41 +order: 45 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Members.md b/docs/reference-docs/LOYALTIES-API-List-Members.md index 891eb8691..9f274c208 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Members.md +++ b/docs/reference-docs/LOYALTIES-API-List-Members.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-members parentDocSlug: loyalties-api hidden: false -order: 6 +order: 10 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md index f032ffb58..d9d905062 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md +++ b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-1.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-reward-assignments-1 parentDocSlug: loyalties-api hidden: false -order: 32 +order: 36 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md index 4dd1ce1de..294e5ee20 100644 --- a/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md +++ b/docs/reference-docs/LOYALTIES-API-List-Reward-Assignments-2.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-reward-assignments-2 parentDocSlug: loyalties-api hidden: false -order: 33 +order: 37 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md b/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md index aa61ba501..75292f528 100644 --- a/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md +++ b/docs/reference-docs/LOYALTIES-API-Redeem-Reward.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: redeem-reward parentDocSlug: loyalties-api hidden: false -order: 30 +order: 34 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md b/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md index 55013d4bc..ca6c0896e 100644 --- a/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md +++ b/docs/reference-docs/LOYALTIES-API-Reedem-Reward-1.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: redeem-reward-1 parentDocSlug: loyalties-api hidden: false -order: 31 +order: 35 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md b/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md index 5eeaf1505..62a39b1ed 100644 --- a/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md +++ b/docs/reference-docs/LOYALTIES-API-Transfer-Loyalty-Points.md @@ -1,11 +1,11 @@ --- -title: Transfer Loyalty Points +title: Transfer Points type: endpoint categorySlug: voucherify-api slug: transfer-points parentDocSlug: loyalties-api hidden: false -order: 14 +order: 18 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md b/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md index 71d5506d1..3037f1f97 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Earning-Rule.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: update-earning-rule parentDocSlug: loyalties-api hidden: false -order: 24 +order: 28 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md b/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md index bc77b6727..33a9c236a 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Loyalty-Campaign.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: update-loyalty-program parentDocSlug: loyalties-api hidden: false -order: 4 +order: 8 --- [block:html] { diff --git a/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md b/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md index 0e242783c..75eb5d408 100644 --- a/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md +++ b/docs/reference-docs/LOYALTIES-API-Update-Reward-Assignment-1.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: update-reward-assignment-1 parentDocSlug: loyalties-api hidden: false -order: 37 +order: 41 --- [block:html] { From 06a18269526d423cd1ee3a1079deb9325ff87794 Mon Sep 17 00:00:00 2001 From: weronika-kurczyna <117282008+weronika-kurczyna@users.noreply.github.com> Date: Thu, 21 Sep 2023 16:30:34 +0200 Subject: [PATCH 59/62] rewards --- docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md | 2 +- docs/reference-docs/REWARDS-API-Create-Reward.md | 2 +- docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md | 2 +- docs/reference-docs/REWARDS-API-Delete-Reward.md | 2 +- docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md | 2 +- docs/reference-docs/REWARDS-API-Get-Reward.md | 2 +- docs/reference-docs/REWARDS-API-List-Reward-Assignments.md | 2 +- docs/reference-docs/REWARDS-API-List-Rewards.md | 2 +- docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md | 2 +- docs/reference-docs/REWARDS-API-Update-Reward.md | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md index 6a5e52309..08ad261af 100644 --- a/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Create-Reward-Assignment.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: create-reward-assignment parentDocSlug: rewards-api hidden: false -order: 8 +order: 10 --- [block:html] { diff --git a/docs/reference-docs/REWARDS-API-Create-Reward.md b/docs/reference-docs/REWARDS-API-Create-Reward.md index a44e184ac..4cc10559e 100644 --- a/docs/reference-docs/REWARDS-API-Create-Reward.md +++ b/docs/reference-docs/REWARDS-API-Create-Reward.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: create-reward parentDocSlug: rewards-api hidden: false -order: 3 +order: 5 --- [block:html] { diff --git a/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md index 01a43aba6..f67334e14 100644 --- a/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Delete-Reward-Assignment.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: delete-reward-assignment parentDocSlug: rewards-api hidden: false -order: 10 +order: 12 --- [block:html] { diff --git a/docs/reference-docs/REWARDS-API-Delete-Reward.md b/docs/reference-docs/REWARDS-API-Delete-Reward.md index 815966e78..eb7c4e18c 100644 --- a/docs/reference-docs/REWARDS-API-Delete-Reward.md +++ b/docs/reference-docs/REWARDS-API-Delete-Reward.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: delete-reward parentDocSlug: rewards-api hidden: false -order: 5 +order: 7 --- [block:html] { diff --git a/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md index e2865343f..61adc9fcb 100644 --- a/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Get-Reward-Assignment.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-reward-assignment parentDocSlug: rewards-api hidden: false -order: 7 +order: 9 --- [block:html] { diff --git a/docs/reference-docs/REWARDS-API-Get-Reward.md b/docs/reference-docs/REWARDS-API-Get-Reward.md index de91c5ba3..4558c50e2 100644 --- a/docs/reference-docs/REWARDS-API-Get-Reward.md +++ b/docs/reference-docs/REWARDS-API-Get-Reward.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: get-reward parentDocSlug: rewards-api hidden: false -order: 2 +order: 4 --- [block:html] { diff --git a/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md b/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md index 0b4095008..9bd2f0635 100644 --- a/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md +++ b/docs/reference-docs/REWARDS-API-List-Reward-Assignments.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-reward-assignments parentDocSlug: rewards-api hidden: false -order: 6 +order: 8 --- [block:html] { diff --git a/docs/reference-docs/REWARDS-API-List-Rewards.md b/docs/reference-docs/REWARDS-API-List-Rewards.md index aef679512..c5407d477 100644 --- a/docs/reference-docs/REWARDS-API-List-Rewards.md +++ b/docs/reference-docs/REWARDS-API-List-Rewards.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: list-rewards parentDocSlug: rewards-api hidden: false -order: 1 +order: 3 --- [block:html] { diff --git a/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md b/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md index bb05a1b30..c26b2c04b 100644 --- a/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md +++ b/docs/reference-docs/REWARDS-API-Update-Reward-Assignment.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: update-reward-assignment parentDocSlug: rewards-api hidden: false -order: 9 +order: 11 --- [block:html] { diff --git a/docs/reference-docs/REWARDS-API-Update-Reward.md b/docs/reference-docs/REWARDS-API-Update-Reward.md index 8e6fac5db..057625905 100644 --- a/docs/reference-docs/REWARDS-API-Update-Reward.md +++ b/docs/reference-docs/REWARDS-API-Update-Reward.md @@ -5,7 +5,7 @@ categorySlug: voucherify-api slug: update-reward parentDocSlug: rewards-api hidden: false -order: 4 +order: 6 --- [block:html] { From 221825e9ea2dbd3495c118f8a346f1187e7ec13b Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 21 Sep 2023 17:15:55 +0200 Subject: [PATCH 60/62] Update Update-Order-Standard-Work.md --- automation/Update-Order-Standard-Work.md | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/automation/Update-Order-Standard-Work.md b/automation/Update-Order-Standard-Work.md index 48457abe1..3b512334c 100644 --- a/automation/Update-Order-Standard-Work.md +++ b/automation/Update-Order-Standard-Work.md @@ -6,20 +6,7 @@ The following sequence of actions should be taken to successfully update the Dev > 📘 Important > -> If you create a new version of documentation in readme, such as by copying an existing version and renaming the version name, readme.io will create new page IDs and new category IDs. This means that some pre-work is needed for a new version of the documentation. - -## CategoriesIds **IMPORTANT** - -This documentation can be used in multiple readmeIo versions at the same time, but this creates a problem since each `.md` file contains categoryId information and this categoryId is strictly connected to a version. Because of that, during contribution please DO NOT check the categoryId information, simply ignore such changes in repo. -But since the categoryId information can be inaccurate in your project, you need to do following steps: - -- 1st time? - - Go to `docs` folder - - Run `npm install` command - - Copy `.env.example` to `.env` and fill the file with your readmeIo auth token -- Nth time? - - Go to `docs` folder - - run `npm start -- --version=xxxxxxxxxx` np. `npm start -- --version=2018-08-01` where `version` please put your readme io project version +> If you create a new version of documentation in readme, such as by copying an existing version and renaming the version name, readme.io will create new page IDs and new category IDs. This means that some pre-work is needed for a new version of the documentation. ### Pre-work From 991c0b4379884872092da8038a640433672a385d Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Fri, 22 Sep 2023 07:52:47 +0200 Subject: [PATCH 61/62] merge upstream/master --- .idea/.gitignore | 5 +++++ .idea/aws.xml | 17 +++++++++++++++++ .idea/vcs.xml | 6 ++++++ 3 files changed, 28 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/aws.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 000000000..b58b603fe --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/aws.xml b/.idea/aws.xml new file mode 100644 index 000000000..ec328d0bb --- /dev/null +++ b/.idea/aws.xml @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..35eb1ddfb --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file From 4bb93dbca07e3158b10b483081c30928ea32c5dd Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Fri, 22 Sep 2023 07:56:35 +0200 Subject: [PATCH 62/62] delete idea --- .idea/.gitignore | 5 ----- .idea/aws.xml | 17 ----------------- .idea/vcs.xml | 6 ------ 3 files changed, 28 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/aws.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index b58b603fe..000000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ diff --git a/.idea/aws.xml b/.idea/aws.xml deleted file mode 100644 index ec328d0bb..000000000 --- a/.idea/aws.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1ddfb..000000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file