Elenco brand

[baseUrl]/api/sync/v1/bop/brand

Descrizione

API per l'elenco dei brand disponibili

Parametri richiesta

Nessun parametro

Esempio richiesta

sh
curl --location '[baseUrl]/api/sync/v1/bop/brand' \
--header 'AccessToken: {{token}}' \
--header 'Content-Type: application/json' \
--data '{
}'

Risposta

JSON
{
    "statusCode": 200,
    "errorCode": null,
    "message": null,
    "result": {
        "totalCount": 100,
        "totalPages": 1,
        "page": 1,
        "count": 100,
        "records": [
            {
                "ID": 14,
                "Brand": "PATEK PHILIPPE"
            },
            {
                "ID": 15,
                "Brand": "OMEGA"
            },
            {
                "ID": 19,
                "Brand": "CARTIER"
            },
            ...
        ],
        "record": null
    },
    "debug": null
}