All Projects → woosignal → Flutter Woocommerce Api

woosignal / Flutter Woocommerce Api

Licence: other
WooCommerce API in Flutter, connect and start developing with the available endpoints like get products, create orders and more.

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Flutter Woocommerce Api

Plugins
Plugins for Flutter maintained by the Flutter team
Stars: ✭ 14,956 (+48145.16%)
Mutual labels:  plugin, flutter-plugin
Httpie Oauth
OAuth plugin for HTTPie
Stars: ✭ 78 (+151.61%)
Mutual labels:  api, plugin
Wepos
WooCommerce Point of Sale ( POS ) WordPress Plugin
Stars: ✭ 63 (+103.23%)
Mutual labels:  woocommerce, plugin
Plugins
go-flutter implementations for popular Flutter plugins
Stars: ✭ 125 (+303.23%)
Mutual labels:  plugin, flutter-plugin
Co Cart
🛒 CoCart is a flexible, open-source solution to enabling the shopping cart via the REST API for WooCommerce.
Stars: ✭ 198 (+538.71%)
Mutual labels:  api, woocommerce
Analog clock
⌚️Analog Clock widget for Flutter ⏰
Stars: ✭ 136 (+338.71%)
Mutual labels:  plugin, flutter-plugin
Base
Base is the foundation for creating modular, unit testable and highly pluggable, server-side node.js applications.
Stars: ✭ 67 (+116.13%)
Mutual labels:  api, plugin
Modio Unity
Unity Plugin for integrating mod.io - a modding API for game developers
Stars: ✭ 53 (+70.97%)
Mutual labels:  api, plugin
Graphql Api For Wp
[READ ONLY] GraphQL API for WordPress
Stars: ✭ 136 (+338.71%)
Mutual labels:  api, plugin
Xseries
Library for cross-version Minecraft Bukkit support and various efficient API methods.
Stars: ✭ 109 (+251.61%)
Mutual labels:  api, plugin
Flutter inappwebview
A Flutter plugin that allows you to add an inline webview, to use a headless webview, and to open an in-app browser window.
Stars: ✭ 1,259 (+3961.29%)
Mutual labels:  plugin, flutter-plugin
Wp Graphql Woocommerce
Add WooCommerce support and functionality to your WPGraphQL server
Stars: ✭ 318 (+925.81%)
Mutual labels:  api, woocommerce
Flutter appavailability
A Flutter plugin that allows you to check if an app is installed/enabled, launch an app and get the list of installed apps.
Stars: ✭ 63 (+103.23%)
Mutual labels:  plugin, flutter-plugin
Flutter statusbarcolor
A package can help you to change your flutter app's statusbar's color or navigationbar's color programmatically.
Stars: ✭ 203 (+554.84%)
Mutual labels:  plugin, flutter-plugin
Laravel Woocommerce
WooCommerce Rest API for Laravel
Stars: ✭ 86 (+177.42%)
Mutual labels:  api, woocommerce
Eslint Plugin Compat
Lint the browser compatibility of your code
Stars: ✭ 2,743 (+8748.39%)
Mutual labels:  api, plugin
Antilaby
AntiLaby plug-in for Bukkit
Stars: ✭ 6 (-80.65%)
Mutual labels:  api, plugin
Behapi
Behat extension for those who want to write acceptances tests for apis
Stars: ✭ 29 (-6.45%)
Mutual labels:  api
Ida Cmake
IDA plugin CMake build-script
Stars: ✭ 30 (-3.23%)
Mutual labels:  plugin
Sanic Dispatcher
A Dispatcher extension for Sanic which also acts as a Sanic-to-WSGI adapter
Stars: ✭ 29 (-6.45%)
Mutual labels:  plugin

WooCommerce API Dart plugin

Official WooSignal WooCommerce package

Build apps for WooCommerce easier with our new package. Our API provides many requests types e.g. getProducts, getOrders, getCustomers and many more. Free to get started, see the simple examples below.

For help getting started with WooSignal, view our online documentation, which offers a more detail guide.

Getting Started

In your flutter project add the dependency:

dependencies:
  ...
  woosignal: ^1.3.1

Usage example

Import woosignal.dart

import 'package:woosignal/woosignal.dart';

Example using WooSignal API for WooCommerce

import 'package:woosignal/woosignal.dart';

