Elenco categorie CRM
[baseUrl]/api/sync/v1/crm/category
Descrizione
API per l'elenco delle categorie crm disponibili
Parametri richiesta
Nessun parametro
Esempio richiesta
sh
curl --location '[baseUrl]/api/sync/v1/crm/category' \
--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": 1,
"Description": "Orologi",
"Abbreviation": "O"
},
{
"ID": 2,
"Description": "Gioielli",
"Abbreviation": "G"
},
{
"ID": 3,
"Description": "Accessori",
"Abbreviation": "A"
},
...
],
"record": null
},
"debug": null
}