# Get Lead Quality List

## Get Lead Quality List

<mark style="color:green;">`POST`</mark> `[PlatformAddress]/api/1.0/crm?action=getLeadQualityList`

Get a list of lead qualities.

{% tabs %}
{% tab title="200 " %}

```
{
    "meta": {
        "totalResults": 1,
        "start": 0,
        "perPage": 10,
        "count": 3
    },
    "results": [
        {
            "id": 1,
            "label": "A-Grade",
            "showOnDash": true
        },
        {
            "id": 2,
            "label": "B-Grade",
            "showOnDash": false
        },
        {
            "id": 3,
            "label": "C-Grade",
            "showOnDash": false
        },
    ]
}
```

{% endtab %}
{% endtabs %}

The result from this call will be a [collection](https://developer.ivvy.com/getting-started/interpreting-the-response/collections) of all the lead qualities the user has access to. This call also accepts the [pagination](https://developer.ivvy.com/getting-started/interpreting-the-response/pagination) and [filter](https://developer.ivvy.com/getting-started/interpreting-the-response/filtering) properties.
