WoowUp Connectors

Get total account stats

GET https://api.woowup.com/apiv3/stats

Query Parameters

Name
Type
Description

to

string

Filter by createtime of customers and purchases

from

string

Filter by createtime of customers and purchases

branch

string

Filter by branch name

{
	"total_customers": 100,
	"total_purchases": 200,
	"total_revenue": 300000,
	"total_invoice_items": 600,
	"per_branches": [
		{
			"branch": "Shopping Unicenter",
			"total_customers": 100,
			"total_purchases": 200,
			"total_revenue": 300000,
			"total_invoice_items": 600,
		}
	]
}

Create a data processing record

POST https://connectors.woowup.com/v1/log

Headers

Name
Type
Description

Authorization

string

Bearer [WoowUp API KEY]

Request Body

Name
Type
Description

processedtime

string

Processing time (DateTime ISO-8601)

stats

object

Processed entities and their related statistics

files

array

Processed file names

JSON SCHEMA

List the stats processed by your connector

GET https://connectors.woowup.com/v1/logs

Query Parameters

Name
Type
Description

entity

string

Can be: "customers", "purchases", "products", "branches"

page

number

Default: 0

limit

number

Default: 25

to

string

Filter by processing date (YYYY-MM-DD)

from

string

Filter by processing date (YYYY-MM-DD)

Headers

Name
Type
Description

Authorization

string

Bearer [WoowUp API KEY]

Last updated

Was this helpful?