Elenco collezioni
[baseUrl]/api/sync/v1/bop/line
Descrizione
API per l'elenco delle collezioni disponibili
Parametri richiesta
| Field | Type | Required | Default | Description | Notes |
|---|---|---|---|---|---|
FIDBrand | int? | null | ID del brand | Da utilizzare per filtrare le collezioni di un brand specifico |
Esempio richiesta
sh
curl --location '[baseUrl]/api/sync/v1/bop/line' \
--header 'AccessToken: {{token}}' \
--header 'Content-Type: application/json' \
--data '{
"FIDBrand":24
}'
Risposta
JSON
{
"statusCode": 200,
"errorCode": null,
"message": null,
"result": {
"totalCount": 100,
"totalPages": 1,
"page": 1,
"count": 100,
"records": [
{
"ID": 45,
"FIDBrand": 24,
"Line": "1815"
},
{
"ID": 46,
"FIDBrand": 24,
"Line": "LANGE 1"
},
{
"ID": 47,
"FIDBrand": 24,
"Line": "ODYSSEUS"
},
{
"ID": 48,
"FIDBrand": 24,
"Line": "RICHARD LANGE"
},
...
],
"record": null
},
"debug": null
}