Get all Brands

Get all brands

GET https://{{accountSlug}}.myeshopbox.com/api/v1/brand

Query Parameters

Name
Type
Description

perPage

string

The number of records to return per page.

page

string

The number of pages to offset the result by.

Headers

Name
Type
Description

Authentication

string

Bearer ACCESS_TOKEN : To grant the access against the API.

{
    "data": [
        {
            "id": "1",
            "brandName": "Kapas Kraft",
            "verticals": [
                {
                    "verticalId": "1",
                    "verticalName": "apparels",
                    "verticalCode": "apl",
                    "mainImage": "abc.jpg",
                    "hoverImage": "abc.jpg"
                },
                {
                    "verticalId": "2",
                    "verticalName": "footwear",
                    "verticalCode": "ftq",
                    "mainImage": "abc.jpg",
                    "hoverImage": "abc.jpg"
                }
            ],
            "accountId": "123",
            "brandCode": "ABC123",
            "brandStatus": "1",
            "webSiteLink": "http://Kapas Kraft",
            "brandLogoImage": "Kpas Kraft logo.jpg",
            "tmRegistrationStatus": "abc",
            "tmCertificateScannedCopy": "URL",
            "tAckNo": "1",
            "tmRegistrationNo": "123",
            "tmRegistrationDate": "2019-03-20 00:00:00",
            "tmAckCert": "URL",
            "createdAt": "2018-09-11T14:17:31.000+05:30",
            "updatedAt": "2018-09-14T19:11:38.000+05:30"
        },
        {
            "id": "2",
            "brandName": "Kapas Kraft",
            "verticals": [
                {
                    "verticalId": "1",
                    "verticalName": "apparels",
                    "verticalCode": "apl",
                    "mainImage": "abc.jpg",
                    "hoverImage": "abc.jpg"
                },
                {
                    "verticalId": "2",
                    "verticalName": "footwear",
                    "verticalCode": "ftq",
                    "mainImage": "abc.jpg",
                    "hoverImage": "abc.jpg"
                }
            ],
            "accountId": "123",
            "brandCode": "ABC123",
            "brandStatus": "1",
            "webSiteLink": "http://Kapas Kraft",
            "brandLogoImage": "Kpas Kraft logo.jpg",
            "tmRegistrationStatus": "abc",
            "tmCertificateScannedCopy": "URL",
            "tAckNo": "1",
            "tmRegistrationNo": "123",
            "tmRegistrationDate": "2019-03-20 00:00:00",
            "tmAckCert": "URL",
            "createdAt": "2018-09-11T14:17:31.000+05:30",
            "updatedAt": "2018-09-14T19:11:38.000+05:30"
        }
    ],
    "total": 2,
    "page": 1,
    "per_page": 10
}

Last updated