...

// EXAMPLE GET PRODUCTS
_getProducts() async {

        // CONFIG FOR WOOSIGNAL
        var wsConfig = {
          "appKey":"your app key",
          "debugMode":true
        };

        // CREATING AN INSTANCE
        WooSignal.getInstance(config: wsConfig).then( (wcStore) {

         wcStore.getProducts().then( (products) {
              print(products[0].name);
        });

  });
}

Available API Requests

WooCommerce - Products

  • Get Products
  • Retrive a Product by id
  • Update a Product by id
  • Delete a Product by id
  • Create a Product
  • Create, Delete and Update Product Multiple Time.

See Products API

WooCommerce - Product Variations

  • Get Product Variations
  • Retrive a Product Variation by id

See Product Variations API

WooCommerce - Product Attributes

  • Get Product Attributes

See Product Attributes API

WooCommerce - Products Attribute Terms

  • Get Products Attribute Terms

See Products Attribute Terms API

WooCommerce - Product Categories

  • Get Product Categories

See Product Categories API

WooCommerce - Products Shipping Classes

  • Get Products Shipping Classes

See Products Shipping Classes API

WooCommerce - Product Reviews

  • Get Product Reviews

See Product Reviews API

WooCommerce - Tax Rates

  • Get Tax Rates

See Tax Rates API

WooCommerce - Tax Classes

  • Get Tax Classes

See Tax Classes API

WooCommerce - Shipping Zones

  • Get Shipping Zones
  • Retrive a Shipping Zone by id

See Tax Classes API

WooCommerce - Shipping Zone Locations

  • Get Shipping Zone Locations
  • Retrive a Shipping Zone Location by id

See Shipping Zone Locations API

WooCommerce - Shipping Methods

  • Get Shipping Methods

See Shipping Methods API

WooCommerce - Orders

  • Get Orders
  • Retrive a Order by id
  • Create an Order
  • Update an Order
  • Create, Delete and Update Order Multiple Time.

See Order API

WooCommerce - Customers

  • Get Customers
  • Create a Customer
  • Delete a Customer
  • Update a Customer
  • Create, Delete and Update Product Multiple Time.

See Customers API

WooCommerce - API Orders Notes

  • List all Orders Notes
  • Retrive a Orders Notes by id
  • Delete a Orders Notes by id
  • Create a Orders Notes

See Orders Notes API

WooCommerce - Refunds

  • List all all the refunds from an order.
  • Retrive a retrieve and view a specific refund from an order
  • Delete a delete an order refund.
  • Create a new refund for an order.

See Refunds API

WooCommerce - Coupons

  • List all the coupons that have been created.
  • Retrive and view a specific coupon by ID
  • This API lets you make changes or update to a coupon.
  • Delete a delete a coupon.
  • Create, Delete and Update Coupons Multiple Time.

See Coupons API

WooCommerce - Reports

  • List all the Reports that have been created.
  • API lets you retrieve and view a sales report.
  • API lets you retrieve and view a list of top sellers report.
  • API lets you retrieve and view coupons totals report.
  • API lets you retrieve and view customers totals report.
  • API lets you retrieve and view orders totals report.
  • API lets you retrieve and view products totals report
  • API lets you retrieve and view reviews totals report.

See Reports API

WooCommerce - Data

  • Retrieve and view a simple list of available data endpoints.
  • API helps you to view all the continents..
  • API lets you retrieve and view a continent data.
  • API helps you to view all the countries..
  • API lets you retrieve and view a country data.
  • API helps you to view all the currencies.
  • API lets you retrieve and view a currency data.
  • API lets you retrieve and view store's current currency data.

See Data API

WooCommerce - System Status

  • API helps you to view all the system status items.

See System Status API

WooCommerce - Payment gateways

  • API lets you retrieve and view a specific payment gateway.
  • API helps you to view all the payment gateways.
  • API lets you make changes to a payment gateway.

See Payment gateways API

WooCommerce - Setting options

  • API lets you retrieve and view a specific setting option.
  • API helps you to view all the setting options.
  • API lets you make changes to a setting option.
  • Create, Delete and Update Setting options Multiple Time.

See Setting options API

Disclaimer: This plugin is not affiliated with or supported by Automattic, Inc. All logos and trademarks are the property of their respective owners.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].