Working Line

Working Line

GET https://<instance>.ezdemand.com/api/report-working-line

Pull the working line data.

Query Parameters

Name
Type
Description

output

string

Must be either "JSON" or "CSV"

start_date

string

Must be a valid date in the YYYY-MM-DD format

end_date

string

Must be a valid date in the YYYY-MM-DD format

country

string

Can be comma-separated list of countries that exist in the database (e.g. USA,CAN,LATAM)

active

integer

Can only be a 1 or a 0

division

string

Can be comma-separated list of divisions that exist in the database

region

string

Can be comma-separated list of regions that exist in the database

state

string

Can be comma-separated list of states that exist in the database

distributor

string

Can be comma-separated list of distributors that exist in the database

brand_tier_group

string

Can be comma-separated list of brand_tier_groups that exist in the database

brand_tier

string

Can be comma-separated list of brand_tiers that exist in the database

ipl

string

Can be comma-separated list of ipls that exist in the database

{
    "working_line_report": [
        {
            "brand_tier": "ZAM",
            "brand_tier.description": "ZAM Apps                            ",
            "brand_tier_group": "COM",
            "brand_tier_group.description": "Commercial",
            "country": "USA",
            "distributor": "AL",
            "distributor.description": "AL",
            "division": "WEST",
            "division.description": "West Div",
            "ipl": "1234",
            "ipl.description": "ZAM NV CAS 12x750",
            "qty": "100.000",
            "region": "NW",
            "region.description": "Northwest",
            "sell_date": "2021-01-01",
            "state": "OR",
            "state.description": "Oregon"
        }
    ],
    "count": 1,
    "message": "Working Line Report successfully retrieved."
}

Last updated