Doppler Relay
Sign Up

Limit Status

Schema: limit-status.json

It represents an account status limits where current consumption is shown. The remaining value is the number of current remaining shipments.

If the user doesn't have limits, it's returns noLimits value.

If the account is configured to require DKIM ready to send messages and doesn't have any DKIM ready domain, it's returns dkimConfigurationRequired value.

Output example

{
    "monthly": {
        "limit": 1000,
        "remaining": 1000,
        "reset": "2017-08-01T00:00:00Z"
    },
    "_links": [
        // . . .
    ]
}

Output example without limits

{
    "noLimits": true,
    "_links": [
        // . . .
    ]
}