[
  {
    "title": "Introduction",
    "slug": "introduction",
    "category": "Introduction",
    "order": 1
  },
  {
    "title": "Auth Types",
    "slug": "auth-types",
    "category": "Users",
    "order": 1
  },
  {
    "title": "Users",
    "slug": "users",
    "category": "Users",
    "order": 1.5
  },
  {
    "title": "Register (Email & Password)",
    "slug": "register-email-password",
    "category": "Users",
    "order": 2,
    "endpoint": {
      "method": "POST",
      "path": "/v1/users/register",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/register-email-password-request.json",
      "fieldsPath": "/api-schemas/users/register-email-password-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/register-email-password-response.json"
    }
  },
  {
    "title": "Register (Mobile & OTP)",
    "slug": "register-mobile-otp",
    "category": "Users",
    "order": 3,
    "endpoint": {
      "method": "POST",
      "path": "/v1/users/register",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/register-mobile-otp-request.json",
      "fieldsPath": "/api-schemas/users/register-mobile-otp-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/register-mobile-otp-response.json"
    }
  },
  {
    "title": "Login (Email & Password)",
    "slug": "login-email-password",
    "category": "Users",
    "order": 4,
    "endpoint": {
      "method": "POST",
      "path": "/v1/users/login",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/login-email-password-request.json",
      "fieldsPath": "/api-schemas/users/login-email-password-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/login-email-password-response.json"
    }
  },
  {
    "title": "Login (Mobile & OTP)",
    "slug": "login-mobile-otp",
    "category": "Users",
    "order": 5,
    "endpoint": {
      "method": "POST",
      "path": "/v1/users/login",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/login-mobile-otp-request.json",
      "fieldsPath": "/api-schemas/users/login-mobile-otp-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/login-mobile-otp-response.json"
    }
  },
  {
    "title": "Register (Mobile & Password)",
    "slug": "register-mobile-password",
    "category": "Users",
    "order": 6,
    "endpoint": {
      "method": "POST",
      "path": "/v1/users/register",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/register-mobile-password-request.json",
      "fieldsPath": "/api-schemas/users/register-mobile-password-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/register-mobile-password-response.json"
    }
  },
  {
    "title": "Login (Mobile & Password)",
    "slug": "login-mobile-password",
    "category": "Users",
    "order": 7,
    "endpoint": {
      "method": "POST",
      "path": "/v1/users/login",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/login-mobile-password-request.json",
      "fieldsPath": "/api-schemas/users/login-mobile-password-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/login-mobile-password-response.json"
    }
  },
  {
    "title": "Verify",
    "slug": "verify",
    "category": "Users",
    "order": 8,
    "endpoint": {
      "method": "POST",
      "path": "/v1/users/verify",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/verify-request.json",
      "fieldsPath": "/api-schemas/users/verify-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/verify-response.json"
    }
  },
  {
    "title": "Users List",
    "slug": "users-list",
    "category": "Users",
    "order": 9,
    "endpoint": {
      "method": "GET",
      "path": "/v1/users",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/users-list-request.json",
      "fieldsPath": "/api-schemas/users/users-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/users-list-response.json"
    }
  },
  {
    "title": "User Detail",
    "slug": "user-detail",
    "category": "Users",
    "order": 10,
    "endpoint": {
      "method": "GET",
      "path": "/v1/users/{{user_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/user-detail-request.json",
      "fieldsPath": "/api-schemas/users/user-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/user-detail-response.json"
    }
  },
  {
    "title": "Account Followers",
    "slug": "account-followers",
    "category": "Users",
    "order": 11,
    "endpoint": {
      "method": "GET",
      "path": "/v1/users/account_followers/{{account_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/account-followers-request.json",
      "fieldsPath": "/api-schemas/users/account-followers-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/account-followers-response.json"
    }
  },
  {
    "title": "Token Refresh",
    "slug": "token-refresh",
    "category": "Users",
    "order": 12,
    "endpoint": {
      "method": "GET",
      "path": "/v1/users/token/refresh",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/token-refresh-request.json",
      "fieldsPath": "/api-schemas/users/token-refresh-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/token-refresh-response.json"
    }
  },
  {
    "title": "Update User",
    "slug": "update-user",
    "category": "Users",
    "order": 13,
    "endpoint": {
      "method": "PATCH",
      "path": "/v1/users/{{user_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/update-user-request.json",
      "fieldsPath": "/api-schemas/users/update-user-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/update-user-response.json"
    }
  },
  {
    "title": "Logout",
    "slug": "logout",
    "category": "Users",
    "order": 14,
    "endpoint": {
      "method": "POST",
      "path": "/v1/users/logout",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/users/logout-request.json",
      "fieldsPath": "/api-schemas/users/logout-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/users/logout-response.json"
    }
  },
  {
    "title": "Accounts",
    "slug": "accounts",
    "category": "Accounts",
    "order": 14.5
  },
  {
    "title": "Add Account",
    "slug": "add-account",
    "category": "Accounts",
    "order": 15,
    "endpoint": {
      "method": "POST",
      "path": "/v1/accounts",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/accounts/add-account-request.json",
      "fieldsPath": "/api-schemas/accounts/add-account-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/accounts/add-account-response.json"
    }
  },
  {
    "title": "Edit Account",
    "slug": "edit-account",
    "category": "Accounts",
    "order": 16,
    "endpoint": {
      "method": "PUT",
      "path": "/v1/accounts/{{account_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/accounts/edit-account-request.json",
      "fieldsPath": "/api-schemas/accounts/edit-account-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/accounts/edit-account-response.json"
    }
  },
  {
    "title": "Patch Account",
    "slug": "patch-account",
    "category": "Accounts",
    "order": 17,
    "endpoint": {
      "method": "PATCH",
      "path": "/v1/accounts/{{account_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/accounts/patch-account-request.json",
      "fieldsPath": "/api-schemas/accounts/patch-account-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/accounts/patch-account-response.json"
    }
  },
  {
    "title": "Account List",
    "slug": "account-list",
    "category": "Accounts",
    "order": 18,
    "endpoint": {
      "method": "GET",
      "path": "/v1/accounts",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/accounts/account-list-request.json",
      "fieldsPath": "/api-schemas/accounts/account-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/accounts/account-list-response.json"
    }
  },
  {
    "title": "Account Detail",
    "slug": "account-detail",
    "category": "Accounts",
    "order": 19,
    "endpoint": {
      "method": "GET",
      "path": "/v1/accounts/{{account_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/accounts/account-detail-request.json",
      "fieldsPath": "/api-schemas/accounts/account-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/accounts/account-detail-response.json"
    }
  },
  {
    "title": "Block Account",
    "slug": "block-account",
    "category": "Accounts",
    "order": 20,
    "endpoint": {
      "method": "POST",
      "path": "/v1/accounts/{{account_id}}/block",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/accounts/block-account-request.json",
      "fieldsPath": "/api-schemas/accounts/block-account-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/accounts/block-account-response.json"
    }
  },
  {
    "title": "Moderate Account",
    "slug": "moderate-account",
    "category": "Accounts",
    "order": 21,
    "endpoint": {
      "method": "POST",
      "path": "/v1/accounts/{{account_id}}/moderate",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/accounts/moderate-account-request.json",
      "fieldsPath": "/api-schemas/accounts/moderate-account-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/accounts/moderate-account-response.json"
    }
  },
  {
    "title": "Listings",
    "slug": "listings",
    "category": "Catalogue",
    "order": 22
  },
  {
    "title": "Add Listing",
    "slug": "listings/add-listing",
    "category": "Catalogue",
    "order": 23,
    "endpoint": {
      "method": "POST",
      "path": "/products/v1/listings",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__add-listing-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__add-listing-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__add-listing-response.json"
    }
  },
  {
    "title": "Edit Listing",
    "slug": "listings/edit-listing",
    "category": "Catalogue",
    "order": 24,
    "endpoint": {
      "method": "PATCH",
      "path": "/products/v1/listings/{{listing_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__edit-listing-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__edit-listing-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__edit-listing-response.json"
    }
  },
  {
    "title": "Listings List",
    "slug": "listings/listings-list",
    "category": "Catalogue",
    "order": 25,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/listings",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__listings-list-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__listings-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__listings-list-response.json"
    }
  },
  {
    "title": "Listing Detail",
    "slug": "listings/listing-detail",
    "category": "Catalogue",
    "order": 26,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/listings/{{listing_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__listing-detail-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__listing-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__listing-detail-response.json"
    }
  },
  {
    "title": "Search Suggestions",
    "slug": "listings/search-suggestions",
    "category": "Catalogue",
    "order": 27,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/listings/search/suggestions",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__search-suggestions-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__search-suggestions-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__search-suggestions-response.json"
    }
  },
  {
    "title": "Delete Listing",
    "slug": "listings/delete-listing",
    "category": "Catalogue",
    "order": 28,
    "endpoint": {
      "method": "DELETE",
      "path": "/products/v1/listings/{{listing_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__delete-listing-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__delete-listing-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__delete-listing-response.json"
    }
  },
  {
    "title": "Mark as Sold",
    "slug": "listings/mark-as-sold",
    "category": "Catalogue",
    "order": 29,
    "endpoint": {
      "method": "POST",
      "path": "/products/v1/listings/{{listing_id}}/sold",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__mark-as-sold-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__mark-as-sold-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__mark-as-sold-response.json"
    }
  },
  {
    "title": "Moderate Listings",
    "slug": "listings/moderate-listings",
    "category": "Catalogue",
    "order": 30,
    "endpoint": {
      "method": "POST",
      "path": "/products/v1/listings/{{listing_id}}/moderate",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__moderate-listings-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__moderate-listings-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__moderate-listings-response.json"
    }
  },
  {
    "title": "Listings Likes",
    "slug": "listings/listings-likes",
    "category": "Catalogue",
    "order": 31,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/listings/likes",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__listings-likes-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__listings-likes-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__listings-likes-response.json"
    }
  },
  {
    "title": "Unique Locations",
    "slug": "listings/unique-locations",
    "category": "Catalogue",
    "order": 32,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/listings/unique/locations",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__unique-locations-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__unique-locations-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__unique-locations-response.json"
    }
  },
  {
    "title": "Listings Schedules Per Day",
    "slug": "listings/listings-schedules-per-day",
    "category": "Catalogue",
    "order": 33,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/listings/{{listing_id}}/schedules_per_day",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__listings-schedules-per-day-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__listings-schedules-per-day-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__listings-schedules-per-day-response.json"
    }
  },
  {
    "title": "Create Negotiations",
    "slug": "listings/create-negotiations",
    "category": "Catalogue",
    "order": 34,
    "endpoint": {
      "method": "POST",
      "path": "/products/v1/listings/{{listing_id}}/negotiations",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__create-negotiations-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__create-negotiations-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__create-negotiations-response.json"
    }
  },
  {
    "title": "Update Negotiation Status",
    "slug": "listings/update-negotiation-status",
    "category": "Catalogue",
    "order": 35,
    "endpoint": {
      "method": "PATCH",
      "path": "/products/v1/listings/{{listing_id}}/negotiations/{{negotiation_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__update-negotiation-status-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__update-negotiation-status-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__update-negotiation-status-response.json"
    }
  },
  {
    "title": "Reported Listings [ADMIN]",
    "slug": "listings/reported-listings-admin",
    "category": "Catalogue",
    "order": 36,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/listings/reported/list",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listings__reported-listings-admin-request.json",
      "fieldsPath": "/api-schemas/catalogue/listings__reported-listings-admin-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listings__reported-listings-admin-response.json"
    }
  },
  {
    "title": "Listing Variant Types",
    "slug": "listing-variant-types/listing-variant-types",
    "category": "Catalogue",
    "order": 37,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/variant_types",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-types-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-types-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-types-response.json"
    }
  },
  {
    "title": "Listing Variant Type Detail",
    "slug": "listing-variant-types/listing-variant-type-detail",
    "category": "Catalogue",
    "order": 38,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/variant_types/{{variant_type_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-type-detail-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-type-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-type-detail-response.json"
    }
  },
  {
    "title": "Add Listing Variant Type",
    "slug": "listing-variant-types/add-listing-variant-type",
    "category": "Catalogue",
    "order": 39,
    "endpoint": {
      "method": "POST",
      "path": "/products/v1/variant_types",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__add-listing-variant-type-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variant-types__add-listing-variant-type-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__add-listing-variant-type-response.json"
    }
  },
  {
    "title": "Edit Listing Variant Type",
    "slug": "listing-variant-types/edit-listing-variant-type",
    "category": "Catalogue",
    "order": 40,
    "endpoint": {
      "method": "PUT",
      "path": "/products/v1/variant_types/{{variant_type_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__edit-listing-variant-type-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variant-types__edit-listing-variant-type-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__edit-listing-variant-type-response.json"
    }
  },
  {
    "title": "Delete Listing Variant Type",
    "slug": "listing-variant-types/delete-listing-variant-type",
    "category": "Catalogue",
    "order": 41,
    "endpoint": {
      "method": "DELETE",
      "path": "/products/v1/variant_types/{{variant_type_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__delete-listing-variant-type-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variant-types__delete-listing-variant-type-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__delete-listing-variant-type-response.json"
    }
  },
  {
    "title": "Listing Variant Type Values",
    "slug": "listing-variant-types/listing-variant-type-values",
    "category": "Catalogue",
    "order": 42,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/variant_types/{{variant_type_id}}/values",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-type-values-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-type-values-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-type-values-response.json"
    }
  },
  {
    "title": "Listing Variant Type Value Detail",
    "slug": "listing-variant-types/listing-variant-type-value-detail",
    "category": "Catalogue",
    "order": 43,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/variant_types/{{variant_type_id}}/values/{{variant_type_value_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-type-value-detail-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-type-value-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__listing-variant-type-value-detail-response.json"
    }
  },
  {
    "title": "Add Listing Variant Type Value",
    "slug": "listing-variant-types/add-listing-variant-type-value",
    "category": "Catalogue",
    "order": 44,
    "endpoint": {
      "method": "POST",
      "path": "/products/v1/variant_types/{{variant_type_id}}/values",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__add-listing-variant-type-value-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variant-types__add-listing-variant-type-value-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__add-listing-variant-type-value-response.json"
    }
  },
  {
    "title": "Edit Listing Variant Type Value",
    "slug": "listing-variant-types/edit-listing-variant-type-value",
    "category": "Catalogue",
    "order": 45,
    "endpoint": {
      "method": "PUT",
      "path": "/products/v1/variant_types/{{variant_type_id}}/values/{{variant_type_value_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__edit-listing-variant-type-value-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variant-types__edit-listing-variant-type-value-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__edit-listing-variant-type-value-response.json"
    }
  },
  {
    "title": "Delete Listing Variant Type Value",
    "slug": "listing-variant-types/delete-listing-variant-type-value",
    "category": "Catalogue",
    "order": 46,
    "endpoint": {
      "method": "DELETE",
      "path": "/products/v1/variant_types/{{variant_type_id}}/values/{{variant_type_value_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__delete-listing-variant-type-value-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variant-types__delete-listing-variant-type-value-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variant-types__delete-listing-variant-type-value-response.json"
    }
  },
  {
    "title": "Listing Variants",
    "slug": "listing-variants/listing-variants",
    "category": "Catalogue",
    "order": 47,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/listings/{{listing_id}}/variants",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variants__listing-variants-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variants__listing-variants-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variants__listing-variants-response.json"
    }
  },
  {
    "title": "Listing Variant Detail",
    "slug": "listing-variants/listing-variant-detail",
    "category": "Catalogue",
    "order": 48,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/listings/{{listing_id}}/variants/{{variant_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variants__listing-variant-detail-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variants__listing-variant-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variants__listing-variant-detail-response.json"
    }
  },
  {
    "title": "Add Listing Variant",
    "slug": "listing-variants/add-listing-variant",
    "category": "Catalogue",
    "order": 49,
    "endpoint": {
      "method": "POST",
      "path": "/products/v1/listings/{{listing_id}}/variants",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variants__add-listing-variant-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variants__add-listing-variant-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variants__add-listing-variant-response.json"
    }
  },
  {
    "title": "Edit Listing Variant",
    "slug": "listing-variants/edit-listing-variant",
    "category": "Catalogue",
    "order": 50,
    "endpoint": {
      "method": "PUT",
      "path": "/products/v1/listings/{{listing_id}}/variants/{{variant_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variants__edit-listing-variant-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variants__edit-listing-variant-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variants__edit-listing-variant-response.json"
    }
  },
  {
    "title": "Delete Listing Variant",
    "slug": "listing-variants/delete-listing-variant",
    "category": "Catalogue",
    "order": 51,
    "endpoint": {
      "method": "DELETE",
      "path": "/products/v1/listings/{{listing_id}}/variants/{{variant_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variants__delete-listing-variant-request.json",
      "fieldsPath": "/api-schemas/catalogue/listing-variants__delete-listing-variant-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/catalogue/listing-variants__delete-listing-variant-response.json"
    }
  },
  {
    "title": "Tags",
    "slug": "tags",
    "category": "Social",
    "order": 52
  },
  {
    "title": "Tags Search",
    "slug": "tags/tags-search",
    "category": "Social",
    "order": 53,
    "endpoint": {
      "method": "GET",
      "path": "/v1/tags/search",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/social/tags__tags-search-request.json",
      "fieldsPath": "/api-schemas/social/tags__tags-search-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/social/tags__tags-search-response.json"
    }
  },
  {
    "title": "Home",
    "slug": "feeds/home",
    "category": "Social",
    "order": 54,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/home",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/social/feeds__home-request.json",
      "fieldsPath": "/api-schemas/social/feeds__home-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/social/feeds__home-response.json"
    }
  },
  {
    "title": "UnBlock Account",
    "slug": "unblock-account",
    "category": "Social",
    "order": 55,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/accounts/{{account_id}}/block",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/social/unblock-account-request.json",
      "fieldsPath": "/api-schemas/social/unblock-account-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/social/unblock-account-response.json"
    }
  },
  {
    "title": "Follow Account",
    "slug": "follow-account",
    "category": "Social",
    "order": 56,
    "endpoint": {
      "method": "POST",
      "path": "/v1/accounts/{{account_id}}/follow",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/social/follow-account-request.json",
      "fieldsPath": "/api-schemas/social/follow-account-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/social/follow-account-response.json"
    }
  },
  {
    "title": "UnFollow Account",
    "slug": "unfollow-account",
    "category": "Social",
    "order": 57,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/accounts/{{account_id}}/follow",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/social/unfollow-account-request.json",
      "fieldsPath": "/api-schemas/social/unfollow-account-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/social/unfollow-account-response.json"
    }
  },
  {
    "title": "UnLike Listing",
    "slug": "unlike-listing",
    "category": "Social",
    "order": 58,
    "endpoint": {
      "method": "DELETE",
      "path": "/app/products/v1/listings/{{listing_id}}/likes",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/social/unlike-listing-request.json",
      "fieldsPath": "/api-schemas/social/unlike-listing-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/social/unlike-listing-response.json"
    }
  },
  {
    "title": "Like Listing",
    "slug": "like-listing",
    "category": "Social",
    "order": 59,
    "endpoint": {
      "method": "POST",
      "path": "/products/v1/listings/{{listing_id}}/likes",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/social/like-listing-request.json",
      "fieldsPath": "/api-schemas/social/like-listing-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/social/like-listing-response.json"
    }
  },
  {
    "title": "Social Feeds : Following",
    "slug": "social-feeds-following",
    "category": "Social",
    "order": 60,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/feeds/following",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/social/social-feeds-following-request.json",
      "fieldsPath": "/api-schemas/social/social-feeds-following-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/social/social-feeds-following-response.json"
    }
  },
  {
    "title": "Tenant Shipping Methods",
    "slug": "tenant-shipping-methods",
    "category": "Shipping Methods",
    "order": 61,
    "endpoint": {
      "method": "GET",
      "path": "/v1/tenants/shipping_methods",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/shipping-methods/tenant-shipping-methods-request.json",
      "fieldsPath": "/api-schemas/shipping-methods/tenant-shipping-methods-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/shipping-methods/tenant-shipping-methods-response.json"
    }
  },
  {
    "title": "Payment Methods",
    "slug": "payment-methods",
    "category": "Payments",
    "order": 62
  },
  {
    "title": "Payment Methods",
    "slug": "payment-methods/payment-methods",
    "category": "Payments",
    "order": 63,
    "endpoint": {
      "method": "GET",
      "path": "/v1/tenants/payment_methods",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/payments/payment-methods__payment-methods-request.json",
      "fieldsPath": "/api-schemas/payments/payment-methods__payment-methods-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/payments/payment-methods__payment-methods-response.json"
    }
  },
  {
    "title": "Ephemeral Key",
    "slug": "stripe/ephemeral-key",
    "category": "Payments",
    "order": 64,
    "endpoint": {
      "method": "POST",
      "path": "/app/v1/payments/stripe/ephemeralKey",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/payments/stripe__ephemeral-key-request.json",
      "fieldsPath": "/api-schemas/payments/stripe__ephemeral-key-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/payments/stripe__ephemeral-key-response.json"
    }
  },
  {
    "title": "Payment Intent",
    "slug": "stripe/payment-intent",
    "category": "Payments",
    "order": 65,
    "endpoint": {
      "method": "POST",
      "path": "/app/v1/payments/stripe/paymentIntent",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/payments/stripe__payment-intent-request.json",
      "fieldsPath": "/api-schemas/payments/stripe__payment-intent-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/payments/stripe__payment-intent-response.json"
    }
  },
  {
    "title": "Connect OAuth",
    "slug": "stripe/connect-oauth",
    "category": "Payments",
    "order": 66,
    "endpoint": {
      "method": "GET",
      "path": "/v1/payments/stripe/connect/oauth",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/payments/stripe__connect-oauth-request.json",
      "fieldsPath": "/api-schemas/payments/stripe__connect-oauth-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/payments/stripe__connect-oauth-response.json"
    }
  },
  {
    "title": "Disconnect OAuth",
    "slug": "stripe/disconnect-oauth",
    "category": "Payments",
    "order": 67,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/payments/stripe/connect/oauth",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/payments/stripe__disconnect-oauth-request.json",
      "fieldsPath": "/api-schemas/payments/stripe__disconnect-oauth-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/payments/stripe__disconnect-oauth-response.json"
    }
  },
  {
    "title": "Create Account Links",
    "slug": "stripe/create-account-links",
    "category": "Payments",
    "order": 68,
    "endpoint": {
      "method": "POST",
      "path": "/app/v1/payments/stripe/connect/account_links",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/payments/stripe__create-account-links-request.json",
      "fieldsPath": "/api-schemas/payments/stripe__create-account-links-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/payments/stripe__create-account-links-response.json"
    }
  },
  {
    "title": "Create Express Login Link",
    "slug": "stripe/create-express-login-link",
    "category": "Payments",
    "order": 69,
    "endpoint": {
      "method": "POST",
      "path": "/app/v1/payments/stripe/connect/login_links",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/payments/stripe__create-express-login-link-request.json",
      "fieldsPath": "/api-schemas/payments/stripe__create-express-login-link-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/payments/stripe__create-express-login-link-response.json"
    }
  },
  {
    "title": "Stripe Connect Account",
    "slug": "stripe/stripe-connect-account",
    "category": "Payments",
    "order": 70,
    "endpoint": {
      "method": "GET",
      "path": "/v1/payments/stripe/connect/account",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/payments/stripe__stripe-connect-account-request.json",
      "fieldsPath": "/api-schemas/payments/stripe__stripe-connect-account-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/payments/stripe__stripe-connect-account-response.json"
    }
  },
  {
    "title": "Stripe Produts",
    "slug": "stripe/stripe-produts",
    "category": "Payments",
    "order": 71,
    "endpoint": {
      "method": "GET",
      "path": "/v1/payments/stripe/products",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/payments/stripe__stripe-produts-request.json",
      "fieldsPath": "/api-schemas/payments/stripe__stripe-produts-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/payments/stripe__stripe-produts-response.json"
    }
  },
  {
    "title": "Payment Intent",
    "slug": "payu-latam/payment-intent",
    "category": "Payments",
    "order": 72,
    "endpoint": {
      "method": "POST",
      "path": "/app/v1/payments/payulatam/paymentIntent",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/payments/payu-latam__payment-intent-request.json",
      "fieldsPath": "/api-schemas/payments/payu-latam__payment-intent-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/payments/payu-latam__payment-intent-response.json"
    }
  },
  {
    "title": "Add To Cart",
    "slug": "cart/add-to-cart",
    "category": "Checkout",
    "order": 73,
    "endpoint": {
      "method": "POST",
      "path": "/products/v1/cart",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/cart__add-to-cart-request.json",
      "fieldsPath": "/api-schemas/checkout/cart__add-to-cart-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/cart__add-to-cart-response.json"
    }
  },
  {
    "title": "Delete from Cart",
    "slug": "cart/delete-from-cart",
    "category": "Checkout",
    "order": 74,
    "endpoint": {
      "method": "PATCH",
      "path": "/products/v1/cart",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/cart__delete-from-cart-request.json",
      "fieldsPath": "/api-schemas/checkout/cart__delete-from-cart-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/cart__delete-from-cart-response.json"
    }
  },
  {
    "title": "Get Cart",
    "slug": "cart/get-cart",
    "category": "Checkout",
    "order": 75,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/cart",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/cart__get-cart-request.json",
      "fieldsPath": "/api-schemas/checkout/cart__get-cart-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/cart__get-cart-response.json"
    }
  },
  {
    "title": "Checkout",
    "slug": "cart/checkout",
    "category": "Checkout",
    "order": 76,
    "endpoint": {
      "method": "POST",
      "path": "/products/v1/cart/checkout",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/cart__checkout-request.json",
      "fieldsPath": "/api-schemas/checkout/cart__checkout-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/cart__checkout-response.json"
    }
  },
  {
    "title": "Delete all cart details",
    "slug": "cart/delete-all-cart-details",
    "category": "Checkout",
    "order": 77,
    "endpoint": {
      "method": "DELETE",
      "path": "/products/v1/cart",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/cart__delete-all-cart-details-request.json",
      "fieldsPath": "/api-schemas/checkout/cart__delete-all-cart-details-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/cart__delete-all-cart-details-response.json"
    }
  },
  {
    "title": "Orders",
    "slug": "orders",
    "category": "Checkout",
    "order": 78
  },
  {
    "title": "Shipments",
    "slug": "orders/shipments",
    "category": "Checkout",
    "order": 79
  },
  {
    "title": "Update Shipment Status",
    "slug": "orders/shipments/update-shipment-status",
    "category": "Checkout",
    "order": 80,
    "endpoint": {
      "method": "PATCH",
      "path": "/products/v1/orders/{{order_id}}/shipments/{{shipment_id}}/status",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/orders__shipments__update-shipment-status-request.json",
      "fieldsPath": "/api-schemas/checkout/orders__shipments__update-shipment-status-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/orders__shipments__update-shipment-status-response.json"
    }
  },
  {
    "title": "Orders",
    "slug": "orders/orders",
    "category": "Checkout",
    "order": 81,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/orders",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/orders__orders-request.json",
      "fieldsPath": "/api-schemas/checkout/orders__orders-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/orders__orders-response.json"
    }
  },
  {
    "title": "Update Order Status",
    "slug": "orders/update-order-status",
    "category": "Checkout",
    "order": 82,
    "endpoint": {
      "method": "PATCH",
      "path": "/products/v1/orders/{{order_id}}/status",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/orders__update-order-status-request.json",
      "fieldsPath": "/api-schemas/checkout/orders__update-order-status-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/orders__update-order-status-response.json"
    }
  },
  {
    "title": "Order Details",
    "slug": "orders/order-details",
    "category": "Checkout",
    "order": 83,
    "endpoint": {
      "method": "GET",
      "path": "/products/v1/orders/{{order_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/orders__order-details-request.json",
      "fieldsPath": "/api-schemas/checkout/orders__order-details-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/orders__order-details-response.json"
    }
  },
  {
    "title": "Confirm Order",
    "slug": "orders/confirm-order",
    "category": "Checkout",
    "order": 84,
    "endpoint": {
      "method": "PATCH",
      "path": "/products/v1/orders/{{order_id}}/confirm",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/orders__confirm-order-request.json",
      "fieldsPath": "/api-schemas/checkout/orders__confirm-order-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/orders__confirm-order-response.json"
    }
  },
  {
    "title": "Transactions",
    "slug": "transactions/transactions",
    "category": "Checkout",
    "order": 85,
    "endpoint": {
      "method": "GET",
      "path": "/v1/transactions",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/transactions__transactions-request.json",
      "fieldsPath": "/api-schemas/checkout/transactions__transactions-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/transactions__transactions-response.json"
    }
  },
  {
    "title": "Earnings",
    "slug": "transactions/earnings",
    "category": "Checkout",
    "order": 86,
    "endpoint": {
      "method": "GET",
      "path": "/v1/earnings",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/checkout/transactions__earnings-request.json",
      "fieldsPath": "/api-schemas/checkout/transactions__earnings-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/checkout/transactions__earnings-response.json"
    }
  },
  {
    "title": "Commission List",
    "slug": "commission-list",
    "category": "Commissions",
    "order": 87,
    "endpoint": {
      "method": "GET",
      "path": "/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commissions/commission-list-request.json",
      "fieldsPath": "/api-schemas/commissions/commission-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commissions/commission-list-response.json"
    }
  },
  {
    "title": "Commission Detail",
    "slug": "commission-detail",
    "category": "Commissions",
    "order": 88,
    "endpoint": {
      "method": "GET",
      "path": "/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commissions/commission-detail-request.json",
      "fieldsPath": "/api-schemas/commissions/commission-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commissions/commission-detail-response.json"
    }
  },
  {
    "title": "Add Commissions",
    "slug": "add-commissions",
    "category": "Commissions",
    "order": 89,
    "endpoint": {
      "method": "POST",
      "path": "/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commissions/add-commissions-request.json",
      "fieldsPath": "/api-schemas/commissions/add-commissions-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commissions/add-commissions-response.json"
    }
  },
  {
    "title": "Edit Commissions",
    "slug": "edit-commissions",
    "category": "Commissions",
    "order": 90,
    "endpoint": {
      "method": "PUT",
      "path": "/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commissions/edit-commissions-request.json",
      "fieldsPath": "/api-schemas/commissions/edit-commissions-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commissions/edit-commissions-response.json"
    }
  },
  {
    "title": "Delete Commissions",
    "slug": "delete-commissions",
    "category": "Commissions",
    "order": 91,
    "endpoint": {
      "method": "DELETE",
      "path": "/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commissions/delete-commissions-request.json",
      "fieldsPath": "/api-schemas/commissions/delete-commissions-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commissions/delete-commissions-response.json"
    }
  },
  {
    "title": "Calculate Commissions",
    "slug": "calculate-commissions",
    "category": "Commissions",
    "order": 92,
    "endpoint": {
      "method": "POST",
      "path": "/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commissions/calculate-commissions-request.json",
      "fieldsPath": "/api-schemas/commissions/calculate-commissions-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commissions/calculate-commissions-response.json"
    }
  },
  {
    "title": "Categories",
    "slug": "categories",
    "category": "Commons",
    "order": 93
  },
  {
    "title": "Categories List",
    "slug": "categories/categories-list",
    "category": "Commons",
    "order": 93.1,
    "endpoint": {
      "method": "GET",
      "path": "/v1/categories",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/categories__categories-list-request.json",
      "fieldsPath": "/api-schemas/commons/categories__categories-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/categories__categories-list-response.json"
    }
  },
  {
    "title": "Category Detail",
    "slug": "categories/category-detail",
    "category": "Commons",
    "order": 93.2,
    "endpoint": {
      "method": "GET",
      "path": "/v1/categories/{{category_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/categories__category-detail-request.json",
      "fieldsPath": "/api-schemas/commons/categories__category-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/categories__category-detail-response.json"
    }
  },
  {
    "title": "Add Category",
    "slug": "categories/add-category",
    "category": "Commons",
    "order": 96,
    "endpoint": {
      "method": "POST",
      "path": "/v1/categories",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/categories__add-category-request.json",
      "fieldsPath": "/api-schemas/commons/categories__add-category-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/categories__add-category-response.json"
    }
  },
  {
    "title": "Edit Category",
    "slug": "categories/edit-category",
    "category": "Commons",
    "order": 97,
    "endpoint": {
      "method": "PUT",
      "path": "/v1/categories/{{category_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/categories__edit-category-request.json",
      "fieldsPath": "/api-schemas/commons/categories__edit-category-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/categories__edit-category-response.json"
    }
  },
  {
    "title": "Edit Category [BULK]",
    "slug": "categories/edit-category-bulk",
    "category": "Commons",
    "order": 98,
    "endpoint": {
      "method": "PATCH",
      "path": "/v1/categories/bulk",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/categories__edit-category-bulk-request.json",
      "fieldsPath": "/api-schemas/commons/categories__edit-category-bulk-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/categories__edit-category-bulk-response.json"
    }
  },
  {
    "title": "Delete Category",
    "slug": "categories/delete-category",
    "category": "Commons",
    "order": 99,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/categories/{{category_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/categories__delete-category-request.json",
      "fieldsPath": "/api-schemas/commons/categories__delete-category-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/categories__delete-category-response.json"
    }
  },
  {
    "title": "Attribute Groups",
    "slug": "attribute-groups",
    "category": "Commons",
    "order": 100
  },
  {
    "title": "Attribute Groups List",
    "slug": "attribute-groups/attribute-groups-list",
    "category": "Commons",
    "order": 101,
    "endpoint": {
      "method": "GET",
      "path": "/v1/attribute_groups",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attribute-groups__attribute-groups-list-request.json",
      "fieldsPath": "/api-schemas/commons/attribute-groups__attribute-groups-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attribute-groups__attribute-groups-list-response.json"
    }
  },
  {
    "title": "Attribute Group Detail",
    "slug": "attribute-groups/attribute-group-detail",
    "category": "Commons",
    "order": 102,
    "endpoint": {
      "method": "GET",
      "path": "/v1/attribute_groups/{{attribute_group_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attribute-groups__attribute-group-detail-request.json",
      "fieldsPath": "/api-schemas/commons/attribute-groups__attribute-group-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attribute-groups__attribute-group-detail-response.json"
    }
  },
  {
    "title": "Add Attribute Group",
    "slug": "attribute-groups/add-attribute-group",
    "category": "Commons",
    "order": 103,
    "endpoint": {
      "method": "POST",
      "path": "/v1/attribute_groups",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attribute-groups__add-attribute-group-request.json",
      "fieldsPath": "/api-schemas/commons/attribute-groups__add-attribute-group-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attribute-groups__add-attribute-group-response.json"
    }
  },
  {
    "title": "Edit Attribute Group",
    "slug": "attribute-groups/edit-attribute-group",
    "category": "Commons",
    "order": 104,
    "endpoint": {
      "method": "PUT",
      "path": "/v1/attribute_groups/{{attribute_group_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attribute-groups__edit-attribute-group-request.json",
      "fieldsPath": "/api-schemas/commons/attribute-groups__edit-attribute-group-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attribute-groups__edit-attribute-group-response.json"
    }
  },
  {
    "title": "Delete Attribute Group",
    "slug": "attribute-groups/delete-attribute-group",
    "category": "Commons",
    "order": 105,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/attribute_groups/{{attribute_group_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attribute-groups__delete-attribute-group-request.json",
      "fieldsPath": "/api-schemas/commons/attribute-groups__delete-attribute-group-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attribute-groups__delete-attribute-group-response.json"
    }
  },
  {
    "title": "Attributes",
    "slug": "attributes",
    "category": "Commons",
    "order": 106
  },
  {
    "title": "Attributes List",
    "slug": "attributes/attributes-list",
    "category": "Commons",
    "order": 107,
    "endpoint": {
      "method": "GET",
      "path": "/v1/attributes/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attributes__attributes-list-request.json",
      "fieldsPath": "/api-schemas/commons/attributes__attributes-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attributes__attributes-list-response.json"
    }
  },
  {
    "title": "Atrribute Detail",
    "slug": "attributes/atrribute-detail",
    "category": "Commons",
    "order": 108,
    "endpoint": {
      "method": "GET",
      "path": "/v1/attributes/{{attribute_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attributes__atrribute-detail-request.json",
      "fieldsPath": "/api-schemas/commons/attributes__atrribute-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attributes__atrribute-detail-response.json"
    }
  },
  {
    "title": "Attribute List Grouped",
    "slug": "attributes/attribute-list-grouped",
    "category": "Commons",
    "order": 109,
    "endpoint": {
      "method": "GET",
      "path": "/v1/attributes/grouped",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attributes__attribute-list-grouped-request.json",
      "fieldsPath": "/api-schemas/commons/attributes__attribute-list-grouped-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attributes__attribute-list-grouped-response.json"
    }
  },
  {
    "title": "Add Attribute",
    "slug": "attributes/add-attribute",
    "category": "Commons",
    "order": 110,
    "endpoint": {
      "method": "POST",
      "path": "/v1/attributes",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attributes__add-attribute-request.json",
      "fieldsPath": "/api-schemas/commons/attributes__add-attribute-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attributes__add-attribute-response.json"
    }
  },
  {
    "title": "Edit Attribute",
    "slug": "attributes/edit-attribute",
    "category": "Commons",
    "order": 111,
    "endpoint": {
      "method": "PUT",
      "path": "/v1/attributes/{{attribute_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attributes__edit-attribute-request.json",
      "fieldsPath": "/api-schemas/commons/attributes__edit-attribute-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attributes__edit-attribute-response.json"
    }
  },
  {
    "title": "Edit Attribute [BULK]",
    "slug": "attributes/edit-attribute-bulk",
    "category": "Commons",
    "order": 112,
    "endpoint": {
      "method": "PATCH",
      "path": "/v1/attributes/bulk",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attributes__edit-attribute-bulk-request.json",
      "fieldsPath": "/api-schemas/commons/attributes__edit-attribute-bulk-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attributes__edit-attribute-bulk-response.json"
    }
  },
  {
    "title": "Delete Attribute",
    "slug": "attributes/delete-attribute",
    "category": "Commons",
    "order": 113,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/attributes/{{attribute_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attributes__delete-attribute-request.json",
      "fieldsPath": "/api-schemas/commons/attributes__delete-attribute-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attributes__delete-attribute-response.json"
    }
  },
  {
    "title": "Attribute Values",
    "slug": "attribute-values",
    "category": "Commons",
    "order": 114
  },
  {
    "title": "Attributes Values List",
    "slug": "attribute-values/attributes-values-list",
    "category": "Commons",
    "order": 115,
    "endpoint": {
      "method": "GET",
      "path": "/v1/attributes/{{attribute_id}}/values",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attribute-values__attributes-values-list-request.json",
      "fieldsPath": "/api-schemas/commons/attribute-values__attributes-values-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attribute-values__attributes-values-list-response.json"
    }
  },
  {
    "title": "Attribute Values Detail",
    "slug": "attribute-values/attribute-values-detail",
    "category": "Commons",
    "order": 116,
    "endpoint": {
      "method": "GET",
      "path": "/v1/attributes/{{attribute_id}}/values/{{attribute_value_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attribute-values__attribute-values-detail-request.json",
      "fieldsPath": "/api-schemas/commons/attribute-values__attribute-values-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attribute-values__attribute-values-detail-response.json"
    }
  },
  {
    "title": "Add Attribute Values",
    "slug": "attribute-values/add-attribute-values",
    "category": "Commons",
    "order": 117,
    "endpoint": {
      "method": "POST",
      "path": "/v1/attributes/{{attribute_id}}/values",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attribute-values__add-attribute-values-request.json",
      "fieldsPath": "/api-schemas/commons/attribute-values__add-attribute-values-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attribute-values__add-attribute-values-response.json"
    }
  },
  {
    "title": "Edit Attribute Values",
    "slug": "attribute-values/edit-attribute-values",
    "category": "Commons",
    "order": 118,
    "endpoint": {
      "method": "PUT",
      "path": "/v1/attributes/{{attribute_id}}/values/{{attribute_value_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attribute-values__edit-attribute-values-request.json",
      "fieldsPath": "/api-schemas/commons/attribute-values__edit-attribute-values-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attribute-values__edit-attribute-values-response.json"
    }
  },
  {
    "title": "Delete Attribute Values",
    "slug": "attribute-values/delete-attribute-values",
    "category": "Commons",
    "order": 119,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/attributes/{{attribute_id}}/values/{{attribute_value_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/attribute-values__delete-attribute-values-request.json",
      "fieldsPath": "/api-schemas/commons/attribute-values__delete-attribute-values-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/attribute-values__delete-attribute-values-response.json"
    }
  },
  {
    "title": "Get Collections",
    "slug": "collections/get-collections",
    "category": "Commons",
    "order": 120,
    "endpoint": {
      "method": "GET",
      "path": "/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/collections__get-collections-request.json",
      "fieldsPath": "/api-schemas/commons/collections__get-collections-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/collections__get-collections-response.json"
    }
  },
  {
    "title": "Get Collection Detail",
    "slug": "collections/get-collection-detail",
    "category": "Commons",
    "order": 121,
    "endpoint": {
      "method": "GET",
      "path": "/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/collections__get-collection-detail-request.json",
      "fieldsPath": "/api-schemas/commons/collections__get-collection-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/collections__get-collection-detail-response.json"
    }
  },
  {
    "title": "Add Collections",
    "slug": "collections/add-collections",
    "category": "Commons",
    "order": 122,
    "endpoint": {
      "method": "POST",
      "path": "/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/collections__add-collections-request.json",
      "fieldsPath": "/api-schemas/commons/collections__add-collections-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/collections__add-collections-response.json"
    }
  },
  {
    "title": "Edit Collection",
    "slug": "collections/edit-collection",
    "category": "Commons",
    "order": 123,
    "endpoint": {
      "method": "PUT",
      "path": "/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/collections__edit-collection-request.json",
      "fieldsPath": "/api-schemas/commons/collections__edit-collection-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/collections__edit-collection-response.json"
    }
  },
  {
    "title": "Delete Collection",
    "slug": "collections/delete-collection",
    "category": "Commons",
    "order": 124,
    "endpoint": {
      "method": "DELETE",
      "path": "/",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/collections__delete-collection-request.json",
      "fieldsPath": "/api-schemas/commons/collections__delete-collection-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/collections__delete-collection-response.json"
    }
  },
  {
    "title": "Reviews List",
    "slug": "reviews/reviews-list",
    "category": "Commons",
    "order": 125,
    "endpoint": {
      "method": "GET",
      "path": "/v1/reviews",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/reviews__reviews-list-request.json",
      "fieldsPath": "/api-schemas/commons/reviews__reviews-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/reviews__reviews-list-response.json"
    }
  },
  {
    "title": "Add Review",
    "slug": "reviews/add-review",
    "category": "Commons",
    "order": 126,
    "endpoint": {
      "method": "POST",
      "path": "/v1/reviews",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/reviews__add-review-request.json",
      "fieldsPath": "/api-schemas/commons/reviews__add-review-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/reviews__add-review-response.json"
    }
  },
  {
    "title": "Like/Unlike Review",
    "slug": "reviews/like-unlike-review",
    "category": "Commons",
    "order": 127,
    "endpoint": {
      "method": "PATCH",
      "path": "/v1/reviews/1/like",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/reviews__like-unlike-review-request.json",
      "fieldsPath": "/api-schemas/commons/reviews__like-unlike-review-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/reviews__like-unlike-review-response.json"
    }
  },
  {
    "title": "Promotions",
    "slug": "promotions",
    "category": "Commons",
    "order": 128
  },
  {
    "title": "Promotions List",
    "slug": "promotions/promotions-list",
    "category": "Commons",
    "order": 129,
    "endpoint": {
      "method": "GET",
      "path": "/v1/promos",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/promotions__promotions-list-request.json",
      "fieldsPath": "/api-schemas/commons/promotions__promotions-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/promotions__promotions-list-response.json"
    }
  },
  {
    "title": "Promotions Detail",
    "slug": "promotions/promotions-detail",
    "category": "Commons",
    "order": 130,
    "endpoint": {
      "method": "GET",
      "path": "/v1/promos/{{promo_banner_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/promotions__promotions-detail-request.json",
      "fieldsPath": "/api-schemas/commons/promotions__promotions-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/promotions__promotions-detail-response.json"
    }
  },
  {
    "title": "Add Promotion",
    "slug": "promotions/add-promotion",
    "category": "Commons",
    "order": 131,
    "endpoint": {
      "method": "POST",
      "path": "/v1/promos",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/promotions__add-promotion-request.json",
      "fieldsPath": "/api-schemas/commons/promotions__add-promotion-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/promotions__add-promotion-response.json"
    }
  },
  {
    "title": "Edit Promotion",
    "slug": "promotions/edit-promotion",
    "category": "Commons",
    "order": 132,
    "endpoint": {
      "method": "PUT",
      "path": "/v1/promos/{{promo_banner_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/promotions__edit-promotion-request.json",
      "fieldsPath": "/api-schemas/commons/promotions__edit-promotion-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/promotions__edit-promotion-response.json"
    }
  },
  {
    "title": "Delete Promotion",
    "slug": "promotions/delete-promotion",
    "category": "Commons",
    "order": 133,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/promos/{{promo_banner_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/promotions__delete-promotion-request.json",
      "fieldsPath": "/api-schemas/commons/promotions__delete-promotion-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/promotions__delete-promotion-response.json"
    }
  },
  {
    "title": "Addresses",
    "slug": "addresses",
    "category": "Commons",
    "order": 134
  },
  {
    "title": "Addresses List",
    "slug": "addresses/addresses-list",
    "category": "Commons",
    "order": 135,
    "endpoint": {
      "method": "GET",
      "path": "/v1/addresses",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/addresses__addresses-list-request.json",
      "fieldsPath": "/api-schemas/commons/addresses__addresses-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/addresses__addresses-list-response.json"
    }
  },
  {
    "title": "Add Address",
    "slug": "addresses/add-address",
    "category": "Commons",
    "order": 136,
    "endpoint": {
      "method": "POST",
      "path": "/v1/addresses",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/addresses__add-address-request.json",
      "fieldsPath": "/api-schemas/commons/addresses__add-address-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/addresses__add-address-response.json"
    }
  },
  {
    "title": "Edit Address",
    "slug": "addresses/edit-address",
    "category": "Commons",
    "order": 137,
    "endpoint": {
      "method": "PUT",
      "path": "/v1/addresses/{{address_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/addresses__edit-address-request.json",
      "fieldsPath": "/api-schemas/commons/addresses__edit-address-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/addresses__edit-address-response.json"
    }
  },
  {
    "title": "Delete Address",
    "slug": "addresses/delete-address",
    "category": "Commons",
    "order": 138,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/addresses/{{address_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/addresses__delete-address-request.json",
      "fieldsPath": "/api-schemas/commons/addresses__delete-address-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/addresses__delete-address-response.json"
    }
  },
  {
    "title": "Activity List",
    "slug": "activities/activity-list",
    "category": "Commons",
    "order": 139,
    "endpoint": {
      "method": "GET",
      "path": "/v1/activities",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/activities__activity-list-request.json",
      "fieldsPath": "/api-schemas/commons/activities__activity-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/activities__activity-list-response.json"
    }
  },
  {
    "title": "Languages",
    "slug": "languages",
    "category": "Commons",
    "order": 140
  },
  {
    "title": "Languages List",
    "slug": "languages/languages-list",
    "category": "Commons",
    "order": 141,
    "endpoint": {
      "method": "GET",
      "path": "/v1/tenants/languages",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/languages__languages-list-request.json",
      "fieldsPath": "/api-schemas/commons/languages__languages-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/languages__languages-list-response.json"
    }
  },
  {
    "title": "Currencies",
    "slug": "currencies",
    "category": "Commons",
    "order": 142
  },
  {
    "title": "Currencies List",
    "slug": "currencies/currencies-list",
    "category": "Commons",
    "order": 143,
    "endpoint": {
      "method": "GET",
      "path": "/v1/currencies",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/currencies__currencies-list-request.json",
      "fieldsPath": "/api-schemas/commons/currencies__currencies-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/currencies__currencies-list-response.json"
    }
  },
  {
    "title": "Currency Detail",
    "slug": "currencies/currency-detail",
    "category": "Commons",
    "order": 144,
    "endpoint": {
      "method": "GET",
      "path": "/v1/currencies/{{currency_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/currencies__currency-detail-request.json",
      "fieldsPath": "/api-schemas/commons/currencies__currency-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/currencies__currency-detail-response.json"
    }
  },
  {
    "title": "Add Currency",
    "slug": "currencies/add-currency",
    "category": "Commons",
    "order": 145,
    "endpoint": {
      "method": "POST",
      "path": "/v1/currencies",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/currencies__add-currency-request.json",
      "fieldsPath": "/api-schemas/commons/currencies__add-currency-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/currencies__add-currency-response.json"
    }
  },
  {
    "title": "Edit Currency",
    "slug": "currencies/edit-currency",
    "category": "Commons",
    "order": 146,
    "endpoint": {
      "method": "PUT",
      "path": "/v1/currencies/{{currency_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/currencies__edit-currency-request.json",
      "fieldsPath": "/api-schemas/commons/currencies__edit-currency-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/currencies__edit-currency-response.json"
    }
  },
  {
    "title": "Delete Currency",
    "slug": "currencies/delete-currency",
    "category": "Commons",
    "order": 147,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/currencies/{{currency_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/currencies__delete-currency-request.json",
      "fieldsPath": "/api-schemas/commons/currencies__delete-currency-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/currencies__delete-currency-response.json"
    }
  },
  {
    "title": "Tenant Countries",
    "slug": "countries/tenant-countries",
    "category": "Commons",
    "order": 148,
    "endpoint": {
      "method": "GET",
      "path": "/v1/tenants/countries",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/countries__tenant-countries-request.json",
      "fieldsPath": "/api-schemas/commons/countries__tenant-countries-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/countries__tenant-countries-response.json"
    }
  },
  {
    "title": "Coupons",
    "slug": "coupons",
    "category": "Commons",
    "order": 149
  },
  {
    "title": "Add Coupon",
    "slug": "coupons/add-coupon",
    "category": "Commons",
    "order": 150,
    "endpoint": {
      "method": "POST",
      "path": "/v1/coupons",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/commons/coupons__add-coupon-request.json",
      "fieldsPath": "/api-schemas/commons/coupons__add-coupon-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/commons/coupons__add-coupon-response.json"
    }
  },
  {
    "title": "Webhooks",
    "slug": "webhooks",
    "category": "Webhooks",
    "order": 150.5
  },
  {
    "title": "Webhook List",
    "slug": "webhook-list",
    "category": "Webhooks",
    "order": 151,
    "endpoint": {
      "method": "GET",
      "path": "/v1/webhooks",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/webhooks/webhook-list-request.json",
      "fieldsPath": "/api-schemas/webhooks/webhook-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/webhooks/webhook-list-response.json"
    }
  },
  {
    "title": "Webhook Detail",
    "slug": "webhook-detail",
    "category": "Webhooks",
    "order": 152,
    "endpoint": {
      "method": "GET",
      "path": "/v1/webhooks/{{webhook_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/webhooks/webhook-detail-request.json",
      "fieldsPath": "/api-schemas/webhooks/webhook-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/webhooks/webhook-detail-response.json"
    }
  },
  {
    "title": "Add Webhook",
    "slug": "add-webhook",
    "category": "Webhooks",
    "order": 153,
    "endpoint": {
      "method": "POST",
      "path": "/v1/webhooks",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/webhooks/add-webhook-request.json",
      "fieldsPath": "/api-schemas/webhooks/add-webhook-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/webhooks/add-webhook-response.json"
    }
  },
  {
    "title": "Edit Webhook",
    "slug": "edit-webhook",
    "category": "Webhooks",
    "order": 154,
    "endpoint": {
      "method": "PATCH",
      "path": "/v1/webhooks/{{webhook_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/webhooks/edit-webhook-request.json",
      "fieldsPath": "/api-schemas/webhooks/edit-webhook-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/webhooks/edit-webhook-response.json"
    }
  },
  {
    "title": "Delete Webhook",
    "slug": "delete-webhook",
    "category": "Webhooks",
    "order": 155,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/webhooks/{{webhook_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/webhooks/delete-webhook-request.json",
      "fieldsPath": "/api-schemas/webhooks/delete-webhook-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/webhooks/delete-webhook-response.json"
    }
  },
  {
    "title": "Webhook Logs",
    "slug": "webhook-logs",
    "category": "Webhooks",
    "order": 156,
    "endpoint": {
      "method": "GET",
      "path": "/v1/webhooks/logs",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/webhooks/webhook-logs-request.json",
      "fieldsPath": "/api-schemas/webhooks/webhook-logs-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/webhooks/webhook-logs-response.json"
    }
  },
  {
    "title": "Layers",
    "slug": "layers",
    "category": "Layers",
    "order": 156.5
  },
  {
    "title": "Layer List",
    "slug": "layer-list",
    "category": "Layers",
    "order": 157,
    "endpoint": {
      "method": "GET",
      "path": "/v1/layers",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/layers/layer-list-request.json",
      "fieldsPath": "/api-schemas/layers/layer-list-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/layers/layer-list-response.json"
    }
  },
  {
    "title": "Layer Detail",
    "slug": "layer-detail",
    "category": "Layers",
    "order": 158,
    "endpoint": {
      "method": "GET",
      "path": "/v1/layers/{{layer_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/layers/layer-detail-request.json",
      "fieldsPath": "/api-schemas/layers/layer-detail-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/layers/layer-detail-response.json"
    }
  },
  {
    "title": "Create Layer",
    "slug": "create-layer",
    "category": "Layers",
    "order": 159,
    "endpoint": {
      "method": "POST",
      "path": "/v1/layers",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/layers/create-layer-request.json",
      "fieldsPath": "/api-schemas/layers/create-layer-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/layers/create-layer-response.json"
    }
  },
  {
    "title": "Edit Layer",
    "slug": "edit-layer",
    "category": "Layers",
    "order": 160,
    "endpoint": {
      "method": "PATCH",
      "path": "/v1/layers/{{layer_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/layers/edit-layer-request.json",
      "fieldsPath": "/api-schemas/layers/edit-layer-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/layers/edit-layer-response.json"
    }
  },
  {
    "title": "Delete Layer",
    "slug": "delete-layer",
    "category": "Layers",
    "order": 161,
    "endpoint": {
      "method": "DELETE",
      "path": "/v1/layers/{{layer_id}}",
      "auth": true
    },
    "requestExample": {
      "jsonPath": "/api-schemas/layers/delete-layer-request.json",
      "fieldsPath": "/api-schemas/layers/delete-layer-request-fields.json"
    },
    "responseExample": {
      "jsonPath": "/api-schemas/layers/delete-layer-response.json"
    }
  }
]