> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nmbr.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Warnings

> Information regarding the state of a given resource

A number of resources expose a warning object to provide insight into the status of each entity and potential steps that may be blocking future actions such as running payroll.

### Warning Example

```json theme={null}
"warnings": {
    "object": "list",
    "data": [
        {
            "id": null,
            "object": "warning",
            "data": {
                "namespace": "onboarding",
                "type": "business_verification_incomplete"
            },
            "links": {
                "self": null
            }
        },
        {
            "id": null,
            "object": "warning",
            "data": {
                "namespace": "onboarding",
                "type": "business_legal_information_not_provided"
            },
            "links": {
                "self": null
            }
        },
        {
            "id": null,
            "object": "warning",
            "data": {
                "namespace": "onboarding",
                "type": "bank_account_doesnt_exists"
            },
            "links": {
                "self": null
            }
        },
        {
            "id": null,
            "object": "warning",
            "data": {
                "namespace": "onboarding",
                "type": "bank_account_unrecognized_institution"
            },
            "links": {
                "self": null
            }
        },
        {
            "id": null,
            "object": "warning",
            "data": {
                "namespace": "onboarding",
                "type": "bank_account_pad_not_signed"
            },
            "links": {
                "self": null
            }
        }
    ]
},
```
